Nagarro (Round 1) Java Developer Interview Experience (6+ years)

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

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

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

    Timestamps -
    0:00 Introduction
    0:50 Project Work
    1:27 List al = Arrays.asList(1,3,2,4,3,1,2);
    Output - {4,3,2,1}

    2:50 Output Based Question
    4:09 SQL question
    5:28 Use of default keyword vs default method
    6:23 How to create Custom Exception
    7:49 PUT vs Patch
    8:43 Path Param vs Query Param
    10:30 @JsonIgnore vs @Transient
    11:56 @Controller vs @RestController
    12:40 How to provide Role based authentication
    14:22 Authentication vs Authorization
    16:35 Unique vs Composite Key
    18:36 @Mock vs @InjectMocks
    20:20 verify() in mockito
    21:17 map vs flat map
    24:05 Use of @JoinColumn
    25:15 select selected columns in JPA
    26:48 Use of Kubernetes

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

    in flatmap concept you can write this way also --> List result= lst.stream().flatMap(s->Arrays.stream(s.split(""))).collect(Collectors.toList());

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

      Yes.. This way is also possible!!

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

    The impl of security in role based access control is an older version. In later versions after Spring boot 2.7 we make bean of SecurityFilterChain and configure other components

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

    your customexception class must extend Exception class, then only the parameterized super call makes sense.

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

      Yes you are right

    • @sagardas09
      @sagardas09 7 หลายเดือนก่อน +1

      @@debjeetroy i really appreciate what you are doing, its very helpful for many of us trying to clear an interview. But i think the answers could have been more researched.
      You don’t need to throw any exception from your custom exception class as I understand.
      Also a response from a @controller class always need a view to be displayed, whereas a @restcontroller class response doesn’t need a view, you can simply hit the url and json response will be displayed in browser unlike @controller class.

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

      @@sagardas09 Thank you for your feedback. I will surely work on it. As per my knowledge if you are making your own custom exception and if you are not using @RestControllerAdvice feature of Spring boot to handle exceptions then you have to throw exception from that custom class to inherit all the properties and make that class eligible to get thrown from other class when thrown from method definition using throw new class("message"). I hope I understood your query properly and it will be good if you can give a use case when we are creating custom exception class but not extending it. I will also learn that. Thank you. .... And yes difference between Controller and Rest controller can be many and yours one is right as well. Thank you for explaining it.

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

      @@debjeetroy a @restcontrolleradvice or @controlleradvice is for globalexception handler. Here you are talking about a custom exception class. No need to get into spring mvc here i guess its plain old java
      It is simply like this…
      class MyException extends Exception {
      Public MyException(String msg){
      super(msg)}}

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

      @@debjeetroy a @restcontrolleradvice is to be used creating a global exception handler. There may be more than one custom/normal exceptions defined in a global exception handler.
      But here we are talking about a custom exception handler, its simply plain old java. No need to bring spring concepts here.
      Its like..
      class MyException extends Exception{
      public MyException (String msg){
      super(msg)}}

  • @yoshitamahajan353
    @yoshitamahajan353 7 หลายเดือนก่อน +1

    Can u please make video consisting of the points which need to be studied for java 7 plus year experience..

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

      Yes Yoshita... Sure

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

    Fun-tastic to watch!!!

  • @RN-jo8zt
    @RN-jo8zt 7 หลายเดือนก่อน +1

    are they particular asking to use java 8 stream,lambda.. for solving competitive coding questions?

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

      Yes.. Any questions that can be done using streams they are focusing to do using streams only.

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

    Thanks brother, it was really helpful.

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

      I am glad you liked it

  • @homelyvibe-ou6qn
    @homelyvibe-ou6qn 4 หลายเดือนก่อน

    Need you help to restart my career after break of 5 year with 7 years of java struts experience
    Any help is really appreciated

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

      We can have conversation.. You can book 1:1 call from my linkedin profile

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

    Wasn't there a coding assessment for Nagarro before Technical Round ?

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

      I went through referral. It didn't happened for me

    • @saketsourav31
      @saketsourav31 7 หลายเดือนก่อน +1

      @@codeAtoZ good luck bro. And good work.

    • @rahul_1770
      @rahul_1770 18 วันที่ผ่านมา

      ​@@codeAtoZ does you appear for the next round?

  • @anantsinghal891
    @anantsinghal891 7 หลายเดือนก่อน +1

    at 15:13 it will the print max salary without any doubt

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

    Hi , was any dsa questions asked ? Any further round ?

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

      That didn't focus on advance level dsa. Basic dsa questions on Map, Collections, Array and String will help.

  • @PS-cc4xw
    @PS-cc4xw 7 หลายเดือนก่อน

    After explaining, do practical on IDE plz

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

      Sure.. As it was just interview experience so didn't explained practically.

    • @PS-cc4xw
      @PS-cc4xw 7 หลายเดือนก่อน

      @@codeAtoZ
      Ok!! where do u work? i need a job very much in IT field... could u help me plz? It has been 2 yrs of completing my btech

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

      No need to put extra effort for showing on ide. Let the interviewees practice on their own. Your content is very good and keep publishing more videos like this .

  • @AnkitChauhan-zm8qh
    @AnkitChauhan-zm8qh 5 หลายเดือนก่อน

    Informative 👍

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

    Bhai kitne ka package laga ? Remote option bhi mila hai kya ?

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

      It varies from project to project for remote option. Package is 20+

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

      @@suryapratap8386 Thank you for your kind words.

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

    I gave 3 round 1 Online test and 2 technical rounds and feedback was good but got rejected bcos they wanted AWS dumb company wasted 3 days 😕

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

    Great Content..

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

      Thank you 🙏

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

    Hay bhaiya please guide
    i am cdac noida mca 2025 batch student .

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

      Hi Yogesh... May I know what help you need? I will be more than happy to help you.

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

      Hi Yogesh... May I know what help you need? I will be more than happy to help you.

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

      ​@@codeAtoZ bhaiya yhi per messagae kru ya ..!

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

      You can ping in linked in.. Debjeet Roy is name there

  • @Whoishet
    @Whoishet 7 หลายเดือนก่อน +1

    Thumbnail se ambati raidu laga

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

      😂😂