Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Focus on skills, projects and experiences more.
This was a written round consisting of 60 MCQS to be solved in 60 minutes.
First section consisted of 25 general aptitude questions to be attempted in 30 min.
Second section consisted of 25 technical questions(MCQ’s) to be attempted in 30 min. The question wise division was:
Around 7-8 questions from networking
Around 7-8 questions from operating systems.
Around 4-5 questions from software engineering.
Other questions on different genres of Computer Science.
What is the full name of FAT?
File attribute table
File allocation table
Font attribute table
Format allocation table
The second round was a technical round with questions on DSA and core subjects.
1.In which form data is stored in database?
2.What are the ACID properties?
3.DDL, DML, DCL & TCL (Complete explanation of each command) .
4.Concurrency control and questions related to serializability
1. About TCP/IP protocol
2. Difference between TCP and UDP
3. About subnetting



For the following array:
[0 1 1 1 0 0 1]
The output should be [0 0 0 1 1 1 1].
You have to sort the array in place.
Count the number of 0s and 1s present in the input array. Suppose “count0” and “count1” be the number of 0s and 1s present respectively. Then replace the first “count0” elements in the array with 0 and the remaining elements with 1.
HR round with behavioural questions mainly. The interview went smoothly as the recruiters were very patient and polite.
1) Are you a team member or a team leader
2) Tell me about yourself
3) How do you handle situations when two of you team mates have quarrels.
4) You hobbies
5) Walk me through you resume

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