Komentáře •

  • @itscodingdoctor
    @itscodingdoctor Před 2 lety +5

    🔴FRESHERS PROJECTS SERIES ON #ReactJS 🔴 SHOULD I START ??
    Please Let me know here:- twitter.com/itscodingdoctor/status/1551840209871978496

    • @ramasailaja
      @ramasailaja Před rokem +1

      Pls start react projects for beginners

    • @itscodingdoctor
      @itscodingdoctor Před rokem

      Yes.

    • @Solo_playz
      @Solo_playz Před rokem +1

      Doctor bhai ek help mangta tha
      Bhai tumhe itna interview ke liye kaise apply karte ho and then interview schedule bhi ho jata hai . Mai ab tak 20-30 companie mai application submit kiya hu par ek bhi interview schedule nahi hua ab tak . Ye log bohot wait karwa te hai and I think last mai hamko full to ignore or comment kr dete hai .
      Bhia I have developed Several MERN projects as well as multiple react projects
      By efficiency in React is so high . Mera React and JavaScript bohot sahi hai placement to ho ho jaiga just I want chance to prove myself .
      Just mujhe ek batado ki interview confirmation kaise aata hai kaha apply karna hai and all.
      Just help me out to reach my first interview on best companies .

    • @avinashsinghrajput4914
      @avinashsinghrajput4914 Před rokem

      @@Solo_playz tum kha apply kiye the?

    • @itscodingdoctor
      @itscodingdoctor Před rokem

      Naukari.com & LinkedIn

  • @imyounick
    @imyounick Před rokem +10

    4:40
    Functional components are not for writing cleaner code but shorter and easy than Class component .
    Class component requires to much boilerplate and setups and in functional ,hooks makes that easy
    You can write clean code in any component.

  • @thecharteredprofessionalss3483

    Helped me a lot to prepare for accenture intreview. Thanks!

    • @itscodingdoctor
      @itscodingdoctor Před 2 lety +2

      Great to hear! Please like, share and Subscribe.

  • @amatsiuk
    @amatsiuk Před rokem +1

    Good job man! Happy for you, it was really nice

  • @zathkal4004
    @zathkal4004 Před rokem +3

    Great work brother, respect (:

  • @gpatil7379
    @gpatil7379 Před rokem +2

    Closure in JavaScript :
    Closure is created in when an inner function has access to its outer function variables and arguments.
    The inner function has access to-
    I) its own variables
    ii) Outer function variables and arguments
    iii) Global variables
    Eg.
    function xyz()
    {
    counter = 0:
    return function inner ()
    {
    counter++;
    return counter;
    }
    }
    var count= xyz();
    count() //1
    count()//2
    count()//3

  • @arupde6320
    @arupde6320 Před 2 lety +3

    keep uploading interview videos .

    • @itscodingdoctor
      @itscodingdoctor Před 2 lety

      😊

    • @itscodingdoctor
      @itscodingdoctor Před 2 lety

      Find more Interview videos here MNC Interview Experiences: czcams.com/play/PLGZJDzu5NntRmgwjCg0OwFpt9yHh68Muc.html

  • @mayankpandey5149
    @mayankpandey5149 Před 2 lety +4

    Bhai one of the main optimization is use usememo or usecallback because every time you don't want to rerender all child when parent rerendering

  • @ayushraj6525
    @ayushraj6525 Před 2 lety +9

    Interview should never be a Qna. It should feel like a conversation however i felt that in this interview the interviewer is somewhat like a school teacher asking questions like wht is this and wht is that😂

  • @skskssss126
    @skskssss126 Před 2 lety +3

    Thanks for this brother.
    Edit: can you share what happens in the further stages.

  • @ritishshelke4611
    @ritishshelke4611 Před rokem +1

    Great work brother 🚀 Didn't they ask about projects in interview ?

  • @techVinay933
    @techVinay933 Před 5 měsíci

    how you can record your computer screen?

  • @BharathKumar-iq7ku
    @BharathKumar-iq7ku Před 2 lety +4

    I am planning to switch my domain from support (2yrs) to front end line. Now I am learning front end technologies, what is your suggestions to me to get hired as a fresher ?

    • @itscodingdoctor
      @itscodingdoctor Před 2 lety +5

      Great step brother. You already have 2 years of experience so doesn't make much sense to apply as a fresher.
      Just mention in the interview that you have 2 years exp. But you have learned React now and have done some projects. That will suffice.

    • @BharathKumar-iq7ku
      @BharathKumar-iq7ku Před 2 lety +1

      @@itscodingdoctor okay buddy, thanks!!

    • @LoryKa
      @LoryKa Před 2 lety +4

      I'm in the same situation. Worked for 2 years as tech support and now I'm trying to apply for a frontend react position after I have been learning React, Sass and other technologies for over 1 year. Good Luck for you!!

    • @BharathKumar-iq7ku
      @BharathKumar-iq7ku Před 2 lety +3

      @@LoryKa good luck for you as well buddy... ✨

    • @itscodingdoctor
      @itscodingdoctor Před 2 lety +2

      just to help you guys, watch these videos also.
      MNC Interview Experiences: czcams.com/play/PLGZJDzu5NntRmgwjCg0OwFpt9yHh68Muc.html
      And after attending any interview please tell me how many questions were from these videos.

  • @bharatmishra250
    @bharatmishra250 Před 2 lety +1

    Man somewhere I read that class components have better performance of code like ...render and re-rendering of components in react

    • @itscodingdoctor
      @itscodingdoctor Před 2 lety

      reactjs.org/docs/hooks-faq.html#are-hooks-slow-because-of-creating-functions-in-render

    • @itscodingdoctor
      @itscodingdoctor Před 2 lety

      This doc says, no diff in performance except extreme scenarios. In those scenarios also functional components perform better not class components.

    • @anshumanxda
      @anshumanxda Před rokem +2

      Functional component is future of react, they have said this on their website.

    • @itscodingdoctor
      @itscodingdoctor Před rokem +1

      Absolutely

  • @pshycocoder
    @pshycocoder Před 7 měsíci

    we can use this-let res2=[...name.split("")].produces same result
    so usne set kyu use kia

    • @itscodingdoctor
      @itscodingdoctor Před měsícem

      One problem has many solutions. In the interview often people struggle to find the best way. They tend to make it work first and later optimize.

  • @52nevil36
    @52nevil36 Před rokem

    Hello brother,i have a question... My DSA is not a good and i am looking company where i can give my interview aa MERN stack developer? Do every company askef questions on DSA or some asked on web as i am web developer... please replay and also what is LPA range for fresher for these kind of companies who doesn't take DSA test but take js/react/node interview.. Please replay

    • @itscodingdoctor
      @itscodingdoctor Před rokem

      Hello,
      DSA will be there for sure, but the point is what's the difficultly of asked DSA. (FYI, finding even numbers in an array of numbers is also DSA)
      Now, to answer your question, tech giants (MAANG) & companies just below MAANG layer asks hard to very hard DSA.
      For rest of the companies, moderate level of DSA should suffice.
      LPA or CTC totally depends on the your skills, college, company and lots of other things. I don't want to give you any false hopes. If you feel you are getting a challenging role, just grab it.

  • @gamerraze4431
    @gamerraze4431 Před rokem +1

    as a fresher with 0 industry exp on react what kind of straight away ques can i expect?

  • @chandanthakur996
    @chandanthakur996 Před 11 měsíci +1

    Was the interview taken by a Megan-Fox lookalike?

  • @DollarLachimi
    @DollarLachimi Před rokem

    are you fresher or experienced.. working IBM me too

  • @mayankpandey5149
    @mayankpandey5149 Před 2 lety

    Wrong definatation usememo and usecallback because usememo is not track changes of refrence type dependencies but usecallback always check refrence type dependencies

    • @itscodingdoctor
      @itscodingdoctor Před 2 lety

      Can you tell me the timestamps? So that I can re-check

  • @gauravpoojari2773
    @gauravpoojari2773 Před 2 lety +4

    From which platform did you apply ?

  • @Solo_playz
    @Solo_playz Před rokem +1

    itna easy tha bhai is bar ka interview you are so lucky

  • @rodrigomoura2108
    @rodrigomoura2108 Před rokem +1

    For me, It's a test of understanding Indian English

  • @mayankpandey5149
    @mayankpandey5149 Před 2 lety

    Bhai only map key value hee nhi singal element bhi return karta hai wrong definition

    • @itscodingdoctor
      @itscodingdoctor Před 2 lety

      Glad to see you are paying good amount of attention 😊
      Timestamp bta skte ho bhai? Khan definition wrong h. M re-check kr leta hu

  • @nishantpatill
    @nishantpatill Před 2 lety +3

    I have one yr of experience brother.Can I apply here for Accenture?

  • @jamesbabu772
    @jamesbabu772 Před 2 lety +1

    how much experience do you have?

    • @itscodingdoctor
      @itscodingdoctor Před 2 lety

      These questions applies to candidates having 4 or less years of experience.

  • @sahilarora6768
    @sahilarora6768 Před rokem

    Hi friends
    I have good working knowledge of mern stack and created many projects on mern stack and have some basic knowledge of DSA(array and stack only) if there is any opening please share with me looking for job

  • @hersheynaik3029
    @hersheynaik3029 Před 11 měsíci

    is redux important in react? I use useContext so didn't use redux.

  • @priyankakumari-fe7we
    @priyankakumari-fe7we Před 2 lety +3

    How much day for interview result announced?

  • @CodeSuraZz
    @CodeSuraZz Před rokem

    map returns a new array where as for each does not

  • @surjendudas2845
    @surjendudas2845 Před rokem +1

    Bro it is a experience interview or fresher.upload more vedios on react interview

    • @itscodingdoctor
      @itscodingdoctor Před rokem +1

      Here you go MNC Interview Experiences: czcams.com/play/PLGZJDzu5NntRmgwjCg0OwFpt9yHh68Muc.html

    • @jetalmali1092
      @jetalmali1092 Před rokem

      I am experience developer...but due to the bad work culture...my front end knowledge is downgraded... will you please help me in getting react front end job....can we connect and learn together...its been really hard to learn alone...my self confidence is lost because of work politics..

  • @henrykhosasih8781
    @henrykhosasih8781 Před rokem

    Hate to say but it sounds like a scripted interview where I could hear the "jingle bells" cues in the beginning of every question. Nevertheless, very valuable information!

  • @IshwarSingh-vw9js
    @IshwarSingh-vw9js Před 2 lety +1

    What's the question at 7:00? Also can anyone explain the answer also?

    • @itscodingdoctor
      @itscodingdoctor Před 2 lety +3

      Q:- How do you improve application performance?

    • @itscodingdoctor
      @itscodingdoctor Před 2 lety +3

      Ans:-
      1. If you have long list of records, show only first few items at a time.
      2. For images, fetch lower quality thumbnail firs, instead of fetching big images.
      3. Always use key while rendering elements
      Etc..

    • @IshwarSingh-vw9js
      @IshwarSingh-vw9js Před 2 lety +1

      Thanks bro... And these videos are really helpful.. Keep up the good work

    • @itscodingdoctor
      @itscodingdoctor Před 2 lety

      Thanks @ishwar. Glad to hear.

    • @shahinshaikh07
      @shahinshaikh07 Před 2 lety

      @@itscodingdoctor what projects have you made, considering your deep knowledge you must have made good projects.

  • @nishantshah_
    @nishantshah_ Před rokem +1

    this guy is definitely going to do way better in his life.

  • @TheAditya64
    @TheAditya64 Před 2 lety +3

    Some of the answers were incomplete and not exactly correct. I assume the interviewer is also lacking proper knowledge.

    • @itscodingdoctor
      @itscodingdoctor Před 2 lety

      Glad to see that you paid good amount of attention to the answers. Please add the correct answers in the comments, it would help everyone!!

    • @TheAditya64
      @TheAditya64 Před 2 lety +3

      @@itscodingdoctor yeah i would but the comment will be damn long. And I'm a software engineer who is of course very lazy 😂😂

    • @itscodingdoctor
      @itscodingdoctor Před 2 lety

      Hahah! Good one.

    • @TheAditya64
      @TheAditya64 Před 2 lety +2

      @@itscodingdoctor but there is one thing I am going to bring it out. She asked I guess diff between ES5 and ES6. And the guy explained let const and var, which is a very poor asnwer. First explain what is ECMAScript then what is ES5 and ES6 and how it is related to JS. Then explain about little bit common js and vanilla js. Then explain what changes and what new things it brings to JS.

    • @itscodingdoctor
      @itscodingdoctor Před 2 lety

      Thanks 👍

  • @ritesh1211
    @ritesh1211 Před rokem

    I guess this is not an actual interview

  • @itscodingdoctor
    @itscodingdoctor Před 2 lety

    Watch Accenture React JS 2nd Round video here. czcams.com/video/y74y2mb7UY0/video.html

  • @swastikjainsj
    @swastikjainsj Před rokem +1

    where to apply ?

  • @venkat7667
    @venkat7667 Před 2 lety +1

    What they asked in 2 round

  • @mallanagoudajmallana3123
    @mallanagoudajmallana3123 Před 2 lety +1

    Your experience ?

  • @albincr
    @albincr Před rokem

    Are you sure this is Accenture???

  • @piltonswrangbrahma5140

    What is ur CTC for this position ?

  • @theuncannyepicurean
    @theuncannyepicurean Před rokem +1

    Is this interview for entry, mid or senior position?

  • @Elias-zn6og
    @Elias-zn6og Před 2 lety +1

    Was dificult to understand what she was talking about, I need learn even more english 😢 to get a job 😅

    • @itscodingdoctor
      @itscodingdoctor Před 2 lety

      Thanks for pointing out. What was the exact issue you faced? Audio quality or low volume or anything else??

    • @Elias-zn6og
      @Elias-zn6og Před 2 lety +1

      @@itscodingdoctor the girl's volume was low 😢 but you understood her perfectly

    • @itscodingdoctor
      @itscodingdoctor Před 2 lety

      Thanks for the feedback 😊 it helps.

    • @itscodingdoctor
      @itscodingdoctor Před 2 lety

      Next time, I'll try to amplify the volume.

  • @saniyakhan2318
    @saniyakhan2318 Před rokem +1

    is this interview for fresher

  • @RushUltraYT
    @RushUltraYT Před 2 lety

    Background noise 🤒🤒🤒🤒

    • @itscodingdoctor
      @itscodingdoctor Před 2 lety +1

      I know, my new videos doesn't have background noise

  • @kiranmohare6276
    @kiranmohare6276 Před 2 lety

    Poor knowledge

    • @itscodingdoctor
      @itscodingdoctor Před 2 lety +2

      Glad to see you are paying good amount of attention, btw Which question bro?

    • @sultanakhan2060
      @sultanakhan2060 Před rokem +1

      Aapko kitni knowledge h jo aap dusron ko poor bolne ki capability rakhte ho

    • @itscodingdoctor
      @itscodingdoctor Před rokem +1

      There are multiple ways to define/do things in programming. Some people think only there answer/approach is correct.