Tip 1 : Do at least 1 Project, projects are very necessary as it engages you with the interviewer.
Tip 2 : Practice at least 200 questions(Moderate to easy)
Tip 3 : Practice some Puzzles( You can go through Puzzle section from GFG, it's sufficient)
Tip 1 : Have some projects on resume, and know everything of your projects
Tip 2 : organize your resume properly use good template while building your resume
This round was in the evening.
There were 4 section
1. Aptitude Questions
2. Quantitative Analysis
3. English
4. Coding questions- 2 Question



If 'N' = 4. You need to return 1^2 + 2^2 + 3^2 + 4^2 = 30.



Bubble Sort implementation for the given array: {6,2,8,4,10} is shown below :-
Its a system design round.
You are web-proctored on MS Teams.
Design a solution so that Overcrowding in different coaches in the new metro rail service is reduced.
While answering this round, you can have the following points in your answer, because they prefer this format. And try to right in points, avoid essays.
1. Problem statement
2. Solution
3. Flowchart
4. Summary
5. Conclusion
You can answer on pen and paper or word document or PowerPoint. It is totally up to you. But, they prefer the digital format.
Interviewer was nice
interview happened at 7 pm
Firstly interviewer asked me to introduce myself
Then, we had some discussion on the system design round.
Then, we had some discussion on the project that i have done.
Then, he asked me question related to OOPS(Basic questions)
Then he game me these 2 problem to solve.



F(n) = F(n-1) + F(n-2),
Where, F(1) = F(2) = 1.
For ‘N’ = 5, the output will be 5.



Consider below matrix of characters,
[ 'D', 'E', 'X', 'X', 'X' ]
[ 'X', 'O', 'E', 'X', 'E' ]
[ 'D', 'D', 'C', 'O', 'D' ]
[ 'E', 'X', 'E', 'D', 'X' ]
[ 'C', 'X', 'X', 'E', 'X' ]
If the given string is "CODE", below are all its occurrences in the matrix:
'C'(2, 2) 'O'(1, 1) 'D'(0, 0) 'E'(0, 1)
'C'(2, 2) 'O'(1, 1) 'D'(2, 0) 'E'(3, 0)
'C'(2, 2) 'O'(1, 1) 'D'(2, 1) 'E'(1, 2)
'C'(2, 2) 'O'(1, 1) 'D'(2, 1) 'E'(3, 0)
'C'(2, 2) 'O'(1, 1) 'D'(2, 1) 'E'(3, 2)
'C'(2, 2) 'O'(2, 3) 'D'(2, 4) 'E'(1, 4)
'C'(2, 2) 'O'(2, 3) 'D'(3, 3) 'E'(3, 2)
'C'(2, 2) 'O'(2, 3) 'D'(3, 3) 'E'(4, 3)
Create a count array to store the frequency of each character in the given string str. Traverse the string str again and check whether the frequency of that character is 0 or not. If not 0, then print the character along with its frequency and update its frequency to 0 in the hash table. This is done so that the same character is not printed again.
It was kind of an HR round and also a final meet round. All 15 of us were asked to join the same meeting at the same time.
They told us that they can only hire 10 of the 15. So, we were given 30 seconds each and were asked why should we be hired, but they were impressed by all 15 of us so we all got selected and luckily, i was one of them.

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