Tip 1 : You must practice previously asked Interview questions as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and don't try to copy your projects without knowing every bit of it.
Tip 1 : Only add relevant skills and try to make it a one pager.
Tip 2 : Do not put false info on resume.
The interviewer was very friendly in nature. He was very polite while questioning me, that made me comfortable in the interview.






For the given graph,
The shortest distance between 1 and 3 is 2 (via 1 <-> 2 <-> 3). Hence, the answer is 2.
Why is multiple inheritances not supported in Java?
What is multithreading?
What are Java Applets?



Return the list of all those words sorted in alphabetical. Return an empty list in case there are no such words
Input: cat, banana, dog, nana, my, walk, walker, baby, dogwalkers, s, babymybaby
Output: babymybaby dogwalkers
Here in the given list of words, you can see that the words babymybaby, dogwalkers contain the words present in the list i.e. ‘s’, 'dog’, ‘walker’,‘baby’ and ‘my’ and both are of the same length.



Here, sorted paths mean that the expected output should be in alphabetical order.
Given a square matrix of size 4*4 (i.e. here 'N' = 4):
1 0 0 0
1 1 0 0
1 1 0 0
0 1 1 1
Expected Output:
DDRDRR DRDDRR
i.e. Path-1: DDRDRR and Path-2: DRDDRR
The rat can reach the destination at (3, 3) from (0, 0) by two paths, i.e. DRDDRR and DDRDRR when printed in sorted order, we get DDRDRR DRDDRR.
You have a glass of tomato soup. You have one other empty glass of a different size and shape. You have to give the soup to two children. How would you divide the soup into two glasses so that both of them are satisfied that they have got an equal share of soup?
It was just like discussion with a senior in the organisation. Simple and straight forward HR like questions were asked.
At which moment you made your parents proud?
What is the difference between Ambition and Goal?
Why should we hire you?

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