Tip 1 : Prepare data structures to clear coding round
Tip 2 : Try to focus on core subjects first
Tip 1 : Mention the things in which you are fully confident
Tip 2 : Mention good projects, which you have done by yourself.
There were 2 coding questions and 10 MCQ questions



Given ‘N’ = 4,
Its binary representation is 0..0100, therefore there is only 1 set bit, hence the answer will be 1.
Step 1: Check if the number is greater than 0
Step 2: if the number is >0 then find mod by 2 of that number and store in the string
Step 3: now divide that number by /2
Step 4: Repeat this process until number >0
Step 5: Now print the string in reverse order.



Input: X1 = 0, Y1 = 0, X2 = 2, Y2 = 0, R1 = 1, R2 = 1
Output: YES
Circles intersect with each other at (1,0) with each other. Refer to the image given below:

Step 1 : calculate the distance between two centers of circle using the formula
C1C2 = sqrt((x1 – x2)2 + (y1 – y2)2).
Step 2 : There are 3 cases :
case 1:C1C2 == R1 + R2: Circle A and B are touch to each other.
case 2:C1C2 > R1 + R2: Circle A and B are not touch to each other
case 3:C1C2 < R1 + R2: Circle intersects each other.
Step 3 : using above mentioned cases we can find the answer.
2nd Round was technical round. Basically, interviewer asked problems based on coding tests and some problems related to java and DBMS
What is the race condition in OS? explain with some examples.
Tip 1 : I have prepared the OS section from Ravindra babu's videos so able to give satisfactory answers.
Tip 2 : Try to prepare notes while watching videos.
Can you explain how the file loads in the operating system?
Tip 1 : I have prepared the OS section from Ravindra babu's videos so able to give satisfactory answers.
Tip 2 : Try to prepare notes while watching videos.
What are ACID properties in DBMS?
Tip 1 : These are some hot questions in DBMS, I have prepared using Ravindra babu videos and Gfg.
This round was more like behavioral and cultural type.
Situational Question: What will you do If you don't like the work you are given in your team?
Tip 1 : read about the company, culture, and moto.
Tip 2 : You can talk to senior employees or your seniors who are in company
where do you see yourself in the next 5 years?
Tip 1 : Prepare these typical HR questions from any online platform.
What are your hobbies?
Tip 1 : Prepare these typical HR questions from any online platform.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: