Try to do Data Structures and Algorithms based questions and firstly attempt it yourself before going to the solution, also try to do it as quickly as you can. Also prepare for theory subjects like Operating system, Database Management System, etc which I prepared through Coding Ninjas subjective notes and they are very accurate and up to mark.
Keep your resume simple and complete. Mention some good level projects, your previous experiences and coding achievements if any.
This was the coding round with only one coding question having 50 test cases and one have to pass all test cases to clear this round.
You have given two strings 'str1' and 'str2'. Find the minimum operations required to convert str1 into str2.
This was face to face interview round.
Detect cycle in a linked list.
Given an array of integers, and a number ‘sum’, find number of pairs in the array whose sum is equal to given sum.
Examples :
Input : arr[] = {1, 5, 7, -1, 5},
sum = 6
Output : 3 [ Pairs are (1, 5) (7, -1) (1, 5)]
Given n (x,y) coordinates on a 2D plane Find the distance between the closest points.
This was HR round and he asked me few basic questions.
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you write a single-line comment in C++?