Tip 1 : For clearing online assessment you should be able to solve average aptitude questions.
Tip 2 : Solving 200-250 easy and medium (60% + acceptance) questions on leetcode would be enough for clearing interview.
Tip 3 : Having a project is a plus point though they do not focus much on project.
Tip 1 : Try to add proof of what you are adding. Add projects link, certificates link, coding profiles link etc.
Tip 2 : Content should not be so dense or so sparse.
There were 25 aptitude questions and 15 questions from DSA, DBMS.
Number Of MCQs - 40
Step 1: I stored the square in an variable, part1;
Step 2: initiated two variable part2_length = 0 and part2 = 0;
Step 3: run a while loop with condition part1 != 0
last_digit = part1 % 10
part1 = part1/10
part2 = last_digit * pow(10, part2_length) + part2
if(part1 + part2 == n) return true
Step 4 outside loop return false
Intution: When any ith character occurs for the first time map it to the ith character of another string and then if next time that character occurs, then in another string the character should be equal to the character we mapped it with. size of both strings should be same.
Step1: Created two array of size 256 each say a1, a2.
Step 2: Start traversing the string i = 0 to size of string:<...
Explain function overloading and function overriding.
Explain abstract class and abstract functions.
Introduce yourself.
What is your strength and weakness?
What do you know about the company?