Tip 1 : If you are following some course or video for any project then try to code along with the instructor. You will encounter many errors but you will learn a lot that way and it will be very helpful in interviews.
Tip 2 : Doing 2 problems daily is better than doing 10 problems one day and not doing anything the whole week. Try to be consistent on whatever you are doing.
Tip 3 : Peer programming does wonders!
Tip 1 : Be thorough with the projects that you have mentioned because there can be multiple cross questions from your project.
Tip 2 : There should be some actual life application of the project that you build, and its always a good thing to deploy the project and mention the link on resume.
The test was in the morning and consisted of 3 coding questions. We had to give the test online on hackerrank and there was proctoring through google meet.






Words are separated by one or more whitespace characters.
For the given string “Madam oyo cat”, “Madam”, and “oyo” are the palindrome words
A card was given and we had to design the card using HTML and CSS. It included applications of flex, grid etc.
What is a flex and when do you use it?
What is a grid and when do you use it?
Link the CSS file with HTML.
Why use React.js? (Since I used React.js in my resume project)
What is a virtual DOM?
What is JSX?
Questions around tech stack mentioned on resume.

N = 3
A = [ 1, 2, 3 ]
Explanation :
Complete sum for index 0 is ‘A[0]=1’.
Complete sum for index 1 is ‘A[0] + A[1]’ = 3.
Complete sum for index 2 is ‘A[0] + A[1] + A[2]’ = 6.
So, we output [ 1, 3, 6 ].
Solved this using recursion and wrote the code in javascript.
Describe all the different ways of writing functions in JavaScript.
Why do we use map, reduce, and filter method in reactjs.
Explain the OOPS concept.
Why did you use React.js in your project?
What are the real life use cases of your project?
Questions based on past internship experience.
Tell me about a time when you showed initiative and it had a positive effect.
Tell me about a time when you received feedback and how you handled it.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?