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).
it has 3 rounds one technical 2 managerial and other hr round.
Technical questions related to react js, js coding questions and js basic questions, htnl, css , promises, prototype
I applied through college or university. I interviewed at Infosys (Dehradun) in Sep 2025
Interview
An online aptitude/coding test, and a technical + HR interview.A in-person interview focusing on core concepts. Expect questions on DSA, DBMS, OS, Networking, OOP, and one programming language. Non-CS branches prepare branch basics.
Interview questions [1]
Question 1
Object-Oriented Programming (OOPs), SQL, and Software Engineering basics
3121. Count the Number of Special Characters II
Solved
Medium
Topics
premium lock icon
Companies
Hint
You are given a string word. A letter c is called special if it appears both in lowercase and uppercase in word, and every lowercase occurrence of c appears before the first uppercase occurrence of c.
Return the number of special letters in word.
Example 1:
Input: word = "aaAbcBC"
Output: 3
Explanation:
The special characters are 'a', 'b', and 'c'.
Example 2:
Input: word = "abc"
Output: 0
Explanation:
There are no special characters in word.
Example 3:
Input: word = "AbBCab"
Output: 0
Explanation:
There are no special characters in