Infosys|| REACT JS live interview experience with MNC|| 3 years|| React js

Поділитися
Вставка
  • Опубліковано 13 бер 2022
  • telephonic interview with MNC #reactjs #frontenddeveloper

КОМЕНТАРІ • 107

  • @Ash_20167
    @Ash_20167 2 роки тому +15

    Ur confident more than interviewer also communication !! 👍
    Firstly @starting I thought u r interviwer nd mam as student.😅

    • @ReactjsExpertTalks
      @ReactjsExpertTalks  2 роки тому +3

      Thank you so much

    • @myadavji
      @myadavji 11 місяців тому +1

      It's fake interview bro😂

    • @MrGamerdon
      @MrGamerdon 6 місяців тому

      no typeScript so he said JS is better
      she wanted to know that you know TypeScript is your skill set or not
      we all know TypeScript is better *OVer Confidence*
      But allover well done

    • @MrGamerdon
      @MrGamerdon 6 місяців тому

      and arugument 1 then ...arugument2
      spread to be used right side and rest to be left side

  • @nitishgupta8393
    @nitishgupta8393 2 роки тому +6

    Props vs state
    State is use to maintain variable and data at component level. While props is used to pass the data, in some case state as well.
    And if we pass state and setstate both via props. In next component we can change the state and hence props too.

  • @sachinnaik4477
    @sachinnaik4477 2 роки тому +2

    Very helpful. Thank you so much

  • @newgamedata2530
    @newgamedata2530 2 роки тому

    thanks for the upload

  • @nitishgupta8393
    @nitishgupta8393 2 роки тому +3

    Thank you for this video. It will help me
    I am yet to grab me first job in react.

  • @nitishgupta8393
    @nitishgupta8393 2 роки тому +1

    For deliberately re render in class component we have a lifecycle method should component update

  • @nitishgupta8393
    @nitishgupta8393 2 роки тому +4

    Rest parameters to grab undefined parameters so it always should be last parameter in function.

  • @nitishgupta8393
    @nitishgupta8393 2 роки тому +3

    I think changing a object without spread operator is possible, but this waybit has a side effect, that object are reference type data type so every where it will change

  • @nitishgupta8393
    @nitishgupta8393 2 роки тому +2

    Css preprocessor are sass less which compile the fancy css to generic css.
    Bootstrap and mui are the library

  • @sureshmaxwel438
    @sureshmaxwel438 2 роки тому +4

    Really helpful... Please upload more videos...

  • @nitishgupta8393
    @nitishgupta8393 2 роки тому +8

    Lifecycle method answer always say first react has three phase mounting, updating and unmounting of component.
    Then describe all the methods and their need

  • @muhammedaflah9812
    @muhammedaflah9812 2 роки тому +3

    To force component rerender, we can't use useEffect. It can be achieved by changing the key prop.

    • @devanshkaushik3481
      @devanshkaushik3481 Рік тому

      It can also be done with states within the component... Changing states will re-render the ui

  • @nitishgupta8393
    @nitishgupta8393 2 роки тому +17

    Prop drilling disadvantages is, that in deep nested component, we have to unnecessary pass data to each child.

    • @healthymindwisethinking8783
      @healthymindwisethinking8783 2 роки тому

      Can you suggest me from where you have prepared for Reactjs.

    • @nitishgupta8393
      @nitishgupta8393 2 роки тому

      @@healthymindwisethinking8783 bro it is not a single source, I have given much time.some of the thing u can follow as. Take react live class course by Sudhakar sharma sir from Nareshit, paid course. But structured. Then some UA-cam which helped are. Code stepbystep, traversy media, pedro tech, code evolution, for redux ilive4coding. There are much, u explore yourself too. Don't forget it would take your time. Practice more.. Good luck

    • @healthymindwisethinking8783
      @healthymindwisethinking8783 2 роки тому

      @@nitishgupta8393 Thankyou Nitish.
      You can call me sis😀

    • @nitishgupta8393
      @nitishgupta8393 2 роки тому +1

      @@healthymindwisethinking8783 OK sis

    • @vguptae
      @vguptae 2 роки тому

      @@nitishgupta8393 Bro do you get your first job?

  • @nitishgupta8393
    @nitishgupta8393 2 роки тому +5

    Reference answer was super....
    My answer would be
    Reference is for directly manipulating the dom element

  • @mr.kakarot5937
    @mr.kakarot5937 2 роки тому

    It's an incomplete video, how much more long was the actual interview in addition of this?

  • @devwaliba1132
    @devwaliba1132 2 роки тому +13

    This Interviewer doesn't really have in-depth knowledge of React in-my-opinion, a Technical interview is not a quiz and shouldn't be treated as such. Some of the questions asked require rote answers and do not pertain what react developers use in their day-to-day activities. Tech interviews should center on a core understanding of React(Virtual DOM and unidirectional data flow), React Hooks and state management techniques(Redux, Context) to manage apps at scale, and optimization techniques to build highly performant apps.

    • @vaibhav7219
      @vaibhav7219 Рік тому

      Its a witch company, that's all they ask. It's a stupid selection process honestly

  • @shashankkulkarni993
    @shashankkulkarni993 2 роки тому +1

    OK thank you

  • @someorother5272
    @someorother5272 Рік тому +1

    setstate is asynchronous in nature.....it waits for the current function to complete before updating

  • @nitishgupta8393
    @nitishgupta8393 2 роки тому +1

    To open the hyperlink in new tab target attribute used, target _blank

  • @bindur87
    @bindur87 2 роки тому +1

    Thank you sahil...

  • @nitishgupta8393
    @nitishgupta8393 2 роки тому

    Static position by default any elements get and it position one below next

  • @sumitwadhwa8823
    @sumitwadhwa8823 2 роки тому +13

    functional components are NOT the same as class components even with the introduction of hooks. Hooks work differently then class components life-cycle methods. For example: this.state in componentDidMount will always refer to the latest state whereas useEffect hook's callback will have state belonging to a particular render.

    • @karan_panwar
      @karan_panwar Рік тому

      Agreed 💯, abhi Banda jod tod k bola h 😅

    • @mdsharique9685
      @mdsharique9685 Рік тому

      Correct bro, one can anytime check that thing by putting console inside useEffect.

  • @shubhamgore4320
    @shubhamgore4320 2 роки тому +3

    thank for this add coding round videos also ...

  • @rajatraj3160
    @rajatraj3160 Рік тому +1

    As per my knowledge functional component has state , have you read functional construction in js they declared with capital letter you also do same thing with react functional component , it has state , in programming every function has state , unless you make function which work on another function

    • @siddharthsingh913
      @siddharthsingh913 Рік тому

      Before the introduction of hooks, functional components were known as stateless components. But from react 16.8 onwards, with the introduction of hooks, functional components can have their own state and are on par with the class components.

  • @cworks73
    @cworks73 Рік тому

    a complete interview!

  • @laptopsharma8798
    @laptopsharma8798 Рік тому

    In 6.16 I didn't get the question can anyone clear me..!

  • @bhaipawansingh8359
    @bhaipawansingh8359 Рік тому

    Bhai 2023 me passout honge please help me bhaiya 😭😭😭😭 to take a job as react devloper for fresher

  • @shivammishra4477
    @shivammishra4477 Рік тому

    bro how much package they are providing for this ..?

  • @irkfaisal
    @irkfaisal 2 роки тому +1

    Ye decorater and subscribe Kya hai react me 😄

  • @nitishgupta8393
    @nitishgupta8393 2 роки тому +2

    I think keeping a copy of dom as a virtual dom consume memory..?
    What others say?

  • @Ady567
    @Ady567 2 роки тому +5

    Correction: setState is async.

  • @irkfaisal
    @irkfaisal 2 роки тому

    I want a live interview on projects basis not theoretical part.

  • @sddjango1510
    @sddjango1510 2 роки тому

    which company?

  • @milanpanta150
    @milanpanta150 2 роки тому +4

    Hi Sahil. First, thank you for sharing this interview. Can you please tell us how much salary did you negotiate with this company? Because I am really bad with salary negotiations and after I have done bad negotiation, i regret.

    • @ReactjsExpertTalks
      @ReactjsExpertTalks  2 роки тому +1

      You can easily ask 100% hike to your current package

    • @shiv4667
      @shiv4667 2 роки тому +5

      @@ReactjsExpertTalks your answer doesn't really help lol

  • @Sarvesh_Coder
    @Sarvesh_Coder Рік тому +1

    it seems like it is startup company

  • @myadavji
    @myadavji 11 місяців тому

    Beo is having 3 yr experience and his clearity in concept is same as or less than 1 yr experienced candidates.

  • @sweetdollsree
    @sweetdollsree 2 роки тому

    Can you post rest of the video also?

    • @ReactjsExpertTalks
      @ReactjsExpertTalks  2 роки тому +1

      Will upload soon...thanks for viewing.. subscribe for more videos

  • @navdeepjangra1
    @navdeepjangra1 Рік тому

    You nicely answered and handled all questions 👍🏻

  • @nitishgupta8393
    @nitishgupta8393 2 роки тому +2

    Reducer manage the state and keep the logic to mututate the state

    • @RajatSaraswat9
      @RajatSaraswat9 2 роки тому +1

      where did you learn all this, can yo recommend resources to learn react in detail?

    • @nitishgupta8393
      @nitishgupta8393 2 роки тому

      @@RajatSaraswat9 various channels Yaar. And majorly practice yourself with dummy app. And play with that.

    • @nitishgupta8393
      @nitishgupta8393 2 роки тому

      @@RajatSaraswat9
      Few are..
      Code evolution
      Roadside coder
      Academind
      Codedamn
      Code stepbystep
      Iliv4coding
      Pddrotech
      Techsith

    • @RajatSaraswat9
      @RajatSaraswat9 2 роки тому

      @@nitishgupta8393 thanks bro

  • @pratikpriyadarshi5256
    @pratikpriyadarshi5256 Рік тому +3

    unfortunetly, aap mumbai nhi aa rhe h

  • @rajeshrakshit474
    @rajeshrakshit474 2 роки тому +1

    why u comparing class vs functional everytime?

  • @vijrah3600
    @vijrah3600 14 днів тому

    Visited

  • @chillmode4597
    @chillmode4597 2 роки тому

    How can we apply for these companies i have 1.6 years experience?

  • @engineerbychance7449
    @engineerbychance7449 Рік тому

    Setstate is async

  • @navdeepjangra1
    @navdeepjangra1 Рік тому

    Sahil, i have 5 yrs total in full stack and 3 yrs in react....i am not getting calls because of 2 months notice period or maybe other reason...my resume is not getting shortlisted...can you please help?

    • @Sarvesh_Coder
      @Sarvesh_Coder Рік тому +2

      5 year is like a BOSS, it is not possible that ur not getting call

    • @navdeepjangra1
      @navdeepjangra1 Рік тому +2

      @@Sarvesh_Coder bro then i got so many calls, i am working now in tech mahindra with as a senior react js developer with more than 300% hike

    • @Sarvesh_Coder
      @Sarvesh_Coder Рік тому +1

      @@navdeepjangra1 keep going

    • @thequantum-plator
      @thequantum-plator 11 місяців тому +1

      @@navdeepjangra1 what was the reason for not getting calls? also how many rounds in tech mahindra for experienced react developers

    • @navdeepjangra1
      @navdeepjangra1 11 місяців тому +1

      @@thequantum-plator because my naukri profile was not enabled to actively looking. 3 rounds in techM.

  • @omkarshinde7466
    @omkarshinde7466 2 роки тому +2

    Plz help me bro,
    I have completed 3 months internship as react dev.
    I'm good in react and redux.
    I have pass 2 tach round in statup.
    What package should I take ?

  • @NEHAVERMA-re5mu
    @NEHAVERMA-re5mu 2 роки тому

    have you cracked this interview ?

  • @rmt0858
    @rmt0858 2 роки тому

    Its practice interview not real

  • @vinodsaggam7399
    @vinodsaggam7399 Рік тому

    SetState is asynchronous

  • @imyounick
    @imyounick Рік тому +3

    I dont understand by asking bookish questions how can interview can judge him if he have really worked on that tech or not
    Such a stupid interviewer
    Firstly Reactjs is not framework its library someone go and tell her😂

  • @sachinnaik4477
    @sachinnaik4477 2 роки тому +1

    Selected?

  • @nitishgupta8393
    @nitishgupta8393 2 роки тому +5

    Callback functions I would say, function which perform another or next task after completing the main task of function. It is by default synchronos.
    Closure functions are basically functions which keep remember the data or variable from their lexical scope.

  • @rajeshrakshit474
    @rajeshrakshit474 2 роки тому +3

    setState is asynchronous

  • @labrajthakurathi5754
    @labrajthakurathi5754 2 роки тому +2

    You really fucked up this interview, will be surprised if you get offer. Anyways, “setState” returns promise and it is a asynchronous.

  • @nitishgupta8393
    @nitishgupta8393 2 роки тому +1

    Subscribe I think... Refer to the component which is consuming context or redux store state