Tip 1 : Practice at least 250 Questions
Tip 2 : Use online platform to get company specific problems
Tip 3 : Take time to study DSA
Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.
Tip 3 : Add your coding profiles on resume.
Tip 4 : Try to add as much achievements as you can in a brief.
English 15 Questions MCQs
Aptitude 15 Questions MCQs
2 coding problem



If the given list is (1 -> -2 -> 0 -> 4) and N=2:

Then the 2nd node from the end is 0.
Step 1 : Calculate the length of Linked List. Let the length be len.
Step 2 : Print the (len – n + 1)th node from the beginning of the Linked List.



153 = 1^3 + 5^3 + 3^3.
Therefore 153 is an Armstrong number.
The approach implemented below is simple. We traverse through all numbers in given range. For every number, we first count number of digits in it. Let the number of digits in current number be n. Them we find sum of n-th power of all digits. If sum is equal to i, we print the number
There were 1 interview present in the meeting. The interviewer was polite and calm.
Tip 1 : Just be yourself and and give simple replies
Tip 2 : Never lie, speak the truth whatever it is
Tip 3 : Stay confident and speak frankly

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?