Tip 1 : Daily practice is needed for an interview to be cracked.
Tip 2 : If you are joining as a fresher, you must have basic knowledge of DBMS, OOPS, and Data Structures. This will increase your chances of getting shortlisted for the job.
Tip 3 : Always try to get a strong base of any one technology that you have been working on. Eg, Java( Backend), React Js(Front end), etc
Tip 1 : Always mention projects in your resume, so that interviewer should know that you have experience in that particular tech.
Tip 2 : Don't write in too much detail, just brief summary of you and your experiences.
There were basically 3 sections in the first round.
Section 1 - It consists of aptitude questions (Quant and LR/DI)
Section 2 - Writing a short paragraph of 200 words on the topic given.
Section 3 - It consists of pseudo-code MCQs.
Test environment was good and it was in the morning shift only.
Most of the MCQs were of moderate level, and some of the hard levels too.
Quant and DI/LR was asked in the MCQ section
Number Of MCQs - 25
This round consists of a face-to-face interview. In this round, I was asked about the basics of DS ALGO, DBMS, and oops concepts.



F(n) = F(n - 1) + F(n - 2),
Where, F(1) = 1, F(2) = 1
"Indexing is start from 1"
Input: 6
Output: 8
Explanation: The number is ‘6’ so we have to find the “6th” Fibonacci number.
So by using the given formula of the Fibonacci series, we get the series:
[ 1, 1, 2, 3, 5, 8, 13, 21]
So the “6th” element is “8” hence we get the output.
Tell us about your final year projects.
Extracurricular activities that u have done in your college.

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?