Telegram group - t.me/Reactjs_Interview Please don't judge and comments on my answers. this is just the interview experience and If you know the right answers please comment below which can also help others. Instagram - instagram.com/dev.roshan_ twitter - twitter.com/dev_roshann
- [00:00](ua-cam.com/video/RapcagVtB-0/v-deo.html) 📝 Coding Logic and Approach - Understanding the order of execution of asynchronous JavaScript code. - Implementing recursion to traverse and extract data from nested objects. - [04:11](ua-cam.com/video/RapcagVtB-0/v-deo.html) 🧠 ReactJS Lifecycle Methods - Explaining the three phases of ReactJS lifecycle: mounting, updating, and unmounting. - Converting class-based components to functional components using useEffect for lifecycle methods. - [07:12](ua-cam.com/video/RapcagVtB-0/v-deo.html) 🖥️ Managing State in React - Using the useState hook to manage state in functional components. - Describing how to manage state across multiple components using props drilling and Redux. - [10:08](ua-cam.com/video/RapcagVtB-0/v-deo.html) 📦 State Management with Redux - Contrasting Redux and Context API for state management in React. - Explaining the concepts of actions, reducers, and dispatch in Redux. - [13:12](ua-cam.com/video/RapcagVtB-0/v-deo.html) 🔄 Middleware in Redux - Defining middleware in Redux and its purpose in intercepting actions. - Mentioning Redux Saga and Redux Thunk as examples of middleware. - [15:22](ua-cam.com/video/RapcagVtB-0/v-deo.html) 🔤 Advantages of TypeScript in React - Discussing the benefits of TypeScript for error reduction and type safety in React development. - Providing an example of using TypeScript interfaces for component parameters. - [17:16](ua-cam.com/video/RapcagVtB-0/v-deo.html) 🌐 Server-Side Rendering with Next.js - Sharing experiences with Next.js for server-side rendering and API handling. - Highlighting advantages like simplified routing and built-in SSR support. - [18:19](ua-cam.com/video/RapcagVtB-0/v-deo.html) 🎨 Styling React Components - Mentioning usage of CSS files, styled-components, Sass, Bootstrap, and Material UI for styling. - Explaining the role of the makeStyles function in Material UI. - [19:36](ua-cam.com/video/RapcagVtB-0/v-deo.html) ✔️ Unit Testing Strategy - Describing the use of Jest and Enzyme for unit testing React components. - Sharing a preference for testing all components and utilizing snapshots. - [20:48](ua-cam.com/video/RapcagVtB-0/v-deo.html) 🌍 Multi-Language Support in React - Discussing globalizing components using libraries for multi-language support. - Admitting lack of familiarity but mentioning previous usage in a project. - [21:30](ua-cam.com/video/RapcagVtB-0/v-deo.html) 🛠️ Interaction with CMS (WordPress) - Sharing experience developing a React plugin for WordPress. - Expressing the need to review documentation for data interaction. - [32:49](ua-cam.com/video/RapcagVtB-0/v-deo.html) 🔄 Project Management and Version Control - Describing the use of GitLab for task assignment, branch creation, and merge requests. - Adhering to agile methodologies for project management. - [33:05](ua-cam.com/video/RapcagVtB-0/v-deo.html) 💼 Future Opportunities and Learning - Inquiring about potential project assignments and technology stacks. - Asking about the possibility of working on both front-end and back-end tasks.
The question standard is decent. It’s not only about easy questions, interviewers check your depth of knowledge, they may expect you to explain in depth about JavaScript stack, and async non blocking operations how it works, etc.
for question 1:34 it will print 1 because setTimeout function goes into callback and takes 1 second to be executed in that mean time x will be declared in function function x() stack frame and it will be accessible for callback function of setTimeout
It is not related to seconds even if you put seconds as 0 still it will first initialise the variable and then console.log that variable, because the setTimeOut comes under macro task which has lesser priority over macro task means task other than setTimeout functions.
- What is lifecycle method in react ? - How will you convert class based to function based component in react? - How do you manage state in component? - Redux middleware ? => Saga and Thunk - Why do we need middleware in redux implementation? => to capture error log etc. - Why do we need typescript instead of javascript? => - Explain use case with typescript? - Do you know server side rendering in react? - How to style a component in react? => used .css and .style component directly - Have you used any library in react? which one please explain? - In materialUI what does makeStyle function do? - Can we use multiple className in same object for materialUI? Ex. in gridUI can we use? - What is your testing strategy? => we use unit testing (JEST) - I am creating a application and it should support two language - English & Hindi - so you are developing there application in react - so what will be your approach? - Have you worked in CMS (Connect Management System)? => Wordpress - CODE - Team Member size - How do you manage project any tool you use? => gitlab - Are you following any agile method in project - Do you have any experience in Devops?
2nd question answer will be 1 because after the callback function of the setTimeout come inside the callstack the i nis already declared and initialized so it will print 1
wow...those were actually an easy questions. I am a MERN developer with two years of gap after graduation and yes, 0 working experience or company exposure 😂. I thought company like infosys have tough interviews. Thank you, I think i gained a litttle confidence. Thanks for sharing...
Truly.. this interview was like asking a newbie.. I thought thier interviews are very hard . Btw I can also point out that a lot of time people do not know how to explain properly.. but these questions are like normal chatting then an interview 😜 we can have debates how hours on these...
@@crystalclear178 If you apply as fresher then it will difficult to get call for interview. if you show fake experience then interview gets more difficult.
The problem with async await was that you didn't put await before res.json() but kudos to you that you remained calm and changed it to .then() chaining and got it done!
Hi bro!, At 2:00 it will print the value of i since set time out is an asynchronous function it will go to the callback queue but In the meantime i variable will be defined
Difference between framework and library? Answer: who calls who!? if we call the external code, then it is library. If our code is called by another code then it is framework. It is the concept of Inversion of control!
You have to add custom middleware like Redux thunk or saga to do things like fetching data from API. And then you will be able to return a async function from the action which will return a pure JSON object once the API response is received. The interviewer was trying hard to bring you to that point.
@@rootnode6571 I want to dispatch an action, And I expect that Action to make an API call , fetch data and update the Redux store. Can you link some article that shows how can useEffect or any other custom hook be used here?
I think the interviewers intension was to demonstrate a scenario where you have a nested object upto nth level here value of n is unknown or variable. And we want to react the leaf or the last level of object to extract the data, that's why recursion is the most suitable solution here.
Hey @Dev. Roshan ! Its amazing!! This is for experienced level, can you give pointers to level of difficulty for react.js questions, if it was for a current final year student with reference to this interview. Your guidance would help me a lot. Thanks!
mostly when you apply for front-end/back-end/full stack roles, the primary questions are based on the tech stack (JS and react in this case), DSA is usually optional upto the interviewer
Somebody help me in this problem Please write solution in javascript Write a function called do_allocation(number_of_people, number_of_buses) The function should return a list of number of people who can get into the next bus that comes in based on the following logic: Each bus’s capacity is the sum of the capacities of the previous two buses. Once all the people get in, then the buses can continue, but will have 0 people inside it. This is the case when the number of people are less and there are more buses. So after all the people are already boarded, then the remaining buses will have 0 people boarding. The output of the function is an array/list with the same length as number_of_buses. The total of this output array/list should be less than or equal to the number_of_people. The first bus’ capacity can be set to 1 by default. E.g. Def do_allocation(number_of_people, number_of_buses): …. Your code…. Return array[number of people got into first bus, number of people got into second bus, …. , number of people who got into last bus]
I'll suggest not to consider my answers do your own research, It's just an Interview experience. BTW I was not running the code, just wanted to explain.
I was also selected, but the offer letter has not come yet, I had a tech round,tech manager round ,after that they mailed me the documentation,i submited documentation but still waiting for offer letter , i gave interview on 9 Apr
@@rohitsakhare2247 for my case I've given my first technical round on 19th march On 20th March I've got a mail to upload documents On 25th March I've given managerial round On 28th March I've HR called me for salary negotiation, and they told me to wait 2 weeks On 8th April I've got my offer.
function myFunction(){ var oa2=2; setTimeout(function(){ console.log(oa); console.log(oa2); },1000) var oa=1; } myFunction() it will not print undefined and 2 instead it will print 1 and 2
Why you use middlware ? We use it for asynchronus operation. Redux thunk usecase? redux thunk is a midleware, as i mentioned middleware is use for async operation. insted of returning a action ,it will return a function. this function is a pure function. How many years of experiance you have ? Please go through the basics of everything. it seems like you have prepared randomly with some video tutorial. not clear about anything. while you use async await you should not use .then and .catch. you should use try catch .once you mark a function async this function will return a promice so no need to use .then
did you get the job? i go for an interview in may little nervous. Also the first question I is still gonna be one because its initialized in the outer function, if it was initialized in the inner function x wouldn't know what it is
@@malikshahid886 Not sure about the Fresher but you can take help of Payroll companies or it would be better to connect on LinkedIn & ask for reference who's working there.
Telegram group - t.me/Reactjs_Interview
Please don't judge and comments on my answers.
this is just the interview experience and If you know the right answers please comment below which can also help others.
Instagram - instagram.com/dev.roshan_
twitter - twitter.com/dev_roshann
- [00:00](ua-cam.com/video/RapcagVtB-0/v-deo.html) 📝 Coding Logic and Approach
- Understanding the order of execution of asynchronous JavaScript code.
- Implementing recursion to traverse and extract data from nested objects.
- [04:11](ua-cam.com/video/RapcagVtB-0/v-deo.html) 🧠 ReactJS Lifecycle Methods
- Explaining the three phases of ReactJS lifecycle: mounting, updating, and unmounting.
- Converting class-based components to functional components using useEffect for lifecycle methods.
- [07:12](ua-cam.com/video/RapcagVtB-0/v-deo.html) 🖥️ Managing State in React
- Using the useState hook to manage state in functional components.
- Describing how to manage state across multiple components using props drilling and Redux.
- [10:08](ua-cam.com/video/RapcagVtB-0/v-deo.html) 📦 State Management with Redux
- Contrasting Redux and Context API for state management in React.
- Explaining the concepts of actions, reducers, and dispatch in Redux.
- [13:12](ua-cam.com/video/RapcagVtB-0/v-deo.html) 🔄 Middleware in Redux
- Defining middleware in Redux and its purpose in intercepting actions.
- Mentioning Redux Saga and Redux Thunk as examples of middleware.
- [15:22](ua-cam.com/video/RapcagVtB-0/v-deo.html) 🔤 Advantages of TypeScript in React
- Discussing the benefits of TypeScript for error reduction and type safety in React development.
- Providing an example of using TypeScript interfaces for component parameters.
- [17:16](ua-cam.com/video/RapcagVtB-0/v-deo.html) 🌐 Server-Side Rendering with Next.js
- Sharing experiences with Next.js for server-side rendering and API handling.
- Highlighting advantages like simplified routing and built-in SSR support.
- [18:19](ua-cam.com/video/RapcagVtB-0/v-deo.html) 🎨 Styling React Components
- Mentioning usage of CSS files, styled-components, Sass, Bootstrap, and Material UI for styling.
- Explaining the role of the makeStyles function in Material UI.
- [19:36](ua-cam.com/video/RapcagVtB-0/v-deo.html) ✔️ Unit Testing Strategy
- Describing the use of Jest and Enzyme for unit testing React components.
- Sharing a preference for testing all components and utilizing snapshots.
- [20:48](ua-cam.com/video/RapcagVtB-0/v-deo.html) 🌍 Multi-Language Support in React
- Discussing globalizing components using libraries for multi-language support.
- Admitting lack of familiarity but mentioning previous usage in a project.
- [21:30](ua-cam.com/video/RapcagVtB-0/v-deo.html) 🛠️ Interaction with CMS (WordPress)
- Sharing experience developing a React plugin for WordPress.
- Expressing the need to review documentation for data interaction.
- [32:49](ua-cam.com/video/RapcagVtB-0/v-deo.html) 🔄 Project Management and Version Control
- Describing the use of GitLab for task assignment, branch creation, and merge requests.
- Adhering to agile methodologies for project management.
- [33:05](ua-cam.com/video/RapcagVtB-0/v-deo.html) 💼 Future Opportunities and Learning
- Inquiring about potential project assignments and technology stacks.
- Asking about the possibility of working on both front-end and back-end tasks.
The question standard is decent. It’s not only about easy questions, interviewers check your depth of knowledge, they may expect you to explain in depth about JavaScript stack, and async non blocking operations how it works, etc.
for question 1:34 it will print 1 because setTimeout function goes into callback and takes 1 second to be executed in that mean time x will be declared in function function x() stack frame and it will be accessible for callback function of setTimeout
It will possible because of hosting
It is not related to seconds even if you put seconds as 0 still it will first initialise the variable and then console.log that variable, because the setTimeOut comes under macro task which has lesser priority over macro task means task other than setTimeout functions.
- What is lifecycle method in react ?
- How will you convert class based to function based component in react?
- How do you manage state in component?
- Redux middleware ? => Saga and Thunk
- Why do we need middleware in redux implementation? => to capture error log etc.
- Why do we need typescript instead of javascript? =>
- Explain use case with typescript?
- Do you know server side rendering in react?
- How to style a component in react? => used .css and .style component directly
- Have you used any library in react? which one please explain?
- In materialUI what does makeStyle function do?
- Can we use multiple className in same object for materialUI? Ex. in gridUI can we use?
- What is your testing strategy? => we use unit testing (JEST)
- I am creating a application and it should support two language - English & Hindi - so you are developing there application in react - so what will be your approach?
- Have you worked in CMS (Connect Management System)? => Wordpress
- CODE
- Team Member size
- How do you manage project any tool you use? => gitlab
- Are you following any agile method in project
- Do you have any experience in Devops?
Thanks
Thank you
2nd question answer will be 1 because after the callback function of the setTimeout come inside the callstack the i nis already declared and initialized so it will print 1
wow...those were actually an easy questions. I am a MERN developer with two years of gap after graduation and yes, 0 working experience or company exposure 😂. I thought company like infosys have tough interviews. Thank you, I think i gained a litttle confidence. Thanks for sharing...
It depends on the Interviewer
Do We need fake experience after gap?
Please give me idea i also have 4years of gap
Truly.. this interview was like asking a newbie.. I thought thier interviews are very hard . Btw I can also point out that a lot of time people do not know how to explain properly.. but these questions are like normal chatting then an interview 😜 we can have debates how hours on these...
@@crystalclear178 If you apply as fresher then it will difficult to get call for interview. if you show fake experience then interview gets more difficult.
The problem with async await was that you didn't put await before res.json() but kudos to you that you remained calm and changed it to .then() chaining and got it done!
😊 thank you
Hi bro!,
At 2:00 it will print the value of i since set time out is an asynchronous function it will go to the callback queue but In the meantime i variable will be defined
Yes, you are correct!
Superb bro....!!!
Demonstrated good knowledge with in-depth responses.
Thank you so much for sharing this interview... It's really helpful. The interview really good
Hi Roshan, These videos really very helpful. Thanks for this initiative 👍👏🙂
Glad to know it helps 🙂 Keep supporting
Difference between framework and library?
Answer: who calls who!? if we call the external code, then it is library. If our code is called by another code then it is framework. It is the concept of Inversion of control!
Thanks for explaining
@@DevAdityaPleasure bro, How much they offered?
I thought library is what we can use functions but framework is like the base project in which we can add our functionalities, am I wrong?
Thank you for sharing Sir
thank you for sharing your experience of intervew.
29:30 I think you missed the async keyword. If you are using .then() & .catch(), you don't need to use an async function.
Right, Actually before this I was implementing async-await & later then-catch that's why forget to remove it
@@seenu9633 syntactically i think it will not give any errors, but there is no need.
Thanks for sharing!!
Thank you so much for sharing.....
Thanks for sharing...too helpful 🎉✌🏻
Glad it helps 🙂 Keep supporting
bro passing index as key in a map loop is the worst thing you can do in react
learnt it the hard way time stamp 30:00
why ?? what is even wrong in it ??
You have to add custom middleware like Redux thunk or saga to do things like fetching data from API. And then you will be able to return a async function from the action which will return a pure JSON object once the API response is received. The interviewer was trying hard to bring you to that point.
Yeah, that time got confused actually.
BTW thanks for explaining
@@DevAditya can you tell me your insta I'd
@@lokeshnandanpandey5681 instagram.com/dev.roshan_
@Kshitij Vengurlekar Not necessarily, you can easily achieve this using a simple useEffect, or create a custom hook to fetch API data. :)
@@rootnode6571 I want to dispatch an action, And I expect that Action to make an API call , fetch data and update the Redux store. Can you link some article that shows how can useEffect or any other custom hook be used here?
Thanks brother, this will help me a lot
its been 3 months into web dev i understood all of this question and know the answer!
Great!
Thanks , Its helpfull 😃😃
Glad to know that 😊
Great bhai 💪👌
Thank you
@03:36 Why recursion?
I think you can do it via deep copy. JSON.parse(JSON.stringify(data))
we can do like this also right data.map(item, 'name')
using lodash method
I think the interviewers intension was to demonstrate a scenario where you have a nested object upto nth level here value of n is unknown or variable. And we want to react the leaf or the last level of object to extract the data, that's why recursion is the most suitable solution here.
We can use reduce here
Set time out will take time this is not true.. you need to explain how set time out register in Colstack
The menu structure we are using in our app. recursion is what used.
Thanks for the intiative
Really helpful
Glad to know it helps 🙂
1:56 he wanted to know about hoisting
thanks buddy
@1:33 just wanted to know if your answer was correct ? Or does JS hoisting take place here ?
The answer will be 1 because by the time log in timeOut will log the value of i will be 1
Wow...
Prop drilling can be solved using context api and component composition
Nice..
Thanks
Thanks for sharing.. it is very helpful for me :)
Glad it helps 😊 Keep supporting!
can you please make the separate list of questions and answers and provide the link
Sure, in upcoming videos 🤗
Thank you, @@DevAditya
Can you tell me what was package for this React interview. And You are Freshers or exp.. because questions is like freshers level.
May be you get 1 cr...congratulations.. 😄😄😄
I am a react developer in Infosys and I'm getting a package of 6.25LPA
@@joeljohnson1478 experience?
What's your experience?
@@joeljohnson1478 how to join Infosys..plz suggest
Hey @Dev. Roshan ! Its amazing!!
This is for experienced level, can you give pointers to level of difficulty for react.js questions, if it was for a current final year student with reference to this interview. Your guidance would help me a lot. Thanks!
Thank you 😊 & It was for an experienced candidate but you can consider these questions, it'll be beneficial for you.
I think, the answer for this code should be 1 after 1sec and not 0.
function x() {
setTimeout(function() {
console.log(i);
}, 1000);
var i = 1;
}
x();
Can u make an explanation video for the question that was asked at 03:00 min?
Sure, will try to cover these questions on a separate video
4:45 you said componentDidmount for BOTH, component loads and also for component updation. Is that right answer?
When loads
ComponentDidMount
When update
ComponentDidUpdate
Thanks for sharing..
Keep supporting 😊
bro was not there any Dsa round ? and aptitude round. i am a fresher that's i want to know more
It depends on the interviewer.
mostly when you apply for front-end/back-end/full stack roles, the primary questions are based on the tech stack (JS and react in this case), DSA is usually optional upto the interviewer
Bro well can you also tell that what are the questions for the freshers ?
You can consider the same
Was the answer to second ques correct?? I think it will print 1 and not undefined as we used var
I feel Json.parse(Json.Stringify(obj)) would do work
yes due to Hoisting
Yes due to hoisting
I ran this program i found not only by VAR but also by let and const the hoisting is possible. And printing 1.👍
What is happening for me interview not get cleared but I am handling 3 project 2 as a shadow Dev.
They expect theoretical explanation in better way.
Somebody help me in this problem
Please write solution in javascript
Write a function called do_allocation(number_of_people, number_of_buses)
The function should return a list of number of people who can get into the next bus that comes in based on the following logic:
Each bus’s capacity is the sum of the capacities of the previous two buses.
Once all the people get in, then the buses can continue, but will have 0 people inside it.
This is the case when the number of people are less and there are more buses. So after all the people are already boarded, then the remaining buses will have 0 people boarding.
The output of the function is an array/list with the same length as number_of_buses.
The total of this output array/list should be less than or equal to the number_of_people.
The first bus’ capacity can be set to 1 by default.
E.g.
Def do_allocation(number_of_people, number_of_buses):
…. Your code….
Return array[number of people got into first bus, number of people got into second bus, …. , number of people who got into last bus]
OMG who uses a varibale with Capital letter!!!!!!!!! UseState? or useState? 9:00
I'll suggest not to consider my answers do your own research, It's just an Interview experience.
BTW I was not running the code, just wanted to explain.
@@DevAditya Nice explanation overall. Just for closure question variable defined below the setTimeout will give the same result as 1.
@@vivekverma-gg6be Thank you
My bro seleced everywhere but goes nowhere.
Nice video , can I know the package for this
.!
I was also selected, but the offer letter has not come yet, I had a tech round,tech manager round ,after that they mailed me the documentation,i submited documentation but still waiting for offer letter , i gave interview on 9 Apr
All the best.
@@DevAditya any idea about ? Why they are taking time for release offer letter
@@rohitsakhare2247 bhai kanha apply kiya tha
@@rohitsakhare2247 for my case I've given my first technical round on 19th march
On 20th March I've got a mail to upload documents
On 25th March I've given managerial round
On 28th March I've HR called me for salary negotiation, and they told me to wait 2 weeks
On 8th April I've got my offer.
@@sanjibmajhi85 hello my interview was on 23rd APR 2022 on same day at night got documents upload mail but no update after that.
I think the interviewer may be a Malayaali😁.
That slang..🧐
Felt that too
This interview for entry level??
Can anyone explain exactly how second structure problem will solve?
I think this interview is for experience candidate right. How much experience is required for the interview ?
It was for 2+ exp
Is it for freshers? or experienced 1-3 years interview?
how did you record this interview? any tool?
cmd+shift+5
function myFunction(){
var oa2=2;
setTimeout(function(){
console.log(oa);
console.log(oa2);
},1000)
var oa=1;
}
myFunction()
it will not print undefined and 2
instead it will print 1 and 2
Exactly 😅
Yes it is clousers question..
to understand it clearly, you need to learn how execution context work (Creation Phase and Execution Phase)
is it due to hoisting or due to closure .?
@@devarora3770 it's hoisting
@Roshan, How much experience do you have?
what was the salary offered?
How much package u got brother?
Brother please add the filter code .on fetching .
Waiting for reply please write the both methods
Was this a fresher or experienced interview
how did he land this interview?
cause in mine there nothing like this asked
also I am freshers is it for someone with experience
Yup Exp
@@DevAditya what if you have similar knowledge and is it possible to apply for same ?
Hey, what was your answer when he asked you if you have knowledge about DevOps?? Was not able to catch it properly in the video. TIA😊
I'll suggest not to consider my answers.
@@DevAditya But I think the interviewer was impressed by your answer and ddnt press the question any further. You fared well😊
@@poulamimukherjee9193 My answer on it was "No but I'm curious to learn it"
@@poulamimukherjee9193 thank you 😊
Why you use middlware ?
We use it for asynchronus operation.
Redux thunk usecase?
redux thunk is a midleware, as i mentioned middleware is use for async operation. insted of returning a action ,it will return a function. this function is a pure function.
How many years of experiance you have ? Please go through the basics of everything. it seems like you have prepared randomly with some video tutorial. not clear about anything.
while you use async await you should not use .then and .catch. you should use try catch .once you mark a function async this function will return a promice so no need to use .then
Thanks for the suggestion
Bro, could you please show me way to learn React ..I'm a beginner Mern developer... any ways about React,node js and MongoDB will help me a lot.
hey there, you can checkout TheNetNinja tutorials on UA-cam. It got complete playlists for all ur requirements : )
All questions were not answered clearly...how you are selected..half sorted answers.
did you get the job? i go for an interview in may little nervous. Also the first question I is still gonna be one because its initialized in the outer function, if it was initialized in the inner function x wouldn't know what it is
Exactly, I made this mistake. BTW received postive feedback from them
All the best
is it for fresher job? or experienced one? how many years.
2+ exp
what is the package?
3 years ye hisab se bahot fattu que the 🤣🤣
Was it for a fresher or u had some prior experience?
Exp
@@DevAditya Can i apply as a fresher? How to approach?
@@malikshahid886 Not sure about the Fresher but you can take help of Payroll companies or it would be better to connect on LinkedIn & ask for reference who's working there.
Was there any DSA
Yes Depends on the interviewer
@@DevAditya what really? That's great
The question level was very basic.
Ishiitttt visibbbbble
How many years of experience you mantion in your resume for this interview..
2+
Package?
how many years of experience ?
3+
@@DevAditya hii bro
@@DevAditya i also want to crack mnc company but the problem is i have signed a bond with my startup company.
@@compeng..1510 you must have to complete it then.
@@DevAditya bro koi compulsory hota hai bond pura krna mtlb koi jabardasti to nhi hoti h isme?
Paisa kitna (range) de rha h bhai?
Is this for freshers or experienced.
Exp
Letter never confirm letter scene
that person selected yes or not
🎉 Selected
How much experienced?
How much percentage hike you got??
Can't disclose here,
Insta or telegram
@@DevAditya check your Instagram
@@DevAditya reply on Instagram bro
@@ganeshmandapati4799 ok
Lodu company ka lodu questions.
For how many years of experience was this role about?
Based on the questions, I think this might be for a fresher
Inverview for which level?
Exp
Whats you experience bro..!!?
CTC?
Is this a fresher interview bro??
No, but you can consider
How many total rounds were there?
Was it the first round.... and what were the other rounds, please also tell me your experience..
And congrats..
1 Tech round only & HR
exp -2+
Thanks
@@DevAditya Thanks for the response. My interview is also going to get scheduled soon. The video was really helpful.
@@Abhinendrachauhan1993 All the best 😊 Be prepared with ES6 features in deep also
@@DevAditya Thanks. I will look into that.
function x() {
setTimeout(() => {
console.log(i);
}, 1000);
var i = 1;
}
x();
// This will print => 1
Right 👍
How much experience did you have when you gave this interview ?
2+ in react
Your voice is low
You may use the earphone bro
@@DevAditya after use of headphone. I am replying you.
How much package infosys offered?
As per the Industry Standard
@@DevAditya how much pls give a range
Letter never coming later please plastic
.eificii