Tip 1 : If you have ample time then start competitive programming it will increase your speed of implementation and accuracy. I recommend codeforces.
Tip 2 : If your interviews are near, start solving standard coding problems from leetcode, Interview bit, and geeks for geeks.
Tip 3 : Try to do working projects, they make a great impact on the interviewer.
Tip 4 : Practice as many questions as you can. That way, you will not make any silly mistakes on the day of the interview.
Tip 5 : Go through the questions asked in the past years and the interview experiences.
Tip 1 : Try to add working projects in your resume, they attract the attention of interviewers.
Tip 2 : Add only those skills/programming language that you have worked with, not able to answer the questions asked on those skills/languages is the biggest embarrassment that can happen in an interview.
Tip 3 : Do not add unnecessarily styling to your resume, keep it simple and professional.
6-7:30 pm
The webcam was on throughout the test.



Let ‘ARR’ = {2 4 7 10}.
If you want to know that what is the value at the 0-index in ‘ARR’, use ‘readValueAtIndex(0)’. Then the output is 2.
Let’s assume that you are trying to get the value at the 10’th index so, use ‘readValueAtIndex(10)’. Then the output is ‘10 ^ 9 + 7’. Because you are trying to access an index that is greater than the size of ‘ARR’.



The length of the path is the number of steps required to reach from the first column of the field to the last column i.e., one less than the number of cells in the path.
Consider the field of size 4*4, shown below. The cells containing landmine are marked with 0 and red colour. The cells near the landmine which are unsafe are marked with a light red colour.
The shortest safe route for Ninja, starting from any cell in the first column to any cell in the last column of the field is marked with green colour. The length of the path is 3.



Morning(10 am)
The interviewer was friendly.



Input:
'num1' : 1 -> 2 -> 3 -> NULL
'num2' : 4 -> 5 -> 6 -> NULL
Output: 5 -> 7 -> 9 -> NULL
Explanation: 'num1' represents the number 321 and 'num2' represents 654. Their sum is 975.
Difference between Union and Union all
Two tables were present having similar schema containing some common and distinct data I had to write a query to return a table containing all the entries all both tables but there should be distinct entries in the resulting table.
Given an employee table get all the names starting with the letter a.



Afternoon around 12 PM
If was from home
The interviewer was professional and did not waste any time.
He asked me the main features of Angular because I have written angular in the skills section of my resume.
I don't remember this question precisely but it was somewhat like this:
Two tables were given and he asked me the employee names which were most common in each city.
The tables were like this:
Table 1:employee_id name office_id
Table 2:Office_id city
This is just an idea of how the question was. The original question was a bit tougher than this because I remember that I had a hard time solving that question but i solved it in not more than 5-7 minutes.



In the given linked list, there is a cycle, hence we return true.




getSize: Returns an integer. Gets the current size of the stack
isEmpty: Returns a boolean. Gets whether the stack is empty
push: Returns nothing. Accepts an integer. Puts that integer at the top of the stack
pop: Returns nothing. Removes the top element of the stack. It does nothing if the stack is empty.
getTop: Returns an integer. Gets the top element of the stack. Returns -1 if the stack is empty
The interviewer asked me to design a banking system in which the user can use either the current account(rate of interest 10%) or savings account(rate of interest 7%) and the functions that I had to implement were:
1 Withdraw
2 deposit
He asked me to implement this using Object Oriented Concepts.



Unique element is always present in the array/list according to the given condition.
Suppose you have a 3 liter jug and a 5 liter jug (this could also be in gallons). The jugs have no measurement lines on them either. How could you measure exactly 4 liter using only those jugs and as much extra water as you need?
They were calling it a pro-fitness round, it was to check if you are professionally fit to work in the company.
It was in the late afternoon around 3 PM
The interviewer was very friendly and engaging.
Are you a team player?
What happens if your team is not working as expected?
Tip 1 : In this type of question try to show that you are a team player, even if one of your team members is not working properly, you can cover for his/her mistakes and talk them out of their problems.
It was in the evening around 5 PM
The locations and work culture was discussed in that round
The interviewer was exhausted.
Who is your role model?
What keeps you motivated?
Tip 1 : I had done many projects so I had a lot of answers to this question. Having projects helped me in both of my HR and Pro-fit rounds.

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