Java Spring Boot 14 Years Interview Experience [God Level Skills]

Поделиться
HTML-код
  • Опубликовано: 18 ноя 2024

Комментарии • 198

  • @indiansoldier3654
    @indiansoldier3654 5 месяцев назад +92

    Even James Gosling will never call himself as god level in Java
    Java is ocean , no one has god level knowledge.

  • @razatech22
    @razatech22 5 месяцев назад +203

    Saying "God Level" is too much. Don't exaggerate. He's a normal developer with basic coding/project skills.

    • @nitniteesh
      @nitniteesh 5 месяцев назад +5

      No its fine . It might be his perception. He might have seen only this level of expertise in his work tenure.

    • @SPS_Tech
      @SPS_Tech 5 месяцев назад

      Agree, Highly exaggerated !!!!!

    • @saurabhrai1296
      @saurabhrai1296 5 месяцев назад +1

      The code he has written will give compile time error but approach was good

    • @SaravananViswanathan-t2i
      @SaravananViswanathan-t2i 5 месяцев назад

      his way of giving answers are too much sleepy. not giving precise point to point answers. and most of them are not closer to the right answer. we should mark it as worst answering method. it was attended so badly not god and all LOL 😂

    • @SaravananViswanathan-t2i
      @SaravananViswanathan-t2i 5 месяцев назад

      the way he answered was bit irritating us. I forgot to add

  • @phoneix24886
    @phoneix24886 5 месяцев назад +70

    Here are my top 5 favourite java questions:
    1. What is java memory model? Explain differences between pre java 8 and post java 8 memory model.
    2. What is a garbage collector? Explain all GCs upto java latest stable release. What is mark and sweep algorithm in GC?
    3. Write a Fibonnaci calculator using a ForkJoinPool.
    4. Write a ConcurrentQueue using wait and notify.
    5. Give a stream of employees having id and name, using Java streams, give me a map where keys will be first letter of the name and value will be a set of employee names starting with that letter.
    My top 5 favourite Spring boot questions:
    1. What is application context? What is web application context and dispatcher servlet? How are they related?
    2. How do I create my own spring boot "starter".
    3. Explain step by step how will you write a unit test for a TODO app created with spring boot.
    4. I want to log the name of the method which gets executed when a route path of a particular controller gets called. How do I design such a solution without code repetition (Use AOP)
    5. What is Isolation and propagation in a database transaction? What is locking? Why is it needed? Explain a few locking mechanisms!

    • @mamtapandey6
      @mamtapandey6 5 месяцев назад +2

      For which level of experience these questions can be asked?

    • @phoneix24886
      @phoneix24886 5 месяцев назад +3

      @@mamtapandey6 5 to 7+ years

    • @phoneix24886
      @phoneix24886 5 месяцев назад +2

      @@ManishTiwari-or8zt appreciate your effort. It's mostly correct. But the question was to group by first letter and names only.

    • @ManishTiwari-or8zt
      @ManishTiwari-or8zt 5 месяцев назад

      I want to log the name of the method which gets executed when a route path of a particular controller gets called. How do I design such a solution without code repetition (Use AOP)::
      @Target(ElementType.METHOD)
      @Retention(RetentionPolicy.RUNTIME)
      public @interface LogExecutionTime {
      }
      @Aspect
      @Component
      @Slf4j
      public class LoggingAspect {
      @Around("(@annotation(org.springframework.web.bind.annotation.GetMapping) ||
      "&& @annotation(com.devsu.challenge.config.aop.LogExecutionTime)")
      public Object logExecutionTime(ProceedingJoinPoint joinPoint) throws Throwable {
      String methodName = joinPoint.getSignature().getName();
      log.info("Starting execution method {}", methodName);
      Object result = joinPoint.proceed();
      log.info("Finished execution method {}", methodName);
      return result;
      }
      }
      @RestController
      public class ExampleController {
      @GetMapping()
      @LogExecutionTime
      public ResponseEntity getHello(){
      try{
      String result = "Hello world";
      return new ResponseEntity(result, HttpStatus.OK);
      }catch (Exception e){
      return new ResponseEntity(null, HttpStatus.BAD_REQUEST);
      }
      }

    • @ManishTiwari-or8zt
      @ManishTiwari-or8zt 5 месяцев назад

      @@phoneix24886
      Updated the code:
      Map map2=lisOfPerson.stream()
      .collect(Collectors.groupingBy(p->p.getName().substring(0, 1),Collectors.mapping(Person::getName, Collectors.toList())));

  • @humanplanet8728
    @humanplanet8728 5 месяцев назад +22

    He's really knowledgeable. Instead of bookish answers. He gave answers from his experiences

  • @mr.bachelor2361
    @mr.bachelor2361 5 месяцев назад +19

    SOLID -> All are correct but D is for dependency inversion , lower modules not directly interact with higher module some layer should introduced.!!

    • @ManishTiwari-or8zt
      @ManishTiwari-or8zt 5 месяцев назад

      Adding to it--> High level modules should not depend on low leve modules both should depends on abstraction.
      it helps to make the code lously coupled and assing the object dynamically for the particular task.

    • @Pressnave-f6m
      @Pressnave-f6m 2 месяца назад

      Hello bro by seeing your command it feels like you have vast knowledge in Java. I am just a beginner with skills in core Java concepts and a slight idea of Spring Could you share some guidance on how I can learn more and gain additional knowledge

  • @uniqworldtraveller
    @uniqworldtraveller 4 месяца назад +22

    "Java God" do not know meven lifecycle.. seriously ???? Please change the video thumbnail as this is misleading.
    You are doing good job by taking interviews but lets not overexaggerate it.

  • @rkv3128
    @rkv3128 5 месяцев назад +10

    He is the real god I have not seen a bigger god than him. Only thing i felt is he is not happy with something but overall great stuff

  • @gokukakarot6323
    @gokukakarot6323 5 месяцев назад +4

    How to find Class not found Exeception!! By not writing bad code is the answer and actually testing the code, (not mocking). Most people struggle with errors not because they are esoteric, its because they either dont actually "read" the message, or they haven't spent enough time with the language to get a feel for the error message and possible. A shining example is javascript. People who don't really know JS, have never seen or read the ES manual, are the ones complaining how bad it is, Uncaught exception bla blabla. The ones who know JS, are mostly 50% grumpy about it. :D

  • @ajithkumar2216
    @ajithkumar2216 5 месяцев назад +7

    Candidate mentioned 14 story points. Story points should follow fibonacci series. Then how it comes 14🤔

  • @RajeshKumar-gz2vo
    @RajeshKumar-gz2vo 4 месяца назад +3

    nothing as god level in this there are lot more people out there who contribute to open source and have very good knowledge

  • @ShamanthB-b4g
    @ShamanthB-b4g 3 месяца назад +1

    what is god level here he is a normal developer , even good developer who has hands on will know this

  • @nannadash6853
    @nannadash6853 5 месяцев назад +4

    He is too good . Just a small mistake in the last coding question . It will be Map rather then Map 👍

  • @yourengineerbro
    @yourengineerbro 5 месяцев назад +5

    At 14:50, Wrong. Concurrent hashmap is synchronized thus allows only one thread to access it any given time. HashMaps are more efficient being asynchronous or not thread safe.

    • @ManishTiwari-or8zt
      @ManishTiwari-or8zt 5 месяцев назад +1

      One thread can access it one at time but that is for update operation and for reading purpose multiple thread can access it it depends on concurrency level default concurrency level is 16 so 16 thread can access concurrenthashmap to read the data.

    • @ashokchandola
      @ashokchandola 4 месяца назад

      Oh nongid is making mistakes 😢😮😂😂😂

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

      Concurrent hashmap is synchronized but not the whole map area. instead only the segment is synchronized which is thread safe. other threads can concurrently work on other segments. thus Concurrent hashmap support concurrency in modern multithreaded environment.
      In java 8, concurrent hashmap is even improved with fine grain locking, where locks are applied at a more granular level, such as individual buckets/bins or groups of bins.

  • @prashantdogra240
    @prashantdogra240 2 месяца назад +1

    I have a vast experience in different product companies, I guarantee you the average developer with 3 years of experience has more knowledge than 14 years of experience when compared to service-based organization.

  • @ManishTiwari-or8zt
    @ManishTiwari-or8zt 5 месяцев назад +5

    The coding part was sligthly wrong it will give compile time error. I think you missed it how he is stroring the values in the map. He has taken Map instead it should be Map .
    and also better to take key as character instead of string. we can use Stream.of(s.toCharArray).collect(Collectors.groupingBy.....

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

      Then it should be Map , i feel

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

      @@tejenderjeetsingh9705 Map mapInp = input.chars()
      .mapToObj(c -> (char) c)
      .collect(Collectors.groupingBy(Function.identity(), Collectors.counting()));
      mapInp.forEach((key, value) -> System.out.println(key + ":" + value));

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

      Map mapInp = input.chars()
      .mapToObj(c -> (char) c)
      .collect(Collectors.groupingBy(Function.identity(), Collectors.counting()));
      mapInp.forEach((key, value) -> System.out.println(key + ":" + value));

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

    The real pain with microservices is managing distributed transactions, regardless if we are using common database or dedicated database for each service.
    However there are certain solutions to it loke 2 phase commit or saga pattern but bit verbose and complex to implement.
    The balanced approach is neither microservice nor monolithic, its the modular monolith with mono repo approach or SOA architecture.

  • @jenniferpriya6039
    @jenniferpriya6039 4 месяца назад +1

    Feels like the interviewer was impressed because he had the questions but was less knowledgeable than the candidate for those questions and the candidate took time and examples to explain with jargons and concepts which gives an image of being knowledgeable but not all his answers are upto the mark or applicable for questions asked.
    For 14 yrs it was surprising he wasn't aware of Maven life cycle or atleast basics to explain.
    Docker explanation was just the build he runs in his project but not the actual concept of dockerization.
    Explanation for application design for Zomato in 2024 was at a very basic level that applies for any simple application and could have been explained at a level of handling the complexities of such popular and high traffic applications.

  • @kirankumarsunku
    @kirankumarsunku 5 месяцев назад +5

    Bro I gave the interview At Accenture on 31st May 2024 they asked me the most security-related questions and Microservices-related questions. My experience is not sufficient to answer those questions.

    • @reeeeel2858
      @reeeeel2858 4 месяца назад +1

      What's your experience

  • @harshinsan4752
    @harshinsan4752 4 месяца назад +2

    Instead of just asking questions if the candidate is incorrect, you should tell the correct answer. good for viewers as well.

    • @genz-career
      @genz-career  4 месяца назад

      I do most of the time

    • @harshinsan4752
      @harshinsan4752 4 месяца назад

      @@genz-career anyways, good way of knowledge sharing. people get engaged while watching your videos. kudos to you :)

  • @rastemmilengephirchltechlte
    @rastemmilengephirchltechlte 4 месяца назад +2

    Java god is only durga Sir from durgasoft...

  • @rajaraja-qp7qj
    @rajaraja-qp7qj 14 дней назад

    Sonar cube or Sonar lint won't bother about encryption and description. It is a tool for code quality.

  • @ArjunKumar-zu2kl
    @ArjunKumar-zu2kl 5 месяцев назад +4

    Why to God level to mislead users, it just a normal interview for 3-5 years guy. 17:20 for immutable class only final and private member, no setter will not work, he missed Deep copy.
    Very basic answers for Spring Transaction, he didn't know MAVEN cycle, VAR keyword introduced in Java10, he said Java 17, his program also doesn't work. I am fine with this interview but mentioning GOD level is not at all acceptable.

  • @clockworkdeveloper
    @clockworkdeveloper 4 месяца назад +3

    Whats a decent salary pool for Java Spring boot developer with 6.5 Years experience?

    • @grandmaster_chesss
      @grandmaster_chesss 4 месяца назад +1

      I am also wanting to know. Guess 18 - 24 LPA is the average

  • @PraveenKumar-vg8rb
    @PraveenKumar-vg8rb 5 месяцев назад +1

    How can having password in the source leads to SQL injection?SONAR completely different from scanning source code for finding vulnerabilities

  • @codewithneeraj8847
    @codewithneeraj8847 5 месяцев назад +2

    He is "Good level of java" then what about "James Gosling" who create java programming language

    • @chinmoykanjilal
      @chinmoykanjilal 5 месяцев назад

      Yes. And, the thousands of people contributing to Openjdk... and the Java community over the years? Submitting well written JSRs, maintaining the openjdk repository, adding features... what about them?

  • @muleyshubham
    @muleyshubham 5 месяцев назад +7

    How to connect with you 1:1 bro? can you share you linkedin ?

  • @manojk336
    @manojk336 7 дней назад +1

    Saying God level. Which world you living in.

  • @nakulkumar4197
    @nakulkumar4197 5 месяцев назад +3

    java 10 introduced the var keyword not 17. 38:20

  • @o7n71a0453
    @o7n71a0453 5 месяцев назад +1

    Thankyou for bringing the experienced guys... Bring more

  • @gyvsr
    @gyvsr 5 месяцев назад +1

    If he is Java's GOD, then what about James Gosling, the JAVA Creator?

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

    Liquibase is not for transactions, it's for database schema change management.

  • @RealSlimShady-um6gf
    @RealSlimShady-um6gf 5 месяцев назад +2

    Are you crazy to mention GOD here? Is he immortal to start with?

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

    His answer on why a common database shouldnt be used for different microservices was very confusing and probably wrong ( not sure why different databaseb shud resolve what seems to be a pub sub problem ) ..whatever be the challenges he faced he could still have used multiple schemas in same database ..using different database for each microservice can have cost implications expecially in a cloud environment..

  • @ranjitkumarmallick3026
    @ranjitkumarmallick3026 5 месяцев назад +1

    Liquibase is not used for CRUD operation. It's used for database versioning.
    Who uses common database in microservices architecture.
    Kuch v bole Jaa Raha hai..

    • @yoogeshsharma2977
      @yoogeshsharma2977 5 месяцев назад +1

      I didn’t even understand what problem he got by having same database. Not same data on different services? How come it happen if all services are reading values from same database? Instead, the problem he mentioned should occur when you have seperate database for each microservices.

  • @vishvanathdc
    @vishvanathdc 4 дня назад

    Really helpful thanks

  • @sanketsirsat6670
    @sanketsirsat6670 5 месяцев назад +2

    i am fresher no experience , want to start my jounery at entry level , learning springboot now , can you help me what project should i include in my resume and how to get a job ?

  • @nishikishore
    @nishikishore 5 месяцев назад

    The coding part is wrong in his solution, It should be combined in a map of key as String and value as long. You can use stream api on character of streams and use groupingBy method to evaluate the count of each character.

  • @SeedhiBaat1947
    @SeedhiBaat1947 5 месяцев назад +1

    See if u can get Full stack with experience of 6-8-10 yrs

  • @DineshM-u1w
    @DineshM-u1w 3 месяца назад

    I want to know that how God Level Skills - not able to acheive DB consistency in same DB ? He is not aware ?

  • @kushalmondal618
    @kushalmondal618 5 месяцев назад +2

    Java is High Level Lang.....To be God in Programming someone needs to go as low as possible....Try Haskell😂😂😂

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

    God level skills and dude cant remember how the collisions are solved in the hashmap ? cmon... This guy sounds like a medior/very early senior

  • @gousri1
    @gousri1 Месяц назад

    Are these questions related to 14+ years of experience for Java Spring Boot ? Please acknowledge

  • @yoogeshsharma2977
    @yoogeshsharma2977 5 месяцев назад +1

    I didn’t even understand what problem the java’s GOD (😉) faced by having same database. Not same data on different services? How come it happen if all services are reading values from same database? Instead, the problem he mentioned should occur when you have seperate database for each microservices.

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

      He's right actually because if a service is down and if there's a common service between all microservices which appends the data, due to the failure of a specific microservice that data will be lost

  • @Aks-gj1kp
    @Aks-gj1kp 4 месяца назад

    problem with monolithic isn't deployment but vertical scaling.

  • @CodeWithSeenu
    @CodeWithSeenu 5 месяцев назад +2

    Map charMap = Arrays.stream(str.split("")).collect(Collectors.groupingBy(Function.identity(), Collectors.counting()));
    is great
    I just wanna add some info. Here we get error when we use Method References for identity and counting here like
    Map charMap = Arrays.stream(str.split("")).collect(Collectors.groupingBy(Function::identity, Collectors::counting));
    REASON
    -----
    Because this identity and counting methods don’t have expected number of arguments (here expected number of args is 1 to use a method as method reference)
    Another example:
    Map countInDeptMap = employees.stream().collect(Collectors.groupingBy(Employee::getDepartment,Collectors.summingInt(Employee::getSalary)));
    Here we can use getDepartment, getSalary methods as Method reference as they have expected number of argument count.

  • @saisatya4917
    @saisatya4917 5 месяцев назад +1

    This interview is for a senior developer or team lead position not for a professional with 14 years of experience. I bet no one can answer anyone of ur technical questions with 14 + years of experience.

    • @arishsheikh3000
      @arishsheikh3000 5 месяцев назад +5

      Kehna kya chahta hai be

    • @saisatya4917
      @saisatya4917 5 месяцев назад

      @@arishsheikh3000 …, the IT industry is going down because of fake people like you who don’t know how to communicate properly.

    • @krishnachand9533
      @krishnachand9533 5 месяцев назад

      ​@@arishsheikh3000 😂

  • @narasimhakulkarni-vy7om
    @narasimhakulkarni-vy7om 5 месяцев назад

    Scalability is how many customers can hit ur app. That can be achieved with monolithic apps, also with good solid principles nd parallel processing coupled with high performance code both in time nd space complexity. Ur heap shouldn't be over stressed be it mono lithic or microservices app

  • @Kumarkumar-gf3kk
    @Kumarkumar-gf3kk 3 месяца назад

    For 14 years exp programming asking questions in string occurace using streams ?

  • @sreenathssdx
    @sreenathssdx 5 месяцев назад

    In the coding question, map value type is Long not List of string

  • @pepepls6660
    @pepepls6660 2 месяца назад +1

    When you listen in 2x:wow he's a God 🤯
    When you listen in 1x: 🥴

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

    His skill is commendable. However, Problem solving > Any tool(programming).

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

    Tell bro to compete with japanese and americans 😅😅...u ll know his GOD level

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

    He doesn't know what a hash collision is?
    You are comparing😂😂😂 with God

  • @amanuelgebru2541
    @amanuelgebru2541 5 месяцев назад

    The code he wrote is erroneous. He should have assigned the result of the stream operation to a Map Not Map.
    Map frequency = Arrays.stream(input.split(""))
    .groupingBy(Function.identity(),Collectors.counting());

  • @harshwardhanshetty4683
    @harshwardhanshetty4683 5 месяцев назад +1

    ek interview hindi mai le sakta kya fully technical interview for experienced candidate

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

    Map mapInp = input.chars()
    .mapToObj(c -> (char) c)
    .collect(Collectors.groupingBy(Function.identity(), Collectors.counting()));
    mapInp.forEach((key, value) -> System.out.println(key + ":" + value));

  • @theashenone564
    @theashenone564 4 месяца назад

    LOL 5 years of experience looks like it. But i think it's still good for someone who spent entire lifetime in service industry

  • @AmitKumar-jx8gk
    @AmitKumar-jx8gk 5 месяцев назад +3

    God level skills or Good level skills

    • @genz-career
      @genz-career  5 месяцев назад +2

      God level skills bro basically I am using here a metaphor

    • @koustavghosh7627
      @koustavghosh7627 5 месяцев назад +6

      @@genz-career bro please stop hmm hmm when one will give answer and also keep some patience don't so hurry...

  • @SeedhiBaat1947
    @SeedhiBaat1947 5 месяцев назад +1

    Good work dude

  • @kemidinaveen9843
    @kemidinaveen9843 5 месяцев назад

    Very informative and nice video
    Thnq for doing this ❤❤❤

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

    God level, really? Humans can never reach God level, people using it so casually 😂

  • @criticalchandan7912
    @criticalchandan7912 5 месяцев назад +2

    i guesses 20+lpa.What you guesses?

    • @Rohan122
      @Rohan122 5 месяцев назад +2

      20lpa is less for 14 years experience

  • @shasibhusanjena8143
    @shasibhusanjena8143 5 месяцев назад

    seems streaming approach will give error.

  • @BALAIT2020
    @BALAIT2020 2 месяца назад +1

    Did you removed thumbnail or not
    Otherwise you will face legal issues

    • @genz-career
      @genz-career  2 месяца назад

      @@BALAIT2020 Correct your grammar please

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

      Could you please check now

    • @genz-career
      @genz-career  2 месяца назад

      @@BALAIT2020 it should “Did you remove”

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

      Did you want face legal notice on this?

    • @genz-career
      @genz-career  2 месяца назад

      @@BALAIT2020 Yes

  • @RashmiRanjan.rudrakshi
    @RashmiRanjan.rudrakshi 4 месяца назад

    Giving answer like fresher , even based on questions he is not noble to give prepper answer. don't use "God Level Skills"

  • @dark_starr
    @dark_starr 5 месяцев назад

    Still didn't get what exactly was the challenge he faced with microservices with common database😂

  • @rabindradocument8934
    @rabindradocument8934 5 месяцев назад +1

    But can he solve leetcode dp programs

  • @sateesh9525
    @sateesh9525 17 дней назад

    First do u kno Java 🤣🤣🤣🤣 don't put thumbnail for comments.......

  • @adilsheikh9916
    @adilsheikh9916 5 месяцев назад

    I really doubt, SOLID ka D wrong bola hai & Java version ka update bhi....

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

    16 story points ?😮

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

    Once after paying money.. How we will get the pdfs.. Can u pls let me know

    • @genz-career
      @genz-career  2 месяца назад +1

      You will get link to download in your mailid and whatsapp

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

      Okay if we purchase for 499rs its enough right to crack interview.. And once we pay we will get for sure 16 pdfs right.. Pls let me know is it trustable

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

      Please reply

    • @genz-career
      @genz-career  2 месяца назад

      @@poojavvp23 yes pooja

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

      Pls reply

  • @mtagab007
    @mtagab007 5 месяцев назад +1

    The question is too basic

  • @SaurabhKumar-fo6zp
    @SaurabhKumar-fo6zp 3 месяца назад

    Overhyped in description 😅

  • @mohammadpartovi1813
    @mohammadpartovi1813 4 месяца назад

    Fantastic.

  • @griet-cseb3491
    @griet-cseb3491 4 месяца назад

    23:51 right question asked

  • @sachinchaudhari4119
    @sachinchaudhari4119 5 месяцев назад

    Not all interviewers are like you, dont know collision lets close the interview 😂

  • @MallikarjunRao-n7v
    @MallikarjunRao-n7v 4 месяца назад

    Unnecesaary exaggeration. This is very basic level interview.

  • @theindivisualstudio1848
    @theindivisualstudio1848 4 месяца назад

    14 years of software engineering experience is a joke to these guys

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

    Given a question, how fo you dockerise a spring boot in production, he answers Helm chart . Pathetic fellow ! Cant he admit he doesnt know !

  • @jayadeepkaranth2255
    @jayadeepkaranth2255 4 месяца назад

    So basically so basically 😂😂 literally he has said basically before every answer 😂

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

    Bring more experienced guys,

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

    Change the thumbnail

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

    God level in programming world means 😂 too much bro. Iron man wouldn't call him god level😅

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

    God level really ?

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

    Click bait

  • @Deeptiagrawal1
    @Deeptiagrawal1 5 месяцев назад

    lot of rambling on in parts.

  • @utkarshgupta2909
    @utkarshgupta2909 5 месяцев назад +1

    hmm hmm all time during the interview

  • @stepanewhite8897
    @stepanewhite8897 5 месяцев назад

    LETS DO ONE TO ONE WITH GOD & LET ME CHECK HIS GOD LEVEL SKILLS?

  • @pratham_79
    @pratham_79 Месяц назад

    What do you mean God level ,Kuch bhi 😂

  • @nidhirajgr8
    @nidhirajgr8 4 месяца назад

    kya bhai, kuch bhi

  • @pd9583
    @pd9583 5 месяцев назад

    God😂😂😂😂

  • @Kumarkumar-gf3kk
    @Kumarkumar-gf3kk 3 месяца назад

    Java god ?😂

  • @hruthikt-k3d
    @hruthikt-k3d 5 месяцев назад +2

    Modda

  • @ayushjain7555
    @ayushjain7555 5 месяцев назад +1

    nonsense, person with lesser experience interviewing person with close to double yoe.

  • @KK-qc2qs
    @KK-qc2qs 5 месяцев назад

    but can he code in cobol 🤣🤣 jk

  • @EmreSezgince
    @EmreSezgince 5 месяцев назад +1

    There is no god except for Allah. It is pity that calling any humanbeing a god.

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

    Clickbait

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

    you are delusional.

  • @Aryan-ig4sh
    @Aryan-ig4sh 5 месяцев назад

    can you share his LinkedIn or any socials you have.

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

    he is like 3 yrs exp ... lmfao...