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

Поделиться
HTML-код
  • Опубликовано: 27 окт 2024
  • Welcome to Code With Roy !!
    "COFORGE" Java Developer Round 1 Interview Experience for 5+ years.
    Here, we dive deep into the world of IT, covering a wide range of topics including Core Java concepts, Spring Boot, Microservices, Java interview experiences for both freshers and experienced professionals, and insights into the dynamic IT life.
    Whether you're just starting your IT journey or looking to enhance your skills and knowledge, you'll find valuable content tailored to your needs. Our goal is to provide comprehensive resources, tutorials, tips, and real-world experiences to help you succeed in the ever-evolving technology field.
    🎯 Ready to ace your interviews and level up your career? Book a personalized 1:1 mentorship session with me!
    In this exclusive mentorship program, you'll get tailored guidance and expert insights to help you excel in your interviews and achieve your career goals. Whether you're preparing for a job interview, seeking career advice, or aiming for professional growth, I'm here to support you every step of the way.
    Book Here ⬇️
    topmate.io/deb...
    Connect with me on LinkedIn for professional networking and updates: [LinkedIn Digital Debjeet]( / digitaldebjeet )
    Join our Telegram channel for discussions, Q&A sessions, and exclusive content: [Telegram Channel](t.me/+sBtqK4uY...)
    Don't forget to hit the subscribe button and turn on notifications so you never miss out on our latest uploads. Thank you for joining us on this exciting journey through the IT world!

Комментарии • 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?

  • @arvindkumarvishwakarma8972
    @arvindkumarvishwakarma8972 2 месяца назад

    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

  • @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 2 месяца назад +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++

  • @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

  • @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

  • @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);

    }

  • @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

  • @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

  • @exploringlocalfoodies5183
    @exploringlocalfoodies5183 3 месяца назад

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

  • @chrohith7391
    @chrohith7391 3 месяца назад

    what is the package that they are offering?

  • @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%

  • @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

  • @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--;
    }
    }

  • @karthiksundaram544
    @karthiksundaram544 3 месяца назад

  • @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

  • @truth_660
    @truth_660 3 месяца назад +1

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

  • @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 месяца назад