I applied online. The process took 1 day. I interviewed at Nagarro (Pune) in Sep 2021
Interview
1. Technical Test
2. Technical interview
3. HR
Information about technical test as follows
There was first online MCQ test.
It has 3 sections in it.
1. Aptitude
2. Programming
3. Knowledge (.Net MVC, html, css question)
Interview questions [3]
Question 1
There was first online MCQ test.
It has 3 sections in it.
1. Aptitude
2. Programming
3. Knowledge (.Net MVC, html, css question)
There were 2 Programs questions
1. Converting Java variable to cpp and vice versa
e.g.
if this_is_a_variable is CPP varaible and need to convert thisIsAVariable is java variable
and if java variable is provided then need to convert into CPP (using any programming language)
2. N number of student and M number of subject
Teacher Mr. Johnson want to check and skip the subject mark which has minimum average marks.
Print the result of each student with skipping the mark of minimum avg marks
let take example
N = 4 student
M = 5 subject
student1 = {5, 8, 2, 4, 8}
student2 = {3, 6, 3, 7, 2}
student3 = {4, 8, 1, 7, 4}
student4 = {8, 8, 4, 4, 6}
here in this case subject number 3 has minimum avg marks (M1 avg = 5, M2 avg = 7.5, M3 = 2.5, M4 =5.5, M5 = 5 ) so need to skip from result and print the result skipping the minimum marks subject.