Tip 1: Practice at least 20 hard questions and 50 medium-level questions.
Tip 2: Complete one project in React with Node.js and MongoDB from scratch.
Tip 3: Write JavaScript code for concepts such as Scope, Hoisting, Closures, and others.
Tip 4: Watch and read interview experience blogs or videos.
Tip 1: Create a single-page resume; avoid making it too fancy. Keep it simple and clean.
Tip 2: Explain your work experience in detail on your resume, including your tasks, roles, and responsibilities.
Tip 3: Avoid adding personal information like your date of birth. Include only contact details and a profile.
Tip 4: Avoid describing your projects in detail; instead, provide just the name, technology used, and a brief description.
Timing ( 1 pm - 2 pm on Saturday)
environment: first round online very light environment
activity: no,
interviewer: the interviewer was very good and polite he made me very comfortable
1. What is an event loop in javascript and how does it handle synchronous and asynchronous processes in javascript? (Learn)
2. What is the difference between “==” and “equals(…)” in comparing Java String objects
Tip 1: Read the event loop concept and practice also
Tip 2: Understand async and await in JavaScript
Tip 3: Learn javascript internal working
Tip 4: Read all the JavaScript topic



There is only one space between the values of each column in a row.
For example, Pattern for ‘N’ = 5 will be.
1 2 3 4 5
11 12 13 14 15
21 22 23 24 25
16 17 18 19 20
6 7 8 9 10
Step 1. The interviewer said to use any online compiler.
Step 2. Write logic as logic is very common.
Step3. The interviewer said to make a dynamic input-based logic
Step 4. Ask me to explain the logic
Tell me about your projects.
Tip 1: I explained my all contributions to projects and results.
Tip 2: Explain about project structure
What are closers and promises in javascript. ?
What is the callback function and callback hell program in JavaScript. ?
What is the difference between var, let, const. ? (Learn)
What is call-by-value and call-by-reference. ? (Learn)
Timing ( 8 pm - 9 pm night )
environment: The second round was also online with a serious environment
activity: no,
interviewer: The interviewer was good he is a hiring manager and asked all questions point to point
1. What is your role and responsibility in your past project. ?
2. some cross-questions based on answers?
3. What is Node.js?
4. if we open the index page of the react project does it work?
6. Which database did you work and explain the types of table mappings
Tip 1: Just go through all your work.
Tip 2: learn to react in depth.
Tip 3: go through your database logic.



Input: 'arr' = [1, 2, 7, -4, 3, 2, -10, 9, 1]
Output: 11
Explanation: The subarray yielding the maximum sum is [1, 2, 7, -4, 3, 2].
Step 1: First I tried to solve this problem with 2 loops
Step 2: they said to do with Kadane's Algorithm
Step 3: I already practiced this question so I just solve
Step 4: explain the logic part only m logic
Create a simple node server with Express.js.
What is Node.js?
Timing ( 8 pm - 9 pm night )
environment: The last round was also online with a serious environment
activity: no,
interviewer: The interviewer was good he is a co-director and asked all questions basic questions in-depth
Explain database schema for social media application that has post and like, comment, and also like a comment.
Tip 1: learn database schema concepts
Tip 2: learn how to convert business requirements to a database schema



If the given linked list is 1 -> 2 -> 3 -> 4 -> 5 -> NULL.
Then rearrange it into 1 -> 5 -> 2 -> 4 -> 3 -> NULL.
Step 1: Do some good Practice in any competitive coding platforms.
If you do not match the deadline then how do you handle a situation?
If you do not agree with your team member then how do you deal with it?

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