Tip 1 : Learn all basic data structures and algorithms
Tip 2 : Try to solve some Aptitude questions
Tip 3 : Practice Lot of questions in C++
Tip 1 : include at least one good project and prepare for it well
Tip 2 : make your resume Simple, One paged and well structures(you can use online templates)
This round contains 20 MCQ questions and 2 Coding questions and It was 90 minutes round
Timings were of the morning
This round was online on hackerrank platform
There was proper procuring with web cam
MCQ questions were from aptitude and oops section
Coding Questions : 1st question is medium level question, 2nd was a little bit tough question for me
Overall it was medium level in toughness






You are given a matrix 'MATRIX' of dimension 'N' x 'M'. Your task is to make all the elements of row 'i' and column 'j' equal to 0 if any element in the ith row or jth column of the matrix is 0.
1) The number of rows should be at least 1.
2) The number of columns should be at least 1.
3) For example, refer to the below matrix illustration:

Timing = afternoon
Environment : it was on zoom call
Interviewer was friendly, he asked one question that was tough



String ‘A’ is said to be similar to string ‘B’ if and only if
1. ‘A’ is equal to ‘B’.
2. Divide both ‘A’ and ‘B’ into two – two strings ‘A1’, ‘A2’ , ‘B1’ and ‘B2’ such that both of them('A1' and 'A2') have same size. Then at least one of the following must hold true:
a. ‘A1’ is similar to ‘B1’ and ‘A2’ is similar to ‘B2’.
b. ‘A1’ is similar to ‘B2’ and ‘A2’ is similar to ‘B1’.

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?