I applied through college or university. I interviewed at Infosys in Apr 2021
Interview
I applied to Infosys through campus placements. The Interview was quite easy as the interviewer tested only my foundational knowledge of data structures and algorithms. The initial coding round was moderate though.
Interview questions [1]
Question 1
One question that I could recall was to reverse a linked list without using any additional data structure. Also I've been asked some questions about string manipulation. Then I've been given a SQL problem statement and asked to write some queries.
after applying you'll receive a link for online test,
after clearing online test you'll receive a link for coding test. After completion of coding test, if you are shortlisted in coding then you'll have technical interview and HR interview
Interview questions [1]
Question 1
1)why did you choose infosys to work?
2) explain about your final year project
I applied through an employee referral. The process took 1 week. I interviewed at Infosys (Bengaluru) in Apr 2021
Interview
It was pretty smooth. The Infosys recruitment team has reached out to me by mail. I applied and in the interview round itself they explained about roles and responsibilities. There was some skill-set related questions. In the second round mostly it was project related questions.
Interview questions [1]
Question 1
An evil scientist has developed an injection that induces insatiable hunger in a fish. On giving this injection, a fish of size x can eat another fish of smaller size y (y < x) and become a fish of size x + y retaining this hunger. An aquarium has a number of fishes of various sizes. The scientist introduces an injected fish into this aquarium with an objective that eventually only 1 fish remains. In order to achieve this, the scientist is allowed only two types of moves: either add a normal fish of any size or remove an existing normal fish from the aquarium. Given the sizes of other fishes in the aquarium and the size of injected fish, write a program to determine the minimum number of moves needed by the scientist to achieve his objective. For example, suppose there are 5 fishes in the aquarium, the injected fish is of size 10 and the other fishes are of sizes 9, 20, 25, and 100. To ensure that only 1 fish remains in the aquarium the scientist needs to remove the fish of size 100 and add a fish of size 3. So the output is 2. The sequence of steps is shown below. The sizes of fishes in the aquarium at each step are shown in curly braces. The highlighted number is the size of the injected fish.