Tip 1 : Prepare bank exams syllabus as their written test does not involve coding
Tip 2 : Aptitude and reasoning play a very important role. Do not ignore these sections
Tip 3 : C and C++ fundamentals must be very strong. Increment, Decrement operators kind of topics must not be left
Tip 1 : Make sure to include at least one project you have done in C++.
Tip 2 : Boosts your resume to have a project on system calls and kernel programming.
There were no coding rounds in this test. It had 3 sections. You cannot skip any section. Each section was of 30 mins. One section consists of questions from aptitude and reasoning. Another section consists of questions from C programming. Last section consists of questions from Computer science fundamentals such as DSA, CN, OS. Questions range from Easy to Medium. Prepare aptitude and reasoning section well as that section is the game changer for everyone.
A container contains 30 liters of milk. From this container 5 liter of milk was taken out and replaced by water. This process was repeated further two times. How much milk is now contained by the container?
Tip 1 : Read and practice bank exam syllabus for scoring good in Aptitude and Reasoning section
What are different storage classes? What is inheritance?
Tip 1 : Sharpen your C++ and OOPS basics.



Input: Let the binary tree be:

Output: 2
Explanation: The root node is 3, and the leaf nodes are 1 and 2.
There are two nodes visited when traversing from 3 to 1.
There are two nodes visited when traversing from 3 to 2.
Therefore the height of the binary tree is 2.
Tip 1 : Stay strong and keep revising CS fundamentals.
Choose which best describes the concept of virtual memory



• The reference to the head of the linked list is not given.
• The node to be deleted is not a tail node.
• The value of each node in the Linked List is unique.
• It is guaranteed that the node to be deleted is present in the linked list.

Timing was from 10:30AM to 11:15AM. It was an online environment conducted on Hackerrank. The interviewer was very chill. He was from Hyderabad office. He asked questions in coding, OS, CN basics.


For the input string 'abcab', the first non-repeating character is ‘c’. As depicted the character ‘a’ repeats at index 3 and character ‘b’ repeats at index 4. Hence we return the character ‘c’ present at index 2.
Timing was from 12PM to 12:45PM. It was an online environment conducted on Hackerrank. The interviewer was neutral and was not that supportive. He was from Hyderabad office. He asked questions in C++ and Thread programming.



If the given string is: STR = "abcde". You have to print the string "edcba".
Try to solve the problem in O(1) space complexity.


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