"COFORGE" Java Developer Round 1 Interview Experience for 5+ years.

แชร์
ฝัง
  • เผยแพร่เมื่อ 1 พ.ย. 2024

ความคิดเห็น • 39

  • @tabrezshaikh7705
    @tabrezshaikh7705 3 หลายเดือนก่อน +4

    Here's an easy and easy to read code for the duplicate string problem:
    public class Test {
    public static void main(String[] args) {
    String interviewString = "There is a tree tree has leaves leaves are green";
    Map wordCountMap = new HashMap();
    Arrays.asList(interviewString.split(" "))
    .stream()
    .forEach(word -> {
    if(wordCountMap.get(word) == null)
    wordCountMap.put(word, 1);
    else
    wordCountMap.put(word, wordCountMap.get(word)+1);
    });
    for (String word: wordCountMap.keySet()) {
    if(wordCountMap.get(word) > 1) {
    System.out.println(String.format("%s: %d", word, wordCountMap.get(word)));
    }
    }
    }
    }

  • @bhavanagattu5958
    @bhavanagattu5958 3 หลายเดือนก่อน +4

    Hi , Best channel who are about to give interviews only technical stuff and straight forward interviews.Thank you..
    If you have given accenture, infosys, deloitte and comgnizant try to upload them also😊

    • @codeAtoZ
      @codeAtoZ  3 หลายเดือนก่อน +2

      No dear... I havent given interviews for them as they don't pay that much.

    • @DeepakSharma-vq2ff
      @DeepakSharma-vq2ff 2 หลายเดือนก่อน

      Which company you joined?

  • @raj006
    @raj006 2 หลายเดือนก่อน

    Is this actual interview or mock? If real one then how did u recorded it like which desktop app you used

    • @codeAtoZ
      @codeAtoZ  2 หลายเดือนก่อน

      scree.io

    • @raj006
      @raj006 2 หลายเดือนก่อน

      @@codeAtoZ thesevare all real interviews right

  • @AkashDeep-bg2is
    @AkashDeep-bg2is หลายเดือนก่อน

    I have also received offer from coforge. Is it good company to join?

    • @codeAtoZ
      @codeAtoZ  หลายเดือนก่อน

      Yes if you get good client... But long term project will have issues

    • @AkashDeep-bg2is
      @AkashDeep-bg2is หลายเดือนก่อน

      Client is Goldman. All five days work from office

  • @ashok3818
    @ashok3818 3 หลายเดือนก่อน +2

    For the Array shift left problem, create another array with same size, take count of one and put those in new array and now iterate old array and put rest of the elements.

    • @maheshwarang4000
      @maheshwarang4000 3 หลายเดือนก่อน +1

      Space Complexity increases by O(N).The above problem can be solved using two pointers in O(1) space and O(N) time complexity

    • @raj006
      @raj006 2 หลายเดือนก่อน

      @@maheshwarang4000we dont have pointers in java I hope you know that

    • @maheshwarang4000
      @maheshwarang4000 2 หลายเดือนก่อน +2

      @@raj006 bhai two pointer is an algorithm not actual pointers from c++

  • @sonicxgaming5533
    @sonicxgaming5533 3 หลายเดือนก่อน +2

    Bhai last me banda tips puchne laga ki 90 days me offer kaise le😂😂. Use bhi switch maarna hoga

    • @codeAtoZ
      @codeAtoZ  3 หลายเดือนก่อน

      Haan.. Mujhe v wahi laga... Interview jaisa lag hi nhi rha tha

  • @exploringlocalfoodies5183
    @exploringlocalfoodies5183 3 หลายเดือนก่อน

    Bro for(i= n-1 : 0) and swap krte ans aa jata . O(n) and o(1) mei

  • @akash214singh
    @akash214singh 3 หลายเดือนก่อน

    Hi bro....what package you got at Genpact finally?

    • @codeAtoZ
      @codeAtoZ  3 หลายเดือนก่อน +2

      Around 27

    • @shazjamal8307
      @shazjamal8307 3 หลายเดือนก่อน

      ​@@codeAtoZ how much hike % from previous company?

    • @devjigupta5525
      @devjigupta5525 3 หลายเดือนก่อน

      ​@@shazjamal8307direct last package hee puch le

    • @codeAtoZ
      @codeAtoZ  2 หลายเดือนก่อน

      @@shazjamal8307 75%

  • @karthiksundaram544
    @karthiksundaram544 3 หลายเดือนก่อน

  • @chrohith7391
    @chrohith7391 3 หลายเดือนก่อน

    what is the package that they are offering?

    • @codeAtoZ
      @codeAtoZ  3 หลายเดือนก่อน +3

      26

  • @arvindkumarvishwakarma8972
    @arvindkumarvishwakarma8972 3 หลายเดือนก่อน

    public class Main {
    public static void main(String[] args) {
    int[] arr = new int[]{1,2,3,2,4,1,1,2,1,3,1};
    int i=0,k=0;
    while(k

  • @amansingh.h716
    @amansingh.h716 2 หลายเดือนก่อน

    Interview ka time brain freeze sa ho jaata hai ,how to avoid that

    • @codeAtoZ
      @codeAtoZ  2 หลายเดือนก่อน

      Practice giving as Many interviews as possible

  • @Sp_Travel_Vlogs07
    @Sp_Travel_Vlogs07 2 หลายเดือนก่อน

    Bhai aise ni krte h. Aap policy ko break kr rhe ho jo ki first policy hoti h harek companiyon ki. Try to not share such Live interviews. Aap Normal videos banao but aisi nhi. Otherwise you may get legal notice from Such companies. Then you will get stuck. It is not a proper professional way to show case such thing Live. I hope it will make sense to you.

    • @codeAtoZ
      @codeAtoZ  2 หลายเดือนก่อน +1

      There are lot of live interview videos online and I have blurred face and names.... Rest all questions are not unique to this company. Its asked by almost all service based companies so I don't think it will create any issues. If company states anything will mute that part. Thank you

  • @amansingh.h716
    @amansingh.h716 2 หลายเดือนก่อน +1

    public class ShiftAllOneLeft {
    public static void main(String[] args) {
    int[] a= {1,2,3,2,4,1,1,2,1,3,1};
    int i=0,j=0;//i== 1, j==iterator
    while(j

  • @altrinruban3843
    @altrinruban3843 2 หลายเดือนก่อน

    Code for moving 1 in left side with O(logn)
    int[] arr = new int[]{1,2,3,2,4,1,1,2,1,3,1};
    int i = 0;
    int j = arr.length-1;
    while(i < j ){
    if(arr[i] == 1 && arr[j]==1){
    i++;
    }
    else if ( arr[i] != 1 && arr[j] == 1){
    int temp = arr[j];
    arr[j] = arr[i];
    arr[i] = temp;
    j--;
    }
    else if ( arr[i] != 1 && arr[j] != 1 ){
    j--;
    }
    else {
    i++;
    j--;
    }
    }

  • @truth_660
    @truth_660 3 หลายเดือนก่อน +1

    Cofrege wale interview aise lete hai . Aur client kaa project khatm hone ke baad fire kar dete

    • @mohammedhussain6169
      @mohammedhussain6169 3 หลายเดือนก่อน

      Pacakge kitna hy.?

    • @truth_660
      @truth_660 3 หลายเดือนก่อน

      @@mohammedhussain6169 28 lpa

  • @shuvamkarmakar2107
    @shuvamkarmakar2107 3 หลายเดือนก่อน +2

    //count of duplicate string
    static void countOfDuplicateString() {
    String input = "there is a tree tree has leaves leaves are green";

    Arrays.asList(input.split(" "))
    .stream()
    .collect(Collectors.groupingBy(Function.identity(), LinkedHashMap::new, Collectors.counting()))
    .entrySet()
    .stream()
    .filter(s -> s.getValue() > 1)
    .forEach(System.out::println);

    }

  • @altrinruban3843
    @altrinruban3843 2 หลายเดือนก่อน

    Duplicate String problem code with less no of line
    String interviewString = "There is a tree tree has leaves leaves are green";
    Arrays.stream(interviewString.split("\\s")).stream().collect(Collectors.groupingBy(Function.identity(),Collectors.counting())).entrySet().stream().filter(e->e.getValue()>1).forEach(System.out::println);

  • @karthiksundaram544
    @karthiksundaram544 3 หลายเดือนก่อน