No video

Top 12 React Interview Questions 🔥 for Freshers & Experienced | Preparation 2024 🚀

  Рет қаралды 901,961

Akshay Saini

Akshay Saini

Күн бұрын

Пікірлер: 475
@lakshmipravallika5410
@lakshmipravallika5410 8 ай бұрын
Suddenly on a random day I registered for Namaste React course, the best, bestest... thing that I did for building my career. Loved every bit of the course. Right now I am in Ep 10. I liked the way you explained even nitty gritty things. I am addicted to the knowledge that you give in the series. I will surely let you know when I crack an interview. Hoping for the best.
@stelena-forever
@stelena-forever 8 ай бұрын
Sameeee❤❤
@user-yd9dc7xe5r
@user-yd9dc7xe5r 7 ай бұрын
Why there are only 4 videos in this playlist? Where will I get the others.
@Satishbariya004
@Satishbariya004 6 ай бұрын
Mi​@@stelena-forever
@santasahithi4789
@santasahithi4789 6 ай бұрын
I think today's my random day to register
@stelena-forever
@stelena-forever 6 ай бұрын
@@santasahithi4789 Go for it❤️
@harshgupta5880
@harshgupta5880 5 ай бұрын
1) Hooks: useState: Manages state in functional components. useEffect: Handles side effects in functional components. useContext: Accesses the context in functional components. useReducer: Manages complex state logic with a reducer function. useMemo: Memoizes values to optimize performance. useCallback: Memoizes callback functions to prevent unnecessary renders. useRef: Creates a mutable object that persists between renders. 2) Higher Order Components (HOC): What?: Functions that take a component and return an enhanced version. When?: Reuse component logic, share code, or manipulate component behavior. Why?: Promotes code reusability and separation of concerns. How?: Wrap a component with a function that adds or modifies its behavior. 3) Life Cycle Methods of Components: Class Components: Traditional React components using ES6 classes. Mounting: Component is being created and inserted into the DOM. Updating: Component is being re-rendered as a result of changes. Unmounting: Component is being removed from the DOM. 4) State management (all about data): State/Props: Internal state for a component/external data passed to a component. Props drilling: Passing props through multiple layers of components. Context: Provides a way to pass data through the component tree without passing props. 5) Redux or Zustand: How redux works?: Centralized state management using actions and reducers. Why?: For managing complex application states. When?: In large applications with a need for a single source of truth. Redux Toolkit (RTK): Simplifies Redux setup and usage. 6) Custom Hooks: When to use?: Extracting and reusing component logic. Code: Functions prefixed with "use" returning stateful logic. Why?: Enhances code organization, reusability, and readability. 7) Lazy Loading: Code splitting: Breaking down the application into smaller parts. Chunking: Loading only the necessary code chunks. Suspense: Pausing rendering until a component is ready. 8) Virtual DOM: Reconciliation Algorithm: Efficiently updates the UI based on state changes. React Fiber: A reimplementation of React's core algorithm. Renders: The process of updating the virtual DOM. Diff algorithm: Compares the previous and current state to determine changes. How does render work?: Updating the UI based on virtual DOM changes. 9) SSR vs CSR (important): What?: Server-Side Rendering vs. Client-Side Rendering. Difference: Where rendering occurs - server or client. SEO and performance (SSR): Improved search engine optimization and initial load speed. 10) Routing (Role-based access control-RBAC): react-router: Library for handling navigation in React applications. How do you manage protected routes?: Utilize authentication and authorization checks. How do you handle routes?: Define routes and components for navigation. Query params: Additional information passed in the URL. Dynamic routing: Creating routes dynamically based on data. 11) Testing: React Testing Library: Testing library for React applications. Unit Testing: Testing individual units of code. Hack for interview: Emphasize writing testable code and demonstrate test cases. 12) Async Tasks: API Calls: Fetching data from external sources. useEffect in depth: Managing side effects, including async operations. Events: Handling asynchronous events. Promises: A pattern for handling asynchronous operations. setTimeout: Delaying the execution of code. 13) Reusability, Readability, modularity, testability (Coding Practices): 14) Performance: Lazy loading: Loading resources only when needed. Asset optimization: Minifying and compressing JS/CSS code. Writing optimized code: Following best practices for efficient code. Bundler: Tools like Webpack to bundle and optimize code. CDN / Server level: Distributing assets for faster loading. Rendering of components: Optimizing rendering for better performance. 15) Styling: Tailwind, StyleX, Bootstrap, Material UI, Ant UI, CSS / SCSS: Different styling approaches and libraries.
@as_if
@as_if 5 ай бұрын
Nice dude. Wrote the answers yourself
@wincsk
@wincsk 3 ай бұрын
Very useful ❤
@muskandodmani3579
@muskandodmani3579 3 ай бұрын
Kudos to you!!!
@5e4-likitha31
@5e4-likitha31 3 ай бұрын
Thanks bro
@Jadwa2013
@Jadwa2013 2 ай бұрын
ThankYou🥹
@akshaymarch7
@akshaymarch7 8 ай бұрын
It takes a lot of efforts to make these videos, please Hit that LIKE button 👍 and Subscribe to the channel for more awesome content! 🔥Press that bell icon also, if you want notifications for my upcoming videos. 🙌 Love you all.. ❤
@vaibhavkaushik1603
@vaibhavkaushik1603 8 ай бұрын
Please make a video on terminology and things used in real time projects like pagination and everything so we can have an idea of what things are used in a project and learn those things and can implement in our projects
@manoranjanhota5758
@manoranjanhota5758 8 ай бұрын
You r great teacher
@FUNZONE-47
@FUNZONE-47 8 ай бұрын
You just simply awesome ❤ man
@khushmanglani7127
@khushmanglani7127 8 ай бұрын
When will you teach a backend also like front-end ? Btw thank you so much for namaste javascript series.
@shaiksameer2776
@shaiksameer2776 8 ай бұрын
Agree so already hit😊
@funworld8379
@funworld8379 7 ай бұрын
Top React Js interview questions to prepare From The video: 1) Hooks: Prepare this in order - useState - useEffect - useContext - useReducer - useMemo - useCallback - useRef 2) Higher Order Components (HOC): - What? - When? - Why? - How? 3) Life Cycle Methods of Components: - Class Components - Mounting - Updating - Unmounting 4) State management (all about data): - State/Props - Props drilling - Context 5) Redux or Zustand: - How redux works? - Why? - When? - Redux Toolkit (RTK) 6) Custom Hooks: - When to use? - Code - Why? (to make code clean, maintainable, readable, reusable) 7) Lazy Loading (Very imp and highly asked): - Code splitting - Chunking - Suspense 8) Virtual DOM: - Reconciliation Algorithm - React Fiber - Renders - Diff algorithm - How does render work? 9) SSR vs CSR (important) : - What? - Difference - SEO and performance (SSR) 10) Routing (Role-based access control-RBAC) - react-router - How do you manage protected routes? - How do you handle routes? - query params - Dynamic routing 11) Testing - React Testing Library - Unit Testing Hack for interview: Try to mention that the code you wrote is testable and try to write test cases. 12) Async Tasks - API Calls - useEffect in depth - Events - Promises - setTimeout 13) Reusability, Readability, modularity, testability (Coding Practices) 14) Performance - Lazy loading - Asset optimization (how do you optimize js, css code) - Writing optimized code - Bundler - CDN / Server level - Rendering of components 15) Styling - Tailwind - StyleX - Bootstrap - Material UI - Ant UI - CSS / SCSS 16) Accessibility 17) Security
@pallavimahanta519
@pallavimahanta519 7 ай бұрын
thanks a lot
@triggeredarmy3284
@triggeredarmy3284 6 ай бұрын
😮
@Nitu-zs7vq
@Nitu-zs7vq 6 ай бұрын
Thanks a lot 👍
@kumarvivekpandeyrock4488
@kumarvivekpandeyrock4488 6 ай бұрын
tum bahut achha kaam krta hai makshud bhai
@pixiemusings
@pixiemusings 6 ай бұрын
Thank you
@emotionaldamage4676
@emotionaldamage4676 8 ай бұрын
Who want Namaste Backend 👇
@swamibhakti98
@swamibhakti98 7 ай бұрын
I want
@yashaswisahu8486
@yashaswisahu8486 7 ай бұрын
Yes
@harikumarv5009
@harikumarv5009 6 ай бұрын
Yes
@Gauravrocks-fh3dx
@Gauravrocks-fh3dx 6 ай бұрын
Yes
@rajkumarv4402
@rajkumarv4402 4 ай бұрын
​@@swamibhakti98 G
@rajnishsingh9020
@rajnishsingh9020 8 ай бұрын
I have been watching your channel for the past 2 years, I wanted to say thank you for all your effort, you have made me a better developer.
@victorpeace979
@victorpeace979 6 ай бұрын
00:01 Covering important topics in React for interviews. 02:19 Prepare the 7 important hooks and understand higher order components thoroughly for React interviews and daily coding. 06:38 Understanding React life cycle methods and State Management concepts is crucial for interviews. 08:56 Understand Redux and Zustand for state management in React. 13:40 Understand the importance of Redux lazy loading and Virtual DOM 16:01 React concepts like virtual DOM, diffing algorithm, and SSR vs CSR are important for interviews 20:18 Understand role-based access control and routing in React 22:20 Handling protected and unprotected routes during interviews. 26:14 Understanding unit testing and asynchronous tasks is crucial for React interviews. 28:13 Understanding and implementing crucial concepts in React 32:13 Importance of code readability, modularity, reusability, and testability in interviews. 34:07 Industry standard coding practices in React 38:06 Optimizing code for performance is crucial for a smooth user experience and system design interviews. 40:02 Encouraging viewers to like, subscribe and engage with the channel for motivation and appreciation 43:58 Styling is crucial for UI applications in 2024 46:01 Emphasize accessibility, testability, performance, and security in interviews. 49:50 Covered topics in detail with special discount for Namaste React course
@adarshdwivedi5395
@adarshdwivedi5395 7 ай бұрын
I am angular devloper..after watching ur nasmte react course. Fall in love with react. Itna to ladhki se pyar nhi huva jitna react and js se hone lga..😂😂
@ammarsharif609
@ammarsharif609 7 ай бұрын
I loved this video. I had seen your playlist 'Namaste JavaScript' months before, but this particular video made me obsessed. In the middle of the video, it compelled me to like it, and finally, when it came to an end, I subscribed. 😅 Hats off to your simple English; it didn't even make me realize that I was watching a video in English. Special love for your accent and choice of simple words to explain.
@iranna9065
@iranna9065 8 ай бұрын
One of the finest videos I have seen in youtube on frontend. It was much needed at this point of time. Grateful to Akshay 🙌🙏
@Littletraveller369
@Littletraveller369 7 ай бұрын
I found this video to be very informative. The amount of information you share in every frame made it impossible for me to skip any seconds or minutes. Thanks a lot!
@thetechguy3993
@thetechguy3993 8 ай бұрын
I have bought Namaste React and it's exactly what he says !
@prasadpatil1901
@prasadpatil1901 Күн бұрын
This video doesn't just feel like something I'm watching-it feels like I'm sitting right in front of someone, having a heartfelt conversation. I initially came here to make questions to conduct interviews for my own company, but I ended up discovering so much fascinating information along the way.
@vikasyadav-ve1qo
@vikasyadav-ve1qo 7 ай бұрын
HI Akshay, I'm so sorry I forgot to like and comment on your video earlier! Thanks for the reminder. We all do that sometimes, but you're right - it's important to show appreciation for the knowledge we gain. Your videos are always so informative, and I often get caught up in learning from them that I forget to leave a like and comment. But you're right, it's like a guru dakshina - a way of giving back for the knowledge we receive. And without it, that knowledge can fade away when we actually need it, just like with Karan. So, thanks again for the reminder. I'll definitely be more mindful of liking and commenting from now on. Your videos are awesome, and I really appreciate what you do!
@afaqueahmed1831
@afaqueahmed1831 7 ай бұрын
I am reaching out to you from Pakistan. I recently came across your video on top React interview questions. While there are numerous videos available on KZfaq, what distinguishes yours is the emphasis you place on understanding concepts in-depth rather than simply copying and pasting code. I resonate with your perspective that to become a proficient programmer, one must comprehend how things work at a fundamental level. This insight is invaluable, and I believe it is instrumental in tackling any programming task with confidence. Thank you for your insightful content.
@hkhkkkhhhrhrrrhh8770
@hkhkkkhhhrhrrrhh8770 8 ай бұрын
Please sir make one video for the answers of all topic you mentioned. Video can be 3-4 hours long no problem 😊
@Gavi_07
@Gavi_07 8 ай бұрын
His energy is something I always look for whenever he speaks. I don't know how you do it but I appreciate your work and dedication towards teaching. Hope one day I meet you in person ❤. Thank you again for making people fall In love with knowledge ❤.
@chandansingh-sb3il
@chandansingh-sb3il 8 ай бұрын
Dear Akshay, After watching your all videos and doing practice I got 500% Hike in 1 Year. Thank you
@debajitchakraborty2711
@debajitchakraborty2711 8 ай бұрын
Kindly cover Javascript DOM, Array methods and API part in your namaste Javascript course.
@ravikantsbiradarravikantsb5807
@ravikantsbiradarravikantsb5807 8 ай бұрын
Yahoo baba
@dilipbaghel9535
@dilipbaghel9535 8 ай бұрын
such an amazing video Akshay, I bought your Namaste React course by borrowing money from a friend and now I must say that this is the best investment of my life, thank you for making that course
@akshaymarch7
@akshaymarch7 8 ай бұрын
Now make the full use of it, learn a lot and then when you get a good job, do repay the money back to your friend. Wish you the best in your career ahead, keep rising! 🚀
@priyanbabariya3472
@priyanbabariya3472 Ай бұрын
Good job yaar!! This is really a Knowable video
@user-oi2tl9yt9c
@user-oi2tl9yt9c 8 ай бұрын
As you told , Please Bring Namaste Backend and Namaste DSA as soon as possible and complete it by end of 2024 .
@sanatanShishya1521
@sanatanShishya1521 8 ай бұрын
Sir, we need logical problem solving coding practise series, so that we can learn approach to solve live coding round and can do better in real project also.
@snehalsatpute4588
@snehalsatpute4588 3 ай бұрын
Thank you🙏 Akshay for all the efforts. I really fall in love with JavaScript & React!
@manojrathore8727
@manojrathore8727 8 ай бұрын
Why should I say your video is good while your all videos are more than amazing, my lots of concepts has been cleared, thanks a lot Akshay and all lucky guys are watching your videos without wasting their time somewhere else. 😊
@satyamg650
@satyamg650 8 ай бұрын
I am preparing for interviews and your videos helping me a lot. Thank you a lot for making amazing content.
@KaustavOP
@KaustavOP 7 ай бұрын
Akshay should be brand ambassador of React
@ananttomer4
@ananttomer4 8 ай бұрын
I know an honest man when I see one. And akshay is true to his craft. Thanks for these priceless videos. I dont understand why people punch down on teachers when they offer a paid course. I believe his React course is one of the best out there. His ability to simplify complex concepts is commendable. He really took the intimidation away from React/JS and made it enjoyable. I have bought his react course and I'd buy his upcoming JS DSA course as well. Infact I am looking forward to it like its a web series. Thanks Guruji.
@akshaymarch7
@akshaymarch7 8 ай бұрын
♥️
@syeamulislamsiam957
@syeamulislamsiam957 6 ай бұрын
​@@akshaymarch7 first take love from my heart . You're a great inspiration for me. I want to ask some advice from you. I'm honours dropout(2y). Please don't take it negatively. I want to restart my education. Currently I'm learning MERN stack. Can you please provide me some guidelines for my job + education success? Please !
@stelena-forever
@stelena-forever 8 ай бұрын
I have already liked the video even without watching it.Because I know it is going to be beyond my expectations and very helpful. Will watch it tomorrow morning.😊
@nisharohilla5918
@nisharohilla5918 8 ай бұрын
Thank you for all the efforts you make to make us all fall in love with JavaScript & React!
@Aviralsingh-yw7xx
@Aviralsingh-yw7xx 8 ай бұрын
Sir Please More videos like these. IT would be really helpful
@sasikalajayaprakash
@sasikalajayaprakash 3 ай бұрын
Hi Akshay, I am Angular + NodeJS developer with 2 yrs of experience but still facing some issues to work on that because of less confident. I need full couching videos for Angular like React and Javascript. It will be helpful for me. Please do the videos for Angular as well.
@tarandeep5867
@tarandeep5867 8 ай бұрын
Gem videos 💎, also create Javascript interview video as well, waiting for that❤
@shashikanth033
@shashikanth033 8 ай бұрын
After watching your videos i got more confidence while attending interviews. each single video is worth watching.
@user-yp6be7yd1w
@user-yp6be7yd1w 3 ай бұрын
I've been tuning into your channel for the last couple of years, and I just wanted to express my gratitude for all the hard work you've put in. Thanks to your content, I've grown significantly as a developer.
@amanpratapsingh1981
@amanpratapsingh1981 8 ай бұрын
Hello Akshay, I've been following your channel for a while now, and I must say your content is top-notch! Your videos have been incredibly helpful in enhancing my skills as a frontend developer. Your clear explanations and engaging delivery make learning a breeze, which irresistibly led me to invest in your Namaste React course. I was wondering if you could consider creating a detailed course focusing on the performance and security aspects of web applications from a frontend developer's perspective. Given your expertise, I believe your insights would be invaluable in helping us understand and implement best practices in these crucial areas. I'm sure a dedicated course on these topic would be a game-changer for many aspiring developers, including myself.
@lkn1107
@lkn1107 5 ай бұрын
The Guy loves what he does. Not the knowledge in the video says it but … it’s the excitement says it all.
@thetoxicguy4783
@thetoxicguy4783 8 ай бұрын
Thank you Akshay for this beautiful info.
@vikashire5292
@vikashire5292 7 ай бұрын
Hey Akshay, I appreciate it. I've been following your videos for the past two years and have found them incredibly helpful in simplifying complex concepts. keep it up.
@jishnunp5412
@jishnunp5412 8 ай бұрын
I was waiting for this video you uploaded this video on correct time🔥 Thanks Akshay ❤️
@gautamsingh104
@gautamsingh104 8 ай бұрын
We can not expect TEST CASE by Fresher because a fresher having multiple things to care . If any one know well so absolutely Great.
@abduljawwadmohammed865
@abduljawwadmohammed865 7 ай бұрын
Brilliant video about very important concepts. Thanks a lot!!
@howtodothat2043
@howtodothat2043 5 ай бұрын
Too Good.☀☀☀☀☀
@vedant.k
@vedant.k 10 күн бұрын
kalakar taliyo ka bhuka hota hai ♥♥♥, thanks akshay bhaiyaa/sir
@deepanshugarg9712
@deepanshugarg9712 8 ай бұрын
You are awesome sir, i love the way you teach❤, i watched all your Namaste JavaScript videos and its really help me a lot to clear all my doubts in Java Script... Thanks sir
@meghkhush_creation
@meghkhush_creation 8 ай бұрын
Your videos are awesome . I am always excited for your new videos. I have watched this video in hospital, like always ready to learn from you. Your enthusiasm for teaching make me clear my concepts more in deep. After watching this video I discovered that I don't know 40% of things in react 😅😅. I will definitely going to brush up on all those topics, all thanks to you 😃
@akshaymarch7
@akshaymarch7 8 ай бұрын
Wish you a speedy recovery, keep learning!
@germantoenglish898
@germantoenglish898 8 ай бұрын
Is 'styled-components' still a relevant way of styling?
@alim.karim.
@alim.karim. 8 ай бұрын
Hey Akshay Saini, Nice video, thanks. The namste React is mentioned too much. Which is bad. How did you record this session using tablet, will you please share the process of recording such video?
@nareshyella9118
@nareshyella9118 Ай бұрын
This guy is great, the way the he explained is very understandable ,remember easily , mostly practically useful
@abhigyansinha6598
@abhigyansinha6598 4 ай бұрын
the best thing about watching you that I get to what real passion looks like
@madhurgarg4467
@madhurgarg4467 3 ай бұрын
akshay sir your way of doing the any work is most simplest and magical at a same time and its is very appreciatable
@larzchannel5975
@larzchannel5975 6 ай бұрын
What I like about this video is that it is a good review of many areas I may not have used in a while and it is very audio specific in that I can listen when I am driving or walking so I don’t have to watch everything to get a feel for what is being discussed
@rishavtyagi7927
@rishavtyagi7927 8 ай бұрын
Sharing such a valuable point for React JS. ❤
@vamshikrishna1103
@vamshikrishna1103 8 ай бұрын
Akshay you are the one of the best tech KZfaqr. Love your content
@sujalgupta6100
@sujalgupta6100 5 ай бұрын
Thanks a lot for all the JS videos Akshay. I am preety sure that most of the people tried to understand the topics you taught in the JS course but couldn't understand because we keep changing sources for a good explanation. I am sure people have watched countless videos of these topics. Having the same person explaining all the topics feel good as we don't feel we have missed anything in knowledge and feel like we are in sync with the teacher,
@pratikshasingh3589
@pratikshasingh3589 8 ай бұрын
worth it to watch this video even a one single minute
@swagcoder
@swagcoder 8 ай бұрын
Excellent as always !!❤
@swapycodes2788
@swapycodes2788 8 ай бұрын
You are doing really good job brother, we love you for this. Thank you so much.
@ravichandandasoju6371
@ravichandandasoju6371 8 ай бұрын
worth watching 🤝thank you so much
@soni.himansh
@soni.himansh 8 ай бұрын
Much needed video , amazing video thanks sir ❤
@ANANDKUMAR-in3pc
@ANANDKUMAR-in3pc 3 ай бұрын
With the help of your video and your KZfaq channel, I cracked the interview.
@akshaymarch7
@akshaymarch7 3 ай бұрын
Congratulations, wish you the best! 🎉🚀
@qR7pK9sJ2t
@qR7pK9sJ2t 7 ай бұрын
This video is magical !!!
@atulkrsngh
@atulkrsngh 8 ай бұрын
Akshay, I don't know how to say thank you. Earlier, I was working as a c++ developer. Now I have completely moved to web development, am working as a full stack web developer and a single reason behind this is you, your way of teaching. Thank you so so much.
@naziayaqoob8295
@naziayaqoob8295 3 ай бұрын
what a guy you are simply fall in love with your way of teaching
@codetheworld6721
@codetheworld6721 7 ай бұрын
Your The Best Teacher for React and JavaScript. Thankyou
@Shubh_0211
@Shubh_0211 6 ай бұрын
loved your Teaching style and knowledge❤❤ . Got the confidence that once i read this topics I can crack any Beginner level interview in impressive way.💯💯💯
@user-xu2bo2jp5u
@user-xu2bo2jp5u 5 ай бұрын
Hello Akshay, the way you teach the courses are super good and everyone can feel your energy and learn a lot and am one in that people. Thanks a lot for your all free courses which is very useful.
@DEEPAK4861
@DEEPAK4861 8 ай бұрын
This is knowledge heavy interview questions react ++ akshay 🔥🔥🔛🔥
@samirmishra9946
@samirmishra9946 8 ай бұрын
Akshay do u know why React has been on 18.2 for over a year and what will be the next version? (major? minor?) Like what the development team is upto rn.
@shashikanth033
@shashikanth033 8 ай бұрын
Please make one video for Generators and Iterators with practical example. that would helpful more. Thanks in advance😊
@codingloading
@codingloading 8 ай бұрын
That's great today class for the interview (aag lga di Bhai ne )❤
@MuhammadAhmarKhan-l5z
@MuhammadAhmarKhan-l5z 2 ай бұрын
Very good that indeed...not only for the interviews but one can master oneself by digging more in each question / term.
@ngayathri1818
@ngayathri1818 8 ай бұрын
Hi Akshay, I have seen your videos for last few weeks only. But after your videos, I fall in love with React. Not only in React but also fall in love to learn the core concepts and how it works behind the scene and all. For all your efforts, THANK YOU is not enough. 😍
@sravanireddy5673
@sravanireddy5673 3 ай бұрын
hi gayathri
@sravanireddy5673
@sravanireddy5673 3 ай бұрын
ism getting doubt can you explain me in react
@webcoder293
@webcoder293 8 ай бұрын
Is the namaste react course for freshers only or for 2yrs experienced also?
@neeve-gg7kz
@neeve-gg7kz 5 ай бұрын
Thank you so much♥. I wanted change my career from angular to react. with this one video i got to know everything i should learn in React.
@devendrakushwaha6745
@devendrakushwaha6745 8 ай бұрын
Thanks brother for making these kind of videos for us.🤟 awesome
@user-ob5wy6xs6i
@user-ob5wy6xs6i 8 ай бұрын
Sir I Really wanted to learn this course but I do not have money... I could not afford, I am going through very difficult time... I learned basic js and basic react on your youtube channel... Thank you sir
@user-el9ui5jk5m
@user-el9ui5jk5m 5 ай бұрын
To sum up: 1. Hooks useState useEffect ( significance of dependency array eg. what happens when its empty, when it has some value, when its not there) useContext useReducer useMemo useCallback useRef 2. Higher order compoents what is it? when to use it? why we use it? how we use it? (prepare an example) 3. Life cycle Methods of the compoenets the three phases and all its methods, the order in which it is called etc. 4.State management all about state and prop prop drilling (with example and significance of useContext here) 5. Redux and zustand how redux works? why do we need redux? when do we need redux? (should be able to justify the reason you used redux) Redux Toolkit 6.Custom Hooks when to use it? code it with an example (makes our code clean, reusauble and maintainable) 7. lazy loading can also be asked as chunking, code splliting, chunking (Makes our application performant) 8. Virtual DOM Learn these concepts to get a deep understanding diffing algorithm react- fiber reconcilation algorithm How react renders a component? how react re-renders the component? 9. Client Side rendering and Server Side Rendering (HOT Topic 😛) what is it? Difference between the two Learn about the SEO and performance 10. React Router How do we manage protected routes? Role based access control? how do we handle routes? query params and how we handle it? Dynamic Routing? 11. Testing (unit testing) what u use to write React tests? 12. Async Task make API calls? what will happen when u scroll, click (understand useeEfect and how it works behind the scene) Promises (must know) use keywords like re-usable, modular, testable, maintainable. 13. Focus on the Performance (improve user expereince asset optimization, lazy loading, shimmer UI, optimazation at bundler level, CDN level, server level) 14. Styling (pros and cons of using Tailwind over bootstrap vice versa and so on....) 15. Accessebility , security, performace, testability (these are the pillars of any application)
@ZohaibMughal434
@ZohaibMughal434 Ай бұрын
Amazing. No one match of you on the internet. I want to be like you. ❤❤❤
@codingcinemax
@codingcinemax Ай бұрын
Topics: Hooks, Higher Order Components, Class Components, Lifecycle Methods, State & Props Context API Redux - RTK || Zustand Custom Hooks Lazy Loading / Code Chunking / Code Spliting Virtual Dom vs Real Dom Reconciliation, React Fiber Diff Algorithm SSR & CSR Routing (React Router) Role Based Access Control Protected Routes Testing - React Testing Library Asynchronous Tasks - API Calls Callback, Callback Hells, Promises Performance HLD, Frontend System Design Styling - CSS, Styled Components, CSS Modules, Tailwind CSS, React Bootstrap
@vaibhavsachdeva.2001
@vaibhavsachdeva.2001 8 ай бұрын
Tomorrow I have my interview for MERN stack and this video definitely helped me prepare for react questions. Thanks a lot Akshay!
@MohitKumar-kr8wk
@MohitKumar-kr8wk 8 ай бұрын
Sir plz, If possible then plz launch any course on data structucre. I can't explain sir you are like god for me; for the first time I am addicted to learning.
@user-wl9kh1nc2t
@user-wl9kh1nc2t 7 ай бұрын
Purchased the course. This youtube content is awesome and impressed to purchase immediately at 2.15AM🎉
@soumyaswaroopsootar
@soumyaswaroopsootar 15 күн бұрын
Amazing my interview is tomorrow and this is helpful.
@Elanorejoseph
@Elanorejoseph 8 ай бұрын
Best 50 min spend ,thank you
@OnlineSchoolAbir
@OnlineSchoolAbir 7 ай бұрын
The name of the Testing you have forgotten is "Regression Testing". Loved your videos so much. Thanks a lot
@UdbhavSrivastava
@UdbhavSrivastava 3 ай бұрын
Thanks, Akshay. It was very helpful to quickly brush up on important concepts before the interview
@Arindam0123
@Arindam0123 8 ай бұрын
I started to save money for your Namaste React course. Your teaching satisfied a real coder.
@ebrahimafridi689
@ebrahimafridi689 8 ай бұрын
Keep making more such videos they help a lot Thank you.
@Rajeevkumar-sx3er
@Rajeevkumar-sx3er 7 ай бұрын
ye lo akshay bhai aap ke lie 👏👏👏👏👏👏, bhut achi videos hoti h appki , i have seen all of them even the react course also, really it's way too amazing, no one can beat your level to explain things, really appriciated.👏👏👏👏❤❤❤
@vaibhavjadhav2398
@vaibhavjadhav2398 6 ай бұрын
as you say shamer ui Developers in Loading Time use only Skeleton Loading not use loading Icon or progress Bar
@maheshchaudhari1930
@maheshchaudhari1930 5 ай бұрын
Great content Akshay. Thank you so much for sharing your valuable knowledge.
@ameyakulkarni5494
@ameyakulkarni5494 Ай бұрын
This video is awesome in a very simple way you explained the React.js interview questions which are ask by interviewers. Very helpful for preparation of the interviews. Thanks.
@rakeshroshan798
@rakeshroshan798 17 күн бұрын
Useful for ReactJS candidates preparing for interviews.
@user-gx9kc4rs6b
@user-gx9kc4rs6b 7 ай бұрын
Hi Akshay Really Nice video and appreciate your work. You have not left anything regarding React-interview. Very Helpful Please Make video on important interview questions about JS also. Thanks a Lot.
@abhishekgoudgangannagari2454
@abhishekgoudgangannagari2454 2 ай бұрын
Awesome content bhai ♥ very informative. Keep rocking🤟
@sagargiri6582
@sagargiri6582 8 ай бұрын
loved the content keep up the good work
@bizzle6283
@bizzle6283 8 ай бұрын
Wow man this video opened my eyes.. Can you also make the same for Node.js too?
@sekdinesh6542
@sekdinesh6542 7 ай бұрын
Hi Akshay, 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!!! 🙏🙏🙏
@arushraj3807
@arushraj3807 8 ай бұрын
I have already taken the course but why there is no updated videos? Do I need to purchase again?
[ Live ] React JS Interview 🤯 | Frontend UI Questions 🤒
1:12:35
Akshay Saini
Рет қаралды 336 М.
My Cheetos🍕PIZZA #cooking #shorts
00:43
BANKII
Рет қаралды 27 МЛН
How I Did The SELF BENDING Spoon 😱🥄 #shorts
00:19
Wian
Рет қаралды 36 МЛН
React Junior Developer Interview (Questions & Challenge)
1:06:19
Cosden Solutions
Рет қаралды 124 М.
Learn To Code Like a GENIUS and Not Waste Time
9:41
The Coding Sloth
Рет қаралды 1,5 МЛН
3 Years Experienced JavaScript Interview
1:23:45
Anurag Singh ProCodrr
Рет қаралды 158 М.
Coding Interviews Be Like
5:31
Nicholas T.
Рет қаралды 6 МЛН