Tip 1 : Go through puzzles on geeks for geeks.
Tip 2 : Explain things with real-world examples.
Tip 3 : Revise DSA, OOPs, DBMS and SQL.
Tip 4 : Give mock Interviews.
Tip 5 : Revisions are important.
Tip 1 : Have at least two projects.
Tip 2 : Skills should match the job description.
In this round, two questions on strings were asked, they were easy to medium level. The time allocated was 1 hour. After the coding round, I got the call from HR that I have been selected for the next rounds of Technical Interviews to schedule the next Interview. I only remember one of the two questions.



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




If a string has 'x' repeated 5 times, replace this "xxxxx" with "x5".
The string is compressed only when the repeated character count is more than 1.
Consecutive count of every character in the input string is less than or equal to 9. You are not required to print anything. It has already been taken care of. Just implement the given function and return the compressed string.



Why is JAVA so popular?
Why is the java platform independent?
If I gave you java code already compiled on my system, how will you run it on your system?
What is abstraction?
How can we implement abstraction, can we call the constructor of abstract classes?
Do abstract class has constructors?
What are Interfaces & how can we implement them?
Can we declare data members in abstract classes and interfaces?
Why do we need interfaces?
Can we override a private method of parent class?
Taken a variable I int type declared it and not assigned any value. When we print will it give an error or not?
Use of super keyword.
Data hiding Vs Abstraction.
What are the exceptions and categories of Exceptions and their examples?
How will you make custom exceptions?
What are wrapper classes?
What are singleton classes?
What is a static keyword?
What if we declare the constructor as final or private?



Bubble Sort implementation for the given array: {6,2,8,4,10} is shown below :-
What is Inner Join and write its query?
Delete vs Truncate command.
If you want to rollback you will use delete or truncate?
What is Cross Join?
What was your Final Year Project? Explain your role.
What were your personal projects? Explain them and which APIs you used.
What is abstraction? Can you implement it? (Coded an abstraction example)
What is Interface?

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