Tip 1 : Projects are very important. So, focus more on that.
Tip 2 : Your DSA concepts should be very clear.
Tip 3 : You should have sound knowledge of all the core subjects.
Tip 1 : Putting decent projects on a resume is a must.
Tip 2 : Any type of experience you have, whether freelancing or any sort of internship or voluntary work, do mention it on your resume.
It was online test in morning.
int i=4;
switch (i)
{
default :
;
case 3 :
i+=5;
if (i==8)
{
i++;
if (i==9) break;
i+=2;
}
i+=4;
break;
case 8 :
i+=5;
break;
}
printf ( "i = %d\n", i );Ans:- i=4
In a company, 26 employees are in the HR department, 32 are in the technical department, and 30 are in the management department. Of these, 5 employees are in all three departments, while 37 are in only one of them. How many employees are in only two of the three departments?
Tip 1 : Practice general aptitude questions.
Tip 2 : Have knowledge of Venn diagrams.
An insurer has 12,000 policyholders. Of the 12,000, 2,000 have a 0.01 chance of becoming infected with a virus, 4,000 have a 0.03 chance, and the remainder have a 0.15 chance. If one person gets the virus, what is the chance they are part of the group with a 0.03 chance of getting infected?
Tip 1: Practice more questions on probability.
Tip 2: Learn the tips and tricks to solve quickly.
FIFO scheduling is a type of:
a) Pre-emptive scheduling
b) Non-pre-emptive scheduling.
c) Deadline scheduling
d) None of the above
Ans: Non-pre-emptive scheduling
Tip 1 : Have a deep knowledge of OS concepts.
Tip 2 : Read interview questions from internet for practice.
Which of the following can replace the below query?
SELECT name, course_id
FROM instructor, teaches
WHERE instructor_ID= teaches_ID;
a)Select name, course_id from instructor natural join teaches;
b)Select name,course_id from teaches,instructor where instructor_id=course_id;
c)Select name, course_id from instructor;
d)Select course_id from instructor join teaches;
Ans : Select name, course_id from instructor natural join teaches;
Tip 1: Have thorough knowledge of dbms concepts.
Tip 2: Practice sql queries online as many as possible.
It was an online interview in the evening. The interviewer was asking about everything in detail that was mentioned on my resume. However, he was friendly and guided me throughout the interview whenever I was stuck. The interview was purely based on the resume, covering everything from my CGPA and grades to my branch/field, skills, experience, projects, and finally my hobbies and extracurricular interests. In my opinion, he was mainly focusing on my way of answering rather than the content of my answers. He wanted to assess my confidence and approach to handling particular questions. Overall, the experience was good, but I wasn't very sure if I would clear it until I received the selection email.
1)What is meant by RTOS? List the top RTOS. (Learn)
2)What is a deadlock in OS? Explain the necessary conditions for a deadlock. (Learn)
3)Briefly discuss the different scheduling algorithms. (Learn)
4)What is RAID structure in OS? Discuss the different levels of RAID configuration. (Learn)
5)Discuss starvation and aging in OS. (Learn)
Tip 1: Firstly, read books or online materials to have a deep and clear knowledge of concepts.
Tip 2: And read interview questions to get an idea of type or level of questions.
Tell me about your one minor project and one major project.
Follow ups:
Did you face any difficulties? If so, how did you manage it.
Was it a team project or individual project.
If team project, then how did you manage to keep up with your teammates.
What was your contribution in the project.
Were all your team mates on the same page?
Was there any conflict between you all. If yes, how did you resolve it.
How did you manage time and other things?
Tip 1: Explain your projects briefly first and then if asked to explain it in detail.
Tip 2: Be confident while answering cross questions. Confidence matters more than the content of your answers.
What is your branch /field?
Is there any difference between computer science and Information Technology branch?
Have you taken part in any extracurricular activities in your school/college time?
What are your hobbies? Mine was poetry, so, he asked me to recite one of my poems.
At last, he asked if I have any question for him.
Tip 1: HR round is basically a conversational type, so just have a decent conversation with the interviewer.
Tip 2: Don't hesitate.

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?