Glassdoor users rated their interview experience at Infosys as 66.7% positive with a difficulty rating score of 3 out of 5 (where 5 is the highest level of difficulty). Candidates interviewing for InStep Internship and Program Manager rated their interviews as the hardest, whereas interviews for Customer Service Associate and Program Manager roles were rated as the easiest.
The hiring process at Infosys takes an average of 60 days when considering 3 user submitted interviews across all job titles. Candidates applying for InStep Internship had the quickest hiring process (on average 60 days), whereas InStep Internship roles had the slowest hiring process (on average 60 days).
Round 1 included aptitude questions, pseudocode writing, and passage-based comprehension tests. Round 2 was an HR and technical discussion covering projects, basic coding tasks, and explaining the logic and approach behind implemented solutions
I applied through a staffing agency. The process took 2 months. I interviewed at Infosys (Poona) in Jul 2024
Interview
There are a total of 4 rounds: 1st telephonic, then coding and technical, client round and then HR discussion. There are a total of 4 rounds: 1st telephonic, then coding and technical, client round and then HR discussion
I applied through college or university. I interviewed at Infosys (Chennai) in Dec 2025
Interview
after the intial coding test there was pen and paper coding test .
i got an string based pattern recognising question.he was not satisfied with the brute force approach...next was resume based question
Interview questions [1]
Question 1
s = input()
for i in range(len(s)):
seen = set()
for c in s[i:]:
if c in seen: break
seen.add(c)
print(c, end="")
print()
This is pretty much the code i wrote that day, might not be exactly what i wrote that day but yeah i used sets and this loop logic