Top 100 React JS Interview Questions and Answers

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

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

  • @hongekarchaitali
    @hongekarchaitali 4 หลายเดือนก่อน +114

    React Basics-1
    Q1 3:08 what us React? What is the Role of React in software development?
    Q2 6:15 what are the key Features of React?
    Q3 8:00 what is DOM? What is the difference between HTML
    & DOM?
    Q4 10:59 What is virtual DOM ? Difference between DOM &
    Virtual DOM?
    Q5 15:36 What are React Components? What are the main
    elements of it?
    Q6 17:25 What is SPA (Single Page Application)?
    Q7 19:10 What are the 5 advantages of React?
    Q8 21:41 What are the disadvantages of React?
    Q9 22:56 What is the role of JSX in React?
    Q10 25:01 what is the difference between Declarative &
    Imperative Syntax?
    React Basics-2 26:52
    Q11 27:33 What is Arrow Function Expression in JSX?
    Q12 30:17 How to Setup React first project?
    Q13 32:40 What are the Main files in React project?
    Q14 34:57 How React app Load & display the components in
    browser?
    Q15 36:37 What is the difference between React & Angular?
    Q16 39:38 What are the other 5 JS frameworks other than
    React?
    Q17 40:18 Whether React is Framework or Library? what is
    the difference?
    Q18 41:45 How React provide Reusability & Composition?
    Q19 43:59 What are State, Stateless, Stateful and state
    management teams?
    Q20 47:05 What are Props in JSX?
    React Basics-3 48:05
    Q21 48:58 What is NPM? What is the role of node_module
    folder?
    Q22 50:26 What is the role of public folder in React?
    Q23 51:29 What is the role of src folder in React?
    Q24 52:12 What is the role of index.html page in React?
    Q25 53:22 What is the role of index.js file & ReactDOM in
    React?
    Q26 55:28 What is the role of App.js file in React?
    Q27 56:52 What is the role of function & return inside
    App.js?
    Q28 58:43 Can we have function without a return inside
    App.js?
    Q29 1:00:28 What is the role of export default inside
    App.js?
    Q30 1:01:25 Does the file name & component name must be
    same in React?
    React -4 JSX - 1:02:04
    Q31 1:02:48 What is the role of JSX in React?
    Q32 1:04:56 What are the 5 Advantages of JSX?
    Q33 1:07:15 What is Babel?
    Q34 1:08:29 What is the role of Fragment in JSX?
    Q35 1:10:35 What is Spread Operator in JSX?
    Q36 1:11:55 What are the types of Conditional Rendering
    in JSX?
    Q37 1:14:50 How do you iterate over a list in JSX? What
    is map() method?
    Q38 1:17:39 Can a browser read a JSX file?
    Q39 1:18:01 What is Transpiler? What is the difference
    between Compiler & Transpiler?
    Q40 1:19:26 Is it possible to use JSX without React?
    React- 5 Components-Functional/Class 1:19:57
    Q41 1:20:47 What are React Components ? what are the main
    elements of it?
    Q42 1:22:38 What are the Types of React Components? What
    are Functional Components?
    Q43 1:23:41 How do you pass data between functional
    components in React?
    Q44 1:23:58 What is Prop Drilling in React?
    Q45 1:25:06 Why to Avoid Prop Drilling? In how many ways
    avoid Prop Drilling?
    Q46 1:27:36 What are class components in React?
    Q47 1:29:18 How to pass data between class components in
    React?
    Q48 1:30:30 What is the role of this keyword in class
    components?
    Q49 1:32:05 What are the 5 differences btw Functional
    components & class components?
    React- 6 Routing 1:34:09
    Q50 1:34:43 What is Routing and Router in React?
    Q51 1:36:02 How to implement Routing in React?
    Q52 1:37:47 What are the roles of &
    component in React Routing?
    Q53 1:39:12 What are Route Parameters in React Routing?
    Q54 1:39:52 What is the role of Switch Component in React
    Routing?
    Q55 1:41:05 What is the role of exact prop in React
    Routing?
    React- 7 Hooks -useState/useEffect 1:42:04
    Q56 1:42:39 What are React Hooks? What are the Top React
    Hooks?
    Q57 1:44:32 What are State, Stateless, Stateful and State
    Management terms?
    Q58 1:47:39 What is the role of useState() hook and how
    it works?
    Q59 1:52:08 What is the role of useEffect(). How it works
    & what is its use?
    Q60 1:56:13 What is Dependency Array in useEffect() hook?
    Q61 1:58:25 What is the meaning of the empty array[] in
    the useEffect()?
    React- 8 Hooks -useContext/useReducer 1:59:12
    Q62 1:59:53 What is the role of useContaxt() hook?
    Q63 2:02:40 What is createContext() method? what are
    Provider & Consumer Properties?
    Q64 2:03:59 When to use useContext hook instead of props
    in real application?
    ***** No Answer *****
    Q65 what are the similarities between useState() &
    useReducer() hook?
    Q66 what is useReducer() hook? When to use useState() &
    when useReducer()?
    Q67 What are the differences between useState() &
    useReducer() hook?
    Q68 What are dispatch & reducer function in useReducer
    hook?
    Q69 What is the purpose of passing initial state as an
    object in useReducer?
    ***** React 9 & 10 topics missing ******
    React- 11 Component LifeCycle Method-1 2:05:24
    Q70 2:06:12 What are component life cycle phases?
    Q71 2:08:03 What are component life cycle methods?
    Q73 2:09:55 What are constructors in class components ?
    when to use them?
    Q74 2:12:13 What is the role of super keyword in
    constructor?
    Q75 2:13:31 what is the role of render() method in
    component life cycle?
    Q76 2:15:30 How the state can be maintained in a class
    component?
    Q77 2:17:27 What is the role of componentDidMount()
    method in component life cycle?
    ***** React 12 topics missing ******
    React- 13 Controlled & Uncontrolled Components 2:20:39
    Q78 2:20:53 What are controlled components in React?
    Q79 2:23:17 What are the differences btw Controlled &
    Uncontrolled components?
    Q80 2:25:18 What are characteristics of controlled
    components?
    Q81 2:26:41 What are the advantages of using controlled
    components in React forms?
    Q82 2:28:41 How to handle forms in React?
    Q83 2:28:55 How can you handle multiple input fields in a
    controlled form?
    Q84 2:29:11 How do you handle form validation in a
    controlled component?
    Q85 2:29:43 In what scenarios might using uncontrolled
    components be advantageous?
    ***** React- 14 Code Splitting 2:30:13
    Q86 2:30:50 What is code splitting in React?
    Q87 2:32:45 How to implement code splitting in React?
    Q88 2:35:58 What is the role of Lazy & Suspense methods
    in React?
    Q89 2:38:07 What are the Pros & Cons of code splitting?
    Q90 2:41:39 What is the role of the import function in
    code splitting?
    Q91 2:42:06 What is the purpose of the fallback prop in
    suspense?
    Q92 2:42:32 Can you dynamically load css files using code
    splitting in React?
    Q93 2:42:55 How do you inspect & analyze the generated
    chunks in React application?
    ***** React- 15 Others
    Q94 2:43:58 What is a higher-order component in React?
    Q95 2:47:03 What are the 5 Ways to Style React components
    ? Explain inline styles?
    Q96 2:48:18 What are the difference between React & React
    Native?
    Q97 2:49:38 What is GraphQL?
    Q98 2:50:45 What are the Top 3 ways to achieve state
    management? when to use what in React?
    Q99 2:53:34 How can you implement authentication in a
    React application?
    Q100 2:56:23 What is the use of React Profiler?
    Q101 2:57:49 What is the difference between Fetch & Axios
    for API calls in React?
    Q102 3:00:34 What are the popular Testing Libraries for
    React?
    Q103 3:00:58 How can you Optimize Performance in React
    application?
    Q104 3:03:13 Explain Reactive Programming with example?
    Q105 3:05:10 In how many ways can we implement Reactive
    Programming in React?
    Q106 3:06:20 How to pass data from child component to
    parent component in React?

    • @RajKumarT123
      @RajKumarT123 4 หลายเดือนก่อน +1

      It will be very helpful if you provide questions with answers

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

      Watch the videoooo ​@@RajKumarT123

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

      @@RajKumarT123 bruhhhhh, it'll be much better if you find out answers by yourself

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

      @@abhinavraj2631 😅

    • @Sportgameww
      @Sportgameww 6 วันที่ผ่านมา

      Thank you mam.

  • @zhewang848
    @zhewang848 7 หลายเดือนก่อน +34

    I am a older mom with 2 kids, changing my career to a full stack developer. It is really hard for me to squeeze time learning all the technologies and compete with those young talents, but I am trying. Thank you so much for your videos, very self-explanatory! I just purchased your Udemy class for support! I will definitely let you know if I finally land a job~

    • @farazk9729
      @farazk9729 6 หลายเดือนก่อน +2

      All the best 👍

  • @Sasta_codeR73
    @Sasta_codeR73 10 หลายเดือนก่อน +88

    TIMESTAMPS
    2:42 react basics 1
    26:45 react basics 2
    48:24 react file and folders.
    1:02:42 JSX
    1:20:01 components- Functional/Class
    1:34:11 Routing .
    1:42:33 Hooks 1 .
    1:59:28 Hooks 2.
    2:05:49 life cycle methods-1
    2:20:32 controlled & Uncontrolled Components .
    2:30:15 code splitting
    2:43:18 react -others

    • @aniketgurav809
      @aniketgurav809 10 หลายเดือนก่อน +3

      thnx bro

    • @interviewhappy
      @interviewhappy  10 หลายเดือนก่อน +11

      Thanks bro

    • @jaiswalsourabh8027
      @jaiswalsourabh8027 10 หลายเดือนก่อน +4

      thank u so much sir :) Please bring the same for Node.js
      @@interviewhappy

    • @raviramvelidi7476
      @raviramvelidi7476 10 หลายเดือนก่อน

      Thanku bro

    • @44vikramnayakit97
      @44vikramnayakit97 10 หลายเดือนก่อน

      thanks a lot

  • @G4laxy_kit
    @G4laxy_kit 2 หลายเดือนก่อน +9

    I’ve got a job of Senior React Dev. This particular video helped me a lot.
    Thanks Happy!

  • @mrrickr121
    @mrrickr121 8 หลายเดือนก่อน +15

    I have selected as a software engineer by preparing with you videos 1.5 years ago.
    Thanks.

    • @prudhvikumarseelam5213
      @prudhvikumarseelam5213 8 หลายเดือนก่อน

      which company

    • @mrrickr121
      @mrrickr121 วันที่ผ่านมา

      @@prudhvikumarseelam5213 It was coforge Ltd

  • @karthikkeyan7273
    @karthikkeyan7273 9 หลายเดือนก่อน +21

    Thankyou Happy, I crack the interview in my first try & waiting for the offer letter. This video is very useful for revision. Thankyou so much..

    • @basil4996
      @basil4996 5 หลายเดือนก่อน +1

      bro are you a fresher? where did you applied for job? I am applying but not getting single call

  • @madhummh77
    @madhummh77 9 หลายเดือนก่อน +9

    Hi sir from watching your videos and following your advice today I got my new job thank you very much sir In the interview almost all questions are asked that you taught only

    • @sumannayak7677
      @sumannayak7677 9 หลายเดือนก่อน +1

      can u share some questions

  • @wilgailorimer4916
    @wilgailorimer4916 17 วันที่ผ่านมา +2

    I got hired as senior full-stack developer your video are really helpfull.

    • @interviewhappy
      @interviewhappy  16 วันที่ผ่านมา

      I'm so glad my videos are helpful! Congrats brother

  • @jaiswalsourabh8027
    @jaiswalsourabh8027 10 หลายเดือนก่อน +16

    Great React interview questions! 👍 Hoping for a follow-up with 100 Node.js questions. Your content is invaluable for developers! 🚀

  • @shreyasgowda2077
    @shreyasgowda2077 10 หลายเดือนก่อน +3

    Hi Happy, first i would like to thanks for efforts in making vedios which are helping thousands of people. I had 4 years as a .Net developer but when I started giving interviews i felt like am zero. But then i started watching your videos and now i have 4 offers and one in pipeline, whatever questions i used to get in interviews 98% of them were on ur channel. It helped me lot in my career and i have recommended it all my colleagues. Thanks a lot Happy… just like ur name says u made so many peoples life Happy 😊 all the best for ur channel and you ❤

    • @jayeshmahajan4213
      @jayeshmahajan4213 10 หลายเดือนก่อน

      hi muje thoda guide karo na ki apko scenario based coding questions puche the kya

    • @shreyasgowda2077
      @shreyasgowda2077 10 หลายเดือนก่อน

      @@jayeshmahajan4213yes in some companies not in all

    • @interviewhappy
      @interviewhappy  9 หลายเดือนก่อน +4

      IS IT RECESSION???
      Many candidates ask me.
      Sir, right now the market is not good. What should I do?
      And 100 times I said that.
      Don't let your fate be decided by circumstances.
      Follow your goals and grow more and more.
      Even if recession or firing is real???
      Are you waiting for your company to fire you?
      Go give some interviews and be ready for any situation.
      Crack the interview and don't accept the offer. Simple without any harm.
      (But the day you will crack the interview, your thinking will change positively)
      But please DON'T GIVE EXCUSES and DON'T SPREAD NEGATIVITY.

    • @vamshikrishna6001
      @vamshikrishna6001 9 หลายเดือนก่อน

      Wish u share ur interview experiences

    • @shreyasgowda2077
      @shreyasgowda2077 9 หลายเดือนก่อน

      @@jayeshmahajan4213 yes in some companies

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

    Thank you for this valuable course! The questions are very practical-I encountered several in my first round of phone interviews. I believe every front-end developer should master these Q&A for good luck to favor them.

  • @neemasingh7914
    @neemasingh7914 10 หลายเดือนก่อน +68

    Attempted 12 interviews in 2 months, for Senior frontend dev , now I am here lets see how my other interviews go

    • @interviewhappy
      @interviewhappy  9 หลายเดือนก่อน +47

      That's the spirit...
      You remind me of myself. I was never a good interview person, but giving up was never an option.
      Also, you remind me of the "Unbroken" movie plank scene.
      Hats off, and all the best for your interviews...

    • @vamshikrishna6001
      @vamshikrishna6001 9 หลายเดือนก่อน +8

      Nice spirit! Wish u share ur interview experiences. We are not even getting calls. Thanks for info. Please do analyze if possible, any issue once.

    • @akulavara2940
      @akulavara2940 9 หลายเดือนก่อน +1

      ​@@interviewhappy
      Please upload Python interview questions Sir 🙏🤝

    • @hitmansharma613
      @hitmansharma613 9 หลายเดือนก่อน

      Where are you from
      And how r u approaching companies

    • @shreyasgowda2077
      @shreyasgowda2077 9 หลายเดือนก่อน

      @@vamshikrishna6001 keep notice as 30-60 days, in HR round you can request for increase in notice period or decrease in notice period from current company. try updating ur profile and resume just make small changes so that your profile gets on top and in actively searching for jobs. Just small change is also enough and make that changes after 9pm night so morning when HR’s search u ll be on top.
      These are some tips for getting calls.
      Hope it helps.
      I felt naukari platform is good for job search.
      Never stop giving interviews, i gave more-than 15 interviews to get a job so keep going. More interviews you attend more confidence and more knowledge u will gain.
      I learned so many of them from @interviewhappy and it worked for me
      All the best 👍🏻

  • @ishwar1907
    @ishwar1907 9 หลายเดือนก่อน +6

    In last 6 month I have given 8 interviews in MNC and PBC all failed still not loosing hopes. Thanks for this video I appreciate your hard work!

  • @AshokKumar-pw6ue
    @AshokKumar-pw6ue 10 หลายเดือนก่อน +24

    ❤ from TamilNadu..
    I got an offer from HCL for Fullstack role (DotNet + ReactJs)
    Your videos are very very very helpful to clear the interviews.
    Thank you so so so much for you.... 🙏🙏🙏🙏🙏☺☺☺
    Keep posting, keep supporting...

    • @mehr4294
      @mehr4294 10 หลายเดือนก่อน

      Do you have prior experience in full stack role?

    • @AshokKumar-pw6ue
      @AshokKumar-pw6ue 10 หลายเดือนก่อน

      @@mehr4294 yes bro

    • @sam-the-developer8753
      @sam-the-developer8753 10 หลายเดือนก่อน +1

      congrats bro i hope i can land a job when i start hunting in february

    • @interviewhappy
      @interviewhappy  10 หลายเดือนก่อน +4

      Your achievement has truly filled my heart with joy. Celebrating your accomplishment and wishing you continued success. Thanks for sharing.

    • @genshingamer8361
      @genshingamer8361 9 หลายเดือนก่อน +1

      Thala valthukal thala aim for bonus

  • @rajatchaurasia3578
    @rajatchaurasia3578 4 หลายเดือนก่อน +2

    Thanks for sharing today is my Full stack interview.....best of luck for me 🤞❤

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

      You got this! Good Luck

    • @srivardhan.s5191
      @srivardhan.s5191 หลายเดือนก่อน

      what happened bro

    • @who-rl8oo
      @who-rl8oo 26 วันที่ผ่านมา

      Did you clear it?

  • @roshankarwalkar7102
    @roshankarwalkar7102 5 หลายเดือนก่อน +1

    Thanks for this video, you have really covered all the common questions that every interviewer can ask for React and you are explainations are easy to understand.can you cover questions like
    1.Diff in useMemo and useCallback
    2.Does useCallback is needed in Ract 18
    3.What are the new features are available in recent React version.
    4.How to validate props in React.

  • @tintuvarghese7779
    @tintuvarghese7779 5 วันที่ผ่านมา

    Thanks Happy......This video helped a lot.. Got job.

    • @interviewhappy
      @interviewhappy  4 วันที่ผ่านมา

      I'm so glad it helped you get the job!

  • @mangeshsodnar8426
    @mangeshsodnar8426 9 หลายเดือนก่อน +4

    this is the best react revision video. Thank you.

  • @tonytony-fc6gq
    @tonytony-fc6gq 10 หลายเดือนก่อน +5

    WOW THANK YOU , your javascript udemy course is amazing !!!, im definately going to get the REACT COURSE NOW!! i dont need to watch this video i already know it will be great

    • @interviewhappy
      @interviewhappy  10 หลายเดือนก่อน +1

      Thanks and You’re welcome 😊

  • @mannu1246
    @mannu1246 9 หลายเดือนก่อน +3

    Sir.....first Of All Thank You SoMuch for this video......and i would request you to create one more video
    on React Including Redux Questions.

  • @daminijaiswal1865
    @daminijaiswal1865 10 หลายเดือนก่อน +2

    Thank you so much sir. This type of videos are really the big help to whom, who wants to crack the interview and want to get the job.

  • @irfansaeedkhan7242
    @irfansaeedkhan7242 9 หลายเดือนก่อน +4

    so much work done by you, thank you so much

  • @shubhamWF
    @shubhamWF 6 หลายเดือนก่อน +4

    Q1. What is React? What is the Role of React in software development? Q2. What are the Key Features of React?
    Q3. What is DOM? What is the difference between HTML and DOM? Q4. What is Virtual DOM? Difference between DOM and Virtual DOM? Q5. What are React Components? What are the main elements of it? Q6. What is SPA(Single Page Application)?
    Q7. What are the 5 Advantages of React?
    Q8. What are the Disadvantages of React?
    Q9. What is the role of JSX in React? (3 points)
    Q10. What is the difference between Declarative & Imperative syntax?
    Q1. What is Arrow Function Expression in JSX? V. IMP.
    Q2. How to Setup React first project?
    Q3. What are the Main Files in a React project?
    Q4. How React App Load and display the components in browser? V. IMP.
    Q5. What is the difference between React and Angular?
    Q6. What are other 5 JS frameworks other than React?
    Q7. Whether React is a Framework or a Library? What is the difference?
    Q8. How React provides Reusability and Composition?
    Q9. What are State, Stateless, Stateful and State Management terms? Q10. What are Props n JSX? V. IMP.
    Q1. What is NPM? What is the role of node_modules folder? V. IMP.
    Q2. What is the role of public folder in React?
    Q3. What is the role of src folder in React?
    Q4. What is the role of index.html page in React?
    V. IMP.
    Q5. What is the role of index.js file and ReactDOM in React? V. IMP. Q6. What is the role of App.js file in React?
    V. IMP.
    Q7. What is the role of function and return inside App.js?
    Q8. Can we have a function without a return inside App.js?
    Q9. What is the role of export default inside App.js?
    Q10. Does the file name and the component name must be same in React
    Q1. What is the role of JSX in React? (3 points)
    Q2. What are the 5 Advantages of JSX?
    Q3. What is Babel?
    Q4. What is the role of Fragment in JSX?
    Q5. What is Spread Operator in JSX?
    Q6. What are the types of Conditional Rendering in JSX? V. IMP.
    Q7. How do you iterate over a list in JSX? What is map() method?
    Q8. Can a browser read a JSX File?
    Q9. What is Transpiler? What is the difference between Compiler & Transpile
    Q10. Is it possible to use JSX without React?
    Q1. What are React Components? What are the main elements of it?
    V. IMP.
    Q2. What are the Types of React components? What are Functional Components? V. IMP. Q3. How do you pass data between functional components in React?
    Q4. What is Prop Drilling in React?
    V. IMP.
    Q5. Why to Avoid Prop Drilling? In how many ways can avoid Prop Drilling?
    V. IMP.
    V. IMP.
    Q6. What are Class Components In React?
    Q7. How to pass data between class components in React?
    Q8. What is the role of this keyword in class components?
    Q9. What are the 5 differences btw Functional components & Class components? V. IMP.
    Q1. What is Routing and Router in React?
    Q2. How to Implement Routing in React?
    Q3. What are the roles of & component in React Routing?
    Q4. What are Route Parameters in React Routing?
    Q5. What is the role of Switch Component in React Routing?
    Q6. What is the role of exact prop in React Routing?
    Q1. What are React Hooks? What are the Top React Hooks?
    Q2. What are State, Stateless, Stateful and State Management terms? Q3. What is the role of useState() hook and how it works?
    Q4. What is the role of use Effect(). How it works and what is its use?
    Q5. What is Dependency Array in useEffect() hook?
    Q6. What is the meaning of the empty array [] in the useEffect()?
    Q1. What is the role of useContext() hook?
    Q2. What is createContext() method? What are Provider & Consumer properties? Q3. When to use useContext() hook instead of props in real applications?
    Q4. What are the similarities between useState() and useReducer() hook?
    V. IMP.
    Q5. What is useReducer() hook? When to use useState() and when useReducer()? V. IMP.
    Q6. What are the differences between useState() and useReducer() Hook?
    Q7. What are dispatch & reducer function in useReducer Hook?
    Q8. What is the purpose of passing initial state as an object in UseReducer?
    Q1. What are Component life cycle phases?
    Q2. What are Component life cycle methods?
    Q3. What are Constructors in class components? When to use them?
    Q4. What is the role of super keyword in constructor?
    Q5. What is the role of render() method in component life cycle?
    Q6. How the State can be maintained in a class component?
    Q7. What is the role of componentDidMount() method in component life cycle?
    Q1. What are Controlled Components in React?
    V. IMP.
    Q2. What are the Differences btw Controlled & Uncontrolled Components? V. IMP. Q3. What are characteristics of controlled components?
    Q4. What are the advantages of using controlled components in React forms?
    Q5. How to handle forms in React?
    Q6. How can you handle multiple input fields in a controlled form?
    Q7. How do you handle form validation in a controlled component?
    Q8. In what scenarios might using uncontrolled components be advantageous?
    Q1. What is Code Splitting in React?
    Q2. How to Implement Code Splitting in React?
    Q3. What is the role of Lazy and Suspense methods in React? V. IMP.
    Q4. What are the Pros and Cons of Code Splitting?
    Q5. What is the role of the import() function in code splitting?
    Q6. What is the purpose of the fallback prop in Suspense?
    Q7. Can you dynamically load CSS files using code splitting in React?
    Q8. How do you inspect and analyze the generated chunks in a React application?

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

    awesome, explained in such a simple way that it can be easily remembered

  • @vinayak9494
    @vinayak9494 3 หลายเดือนก่อน +1

    Thank you sir most important topics coverd and all topics iam understand good explaination sir once again Tq you

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

    This playlist was golden. Thank for providing such good content and your efforts sir. Make more playlist like this. It really helpful

  • @Abdosaad-t1j
    @Abdosaad-t1j 2 หลายเดือนก่อน

    Amazing video for recalling the basics.

  • @md.raselhossain5616
    @md.raselhossain5616 2 หลายเดือนก่อน

    Thank you for the amazing React Question & Answer tutorial. I learned a lot in this tutorial. Love from Bangladesh.

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

    Completed all questions, lets hope for best❤, Thanks for this, I have learnt many new thing also in this.

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

    One of the most comprehensive React crash course on internet.

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

    Great lecture sir, please make complete react course

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

    Great content and great delivery, i.e., voice and speed. Thank you so much. Subscribed!

  • @sony4481
    @sony4481 10 หลายเดือนก่อน +1

    Thank you amazing tutorial for React Q&A. I learnt a lot in this tutorial.

    • @interviewhappy
      @interviewhappy  10 หลายเดือนก่อน +1

      Glad it was helpful!

  • @mohibullah8302
    @mohibullah8302 9 หลายเดือนก่อน +1

    Thank you so much for creating such amazing videos. Your videos helped me in landing my job. Love your work it's very helpful

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

    This is the best crash course for a react developer interview. I would recommend your course to all there.

  • @dharmaraosalana641
    @dharmaraosalana641 5 หลายเดือนก่อน

    Great Effort Happy you are really making others Happy by these videos

  • @purneshvishnole
    @purneshvishnole 10 หลายเดือนก่อน +8

    we want same video of node.js of 200+ interview questions

  • @amangupta-zg2yr
    @amangupta-zg2yr 9 หลายเดือนก่อน

    Thank you very much Happy to make me Happy, This is what I am looking for.

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

    I'm a full stack dotnet developer. The way you explained all the concepts answered more than just the questions i had in my mind initially. Great work 😄👍

  • @maithili6143
    @maithili6143 21 วันที่ผ่านมา

    Thank you dude. Tomorrow is my interview. Good preparation kit 👍

    • @interviewhappy
      @interviewhappy  21 วันที่ผ่านมา

      Good luck, hope it goes well!

  • @RichaChawla-e2v
    @RichaChawla-e2v 4 หลายเดือนก่อน +2

    Superb Sir ! Thanks much.

  • @PrakashKumar-ez7vv
    @PrakashKumar-ez7vv 7 หลายเดือนก่อน

    Thanku sir a lot for such a awesome interview series I was able to crack my interview for the full stack role and your videos helped me a lot .......❤

  • @tonystarc9567
    @tonystarc9567 27 วันที่ผ่านมา

    Finished in a single sprint. Expecting to appear in interviews from November 15th. :)

  • @amanchadha8530
    @amanchadha8530 6 หลายเดือนก่อน +1

    Thank you Happy Sir for such a detailed explanation. I recently cleared the interview and got an offer letter. ❤🎉

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

      Wonderful , Cheers to you for a job.
      This accomplishment is just one step on your journey.
      Good luck

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

    Thank you so much for your amazing interview prep videos! Thanks to your content, I was able to crack my interview and secure a 65% hike in my salary! Your guidance and tips were invaluable. Keep up the great work!

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

      This amazing accomplishment is just one step on your journey.
      This career move is a perfect fit for you, I'm so excited on your behalf.
      It would be nice if you could post your package and firm name to motivate others; but, if you prefer to keep it private, that is fine.

  • @cosmos1980
    @cosmos1980 6 หลายเดือนก่อน +1

    You have a very soothing voice 😊

  • @tikasigdel
    @tikasigdel 10 หลายเดือนก่อน +1

    Easy to understand, its for quick learners

  • @RavindraKumarChouhanrk
    @RavindraKumarChouhanrk 10 หลายเดือนก่อน +1

    It is very informative within small time frame Thanks

  • @karan....6669
    @karan....6669 5 หลายเดือนก่อน

    Thank you it is very helpful I have cracked interview because of your videos

    • @interviewhappy
      @interviewhappy  5 หลายเดือนก่อน

      That's great! congrats brother

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

    Hello sir... Few days ago I came across your video and I saw this video , now I am placed in a company, All because of this REACT ❤️‍🔥!!
    THANK YOU SIR🔥

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

      You'll be successful wherever you go, best wishes for this new job opportunity.
      Congrats on this next step in your career.
      It would be nice if you could post your package and firm name to motivate others; but, if you prefer to keep it private, that is fine.

  • @sekdinesh6542
    @sekdinesh6542 9 หลายเดือนก่อน +3

    Hi Sir, Thank you so much.....🙏🙏🙏
    I attended the more than 15 interviews but i am not clear.
    Now I got an offer from MNC Company for React JS Developer role.
    Your videos are very useful to clear the interviews.
    Please keep going on latest technologies.... We are all support you
    Once again Thank you so much sir!!! 🙏🙏🙏

    • @abc-ym4zs
      @abc-ym4zs 9 หลายเดือนก่อน

      How u prepared for interview are u fresher

  • @shubhamtaluja9770
    @shubhamtaluja9770 9 หลายเดือนก่อน +1

    Best Tutor!

    • @interviewhappy
      @interviewhappy  9 หลายเดือนก่อน +1

      Glad you think so!

  • @filmbuzz9419
    @filmbuzz9419 13 วันที่ผ่านมา

    This questions can prepare for freshers candidate

  • @sharmilak5109
    @sharmilak5109 10 หลายเดือนก่อน +1

    Excellent work Happy Sir,THANK UOU

  • @DevrajKumar-cq3yy
    @DevrajKumar-cq3yy 2 หลายเดือนก่อน

    Good collection of questions and you have explained in a nice way. I as a beginner of React, wanted to thank you for all this. Just had a question: In Route chapter - in place of "element" attribute inside tag, you have mentioned "Component", will it work or need to change to element?

  • @russtheceo4246
    @russtheceo4246 5 หลายเดือนก่อน

    Thank you for this! Very well done!

    • @interviewhappy
      @interviewhappy  5 หลายเดือนก่อน

      Glad you enjoyed it!

  • @mrrickr121
    @mrrickr121 8 หลายเดือนก่อน

    Now i am preparing for my interview for tech lead. For .net and react js and nextjs Senior fullstack developer.

  • @harikapuli-m9f
    @harikapuli-m9f 5 หลายเดือนก่อน

    Thankyou Happy i cleared 1st round yesterday it helped me alot, hope i clear all rounds and get the offer.. om namah shivay!

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

    Nice learning by videos online, Thanks

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

    Great work sir! Can you please make a similar video for React Native Interview Questions? I couldn't find a proper video for react native on youtube.There might be many students like me facing the similar issue. Please help us out!!!🥺

  • @vaishali55
    @vaishali55 9 หลายเดือนก่อน

    Thank you for this video. It is good and easy to understand for revision as I am still giving interviews as fresher. Please bring a Redux interview video. Interviewers have increased the bar and ask questions that a 1-2 year experience will bring on the table. Thank you.

    • @gouravjain7809
      @gouravjain7809 9 หลายเดือนก่อน

      What questions you are being asked by interviewer
      Can you share those.?

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

    Best mentor ever 🤍

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

    Hi, thanks a lot for this video, this video helped me to answer a lot of questions in interview, some suggestions would be to add exception handling topic like 'error boundaries' and some js prerequisites like map , filter , prototype, closure ,benefits of immutable state in react. 🙏

  • @vincetamayo9669
    @vincetamayo9669 9 หลายเดือนก่อน

    thank you bro for this guide, your efforts in making this video are very much appreciated

  • @rajithaadihetty7032
    @rajithaadihetty7032 10 หลายเดือนก่อน +3

    Can you create a video for the Node.JS interview?

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

    Thank you very much sir this video helped me also and I recommend this video for most of my friends please keep going and create the content like this 😊

  • @anusha3558
    @anusha3558 9 หลายเดือนก่อน

    Hi sir...I did buy your pdf bcz I liked the content....I cleared the first round ..will be back once I clear the technical round ..

  • @incarnateTheGreat
    @incarnateTheGreat 8 หลายเดือนก่อน +1

    You know, it would be GREAT if they would ask some of these in a React interview instead of a Leetcode question.

  • @Tuhin-offical-g1f
    @Tuhin-offical-g1f 9 หลายเดือนก่อน +1

    Landed my dream job , thanks Happy

  • @kdg3526
    @kdg3526 5 หลายเดือนก่อน

    Really this video is awesome. You put your all efforts in this video. It will help each and every developers and help to getting the job. Thank you sir for make us batter and strong in react. I think i will get the job soon after watch this video and revise it 2 or 3 time. Again thank you so much sir❤.

  • @GirishBisane-d4f
    @GirishBisane-d4f 8 หลายเดือนก่อน +1

    Thank you for helping

  • @krishnareddyyerram4615
    @krishnareddyyerram4615 10 หลายเดือนก่อน +1

    Thank you very much for your React JS FAQ.

    • @interviewhappy
      @interviewhappy  10 หลายเดือนก่อน +1

      My pleasure 😊@krishna

  • @World_information5568
    @World_information5568 10 หลายเดือนก่อน +2

    Infinity times thank you very much sir ❤❤❤❤❤

    • @interviewhappy
      @interviewhappy  10 หลายเดือนก่อน +2

      Always welcome and All the best @AliHaider

  • @360KaishAli
    @360KaishAli 10 หลายเดือนก่อน +2

    one thing i want to tell you please break your videos into chapter like timestamps ... it would be more useful.

  • @OCEMTechZone
    @OCEMTechZone 10 หลายเดือนก่อน +2

    Thanks Sir for such a great content.

    • @interviewhappy
      @interviewhappy  10 หลายเดือนก่อน +1

      You’re welcome 😊

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

    Very well put. Very nice learning video

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

    Also, please make a video on Redux interview question.

  • @Twinkle__Singh
    @Twinkle__Singh 10 หลายเดือนก่อน +1

    Thank you so much😊
    It will helps alot

    • @interviewhappy
      @interviewhappy  10 หลายเดือนก่อน

      Happy to help my friend

  • @dineshyadav9457
    @dineshyadav9457 2 หลายเดือนก่อน +1

    thank you sir :)

  • @rashminavora6268
    @rashminavora6268 10 หลายเดือนก่อน

    Hello 👋 sir
    Very nice very much superb explanation owsom

  • @allaguiamira8866
    @allaguiamira8866 9 หลายเดือนก่อน

    thank you for this great video ,we do really appreciate it

  • @superchannel5860
    @superchannel5860 10 หลายเดือนก่อน +1

    Sir app sa acha koi teach nahi kar sakta.
    Plz ek help or kar doo
    React ma konsa project banao jo interview ka liya best hoo or ma unha github pa host bhi kar sako

    • @interviewhappy
      @interviewhappy  9 หลายเดือนก่อน

      Thanks, if you are a fresher than ecommerce project best rehta hai.. saare features pata rahte hai to humme bas technology mai focus karna hai....
      but experienced ho to, jo last project hai, ussi se kuch related banao, interviewer will be impressed than...

  • @subramanianchenniappan4059
    @subramanianchenniappan4059 10 หลายเดือนก่อน +1

    Thanks . I am a java backend lead with minimal react handson . Useful for interviews😍😍

  • @Komal.1123
    @Komal.1123 2 หลายเดือนก่อน

    Im giving my first interview with this questions best luck me

  • @danialhassan7984
    @danialhassan7984 3 หลายเดือนก่อน +1

    I got my first job because of your interview videos. Thank you so much 😊

    • @interviewhappy
      @interviewhappy  3 หลายเดือนก่อน +1

      Congratulations brother, and may your future be filled with even greater accomplishments!

  • @madukahasantha3904
    @madukahasantha3904 9 หลายเดือนก่อน

    Thank you, It's perfect

  • @tsdonalds1668
    @tsdonalds1668 10 หลายเดือนก่อน

    Damm it's so good love from Bangladesh

  • @adinamei933
    @adinamei933 9 หลายเดือนก่อน +1

    Very informative! Thank you!
    And do u have online courses for react , redux sir?

  • @kiva1806
    @kiva1806 9 หลายเดือนก่อน

    Today I bought the pdf it is very good.❤❤❤

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

    Really thank you for this share!

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

      Glad it was helpful!

  • @pratyashkumarmohanty4820
    @pratyashkumarmohanty4820 10 หลายเดือนก่อน

    Thanks for the new year gift 🎉🎉❤❤

    • @interviewhappy
      @interviewhappy  10 หลายเดือนก่อน

      You are so welcome!

  • @davidmutua6971
    @davidmutua6971 15 วันที่ผ่านมา

    Thanks. Guys crank speed to 2x

  • @charansinghsanjay4069
    @charansinghsanjay4069 8 หลายเดือนก่อน

    could you please make an interview questions video on Typescript as well? your videos are very useful sir. Thank you :)

  • @Paradise_Gamer_12
    @Paradise_Gamer_12 8 หลายเดือนก่อน

    thanks a lot sir , jay shree ram

  • @kuldeepdawar7496
    @kuldeepdawar7496 9 หลายเดือนก่อน

    Great content thanks brother

  • @aninditapanda4859
    @aninditapanda4859 8 หลายเดือนก่อน

    very useful video

  • @srividhyaseshadri114
    @srividhyaseshadri114 10 หลายเดือนก่อน +1

    Hi sir , please upload videos on Azure with .NET Core interview questions

  • @kashinathjadhav007
    @kashinathjadhav007 10 หลายเดือนก่อน

    Thanks you so much.. it helps a lot..

  • @MohitYadavOffical
    @MohitYadavOffical 10 หลายเดือนก่อน

    Great knowledge 👍👍

    • @interviewhappy
      @interviewhappy  10 หลายเดือนก่อน +1

      Thanks for liking

  • @gulabchandgupta5486
    @gulabchandgupta5486 10 หลายเดือนก่อน

    Wow great content ❤thank you 😊

    • @interviewhappy
      @interviewhappy  10 หลายเดือนก่อน

      You’re welcome 😊