Tip 1: Prepare at least 2-3 good projects and understand those projects thoroughly. Have an in-depth understanding and confidence in Data Structures and get maximum insight into its concepts. Ensure have complete understanding working of these projects and what logic has been implemented within project
Tip 2: While resolving a problem, monitor time and space complexity. Work on the strategies to optimize the solution.
Tip 3: Practice more on reasoning and aptitude questions.
Tip 1: Mention only and only those projects, skills, and achievements in which you have complete and thorough knowledge. Most of the questions will be around these, and if you cannot answer them, it leaves a wrong impression on the interviewer.
Tip 2: Do not add too many projects. Add only one or two good projects in which you have proper knowledge.
Tip 3: The resume should not be more than 1 page, and try to keep only those details in the resume where you find yourself more comfortable.
The lists (1 -> 2 -> 1), (3 -> 4 -> 4-> 3), and (1) are palindromes, while the lists (1 -> 2 -> 3) and (3 -> 4) are not.
The given linked lists may or may not be null.
If the first list is: 1 -> 4 -> 5 -> NULL and the second list is: 2 -> 3 -> 5 -> NULL
The final list would be: 1 -> 2 -> 3 -> 4 -> 5 -> 5 -> NULL
For a given string “BaaB”
3 possible palindrome partitioning of the given string are:
{“B”, “a”, “a”, “B”}
{“B”, “aa”, “B”}
{“BaaB”}
Every substring of all the above partitions of “BaaB” is a palindrome.
Describe the ACID properties in DBMS.
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What does ROLLBACK do in DBMS?