Premium Employer

i

This company page is being actively managed by Infosys Team. If you also belong to the team, you can get access from here

Infosys Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Infosys Senior Software Engineer Interview Questions, Process, and Tips for Freshers

Updated 5 Mar 2025

Top Infosys Senior Software Engineer Interview Questions and Answers for Freshers

  • Q1. What is OOP? Write pseudo code to design library management system. What is RDBMS. Write a program to reverse a string.
  • Q2. What is scope of performance testing
  • Q3. Sql query to find the 2nd last student marks
View all 6 questions

Infosys Senior Software Engineer Interview Experiences for Freshers

4 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Difference between out and ref.
  • Ans. 

    Out is used for returning multiple values from a method, while ref is used for passing a variable by reference.

    • Out parameters must be assigned a value inside the method before it returns.

    • Ref parameters must be initialized before passing them to a method.

    • Out parameters are used when a method needs to return multiple values.

    • Ref parameters are used when a method needs to modify the value of the parameter.

    • Example: int.TryP...

  • Answered by AI
  • Q2. Sql query to find the 2nd last student marks
  • Ans. 

    Use a SQL query with ORDER BY and LIMIT to find the 2nd last student marks.

    • Use ORDER BY clause to sort the marks in descending order

    • Use LIMIT 1,1 to skip the last row and fetch the 2nd last row

  • Answered by AI
  • Q3. Second round was around project specific like why mongodb or posgreSQL? Project architecture and followup questions.
  • Q4. Create global exception handler.
  • Ans. 

    Create a global exception handler to manage all unhandled exceptions in the application.

    • Implement a global exception handler class that extends ExceptionHandler.

    • Override the uncaughtException method to handle all unhandled exceptions.

    • Log the exception details and notify the user about the error.

    • Consider implementing different strategies for handling different types of exceptions.

    • Test the global exception handler thorou

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Feb 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Explain about your roles and responsibilities
  • Q2. What is scope of performance testing
  • Ans. 

    Performance testing ensures software meets speed, stability, and scalability requirements.

    • Performance testing identifies bottlenecks and measures response time, throughput, and resource utilization.

    • It helps optimize system performance, improve user experience, and prevent crashes under high load.

    • Examples include load testing, stress testing, and endurance testing.

    • Performance testing should be conducted throughout the s...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Explain about your project roles
  • Q2. What are critical issues you faced while recording the script
Round 4 - HR 

(2 Questions)

  • Q1. What is your expected CTC
  • Ans. 

    My expected CTC is in line with industry standards and commensurate with my experience and skills.

    • Research industry standards and salary ranges for the position and location

    • Consider my experience, skills, and qualifications

    • Negotiate based on the company's compensation package and benefits

    • Provide a range rather than a specific number

  • Answered by AI
  • Q2. When can you join in the organisation

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well be confident for your interview process

Skills evaluated in this interview

Senior Software Engineer Interview Questions Asked at Other Companies for undefined

Q1. How do you create GQL server, directive in GQL, Fragments in GQL ... read more
Q2. Write an API to implement HTTP GET method to hit an external data ... read more
asked in LTIMindtree
Q3. Explain microservice architecture and how do we implement that us ... read more
asked in HCLTech
Q4. Find the second highest number by using Java Stream, What are the ... read more
Q5. How many projects or process you implemented in RE framework?
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was mass placement from our college. First round was an aptitude test which had direct filtration.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Second round was one on one technical interview. It was based on OOPS concepts and core C++ concepts.
  • Q2. What is OOP? Write pseudo code to design library management system. What is RDBMS. Write a program to reverse a string.
  • Ans. 

    OOP stands for Object-Oriented Programming, a programming paradigm based on the concept of objects.

    • OOP focuses on creating objects that contain both data and methods to manipulate that data.

    • Encapsulation, inheritance, and polymorphism are key principles of OOP.

    • Example: In a library management system, you could have objects like Book, Patron, and Library.

    • Example: Inheritance allows a FictionBook class to inherit propert

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are fresher keep core knowledge of any basic language like java, c++ or python. Keep your confidence high with correct answer.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Sep 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Basic quants and grammar questions

Round 3 - Technical 

(2 Questions)

  • Q1. Basic coding questions
  • Q2. Palindrom coding question

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on your coding and math skills

Infosys interview questions for designations

 Senior Software Engineer Testing

 (3)

 Senior Software Engineer 2

 (1)

 Senior Associate Software Engineer

 (1)

 Software Engineer

 (307)

 Senior QA Engineer -Software Testing

 (1)

 Senior Software Developer

 (19)

 Senior Software Consultant

 (1)

 Senior Software Tester

 (1)

Interview questions from similar companies

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 140 minutes
Round difficulty - Medium

Test timing was at 2:00 pm , it was conducted in a college and the environment was good for the test. Camera was a primary part of test, so no suspicious activity.

  • Q1. 

    Sum of Two Numbers Represented as Arrays

    Given two numbers in the form of two arrays where each element of the array represents a digit, calculate the sum of these two numbers and return this sum as an ar...

  • Ans. 

    Given two numbers represented as arrays, calculate their sum and return the result as an array.

    • Iterate through the arrays from right to left, adding digits and carrying over if necessary

    • Handle cases where one array is longer than the other by considering the remaining digits

    • Ensure the final sum array does not have any leading zeros

  • Answered by AI
Round 2 - Face to Face 

Round duration - 20 minutes
Round difficulty - Easy

The round was conducted at around 12 p.m. I was called at the college location and then it was conducted. The interviewer was quite polite and frank.

Round 3 - HR 

Round duration - 8 minutes
Round difficulty - Easy

This round was conducted right after finishing and clearing the technical round at the same place and on the same day.

Interview Preparation Tips

Eligibility criteriaAbove 60 %Wipro Limited interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Database Concepts, Coding problemsTime required to prepare for the interview - 2-3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice atleast 2-3 Coding problems daily so your logic building becomes stronger.
Tip 2 : Exercise problems based on OOPS concepts and others too.
Tip 3 : If you can have your own project built, then it's the major point and will act as a plus point.

Application resume tips for other job seekers

Tip 1 : Your resume should be in standard form, short and simple will be more effective.
Tip 2 : Whatever you have learned, you need to mention it in your resume as that will be your primary source of selection and having project on your resume is important.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Job Portal and was interviewed before Apr 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Solid principles in c#
  • Ans. 

    Solid principles are a set of design principles for writing maintainable and scalable code in C#.

    • Single Responsibility Principle (SRP) - a class should have only one reason to change

    • Open/Closed Principle (OCP) - a class should be open for extension but closed for modification

    • Liskov Substitution Principle (LSP) - derived classes should be substitutable for their base classes

    • Interface Segregation Principle (ISP) - client...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - good company for freshers as well as beginners

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Description of project
  • Ans. 

    The project involved designing and implementing a new network infrastructure for a large corporation.

    • Conducted a thorough analysis of the existing network infrastructure

    • Designed a new network architecture that met the company's needs

    • Implemented the new network infrastructure with minimal disruption to business operations

    • Tested and optimized the new network to ensure optimal performance

    • Provided ongoing support and maint

  • Answered by AI
  • Q2. Your previous experince

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepare for your resume

I applied via Naukri.com and was interviewed in Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. The questions were on front end web development questions with managerial interview

Interview Preparation Tips

Interview preparation tips for other job seekers - The overall experience was good. The interview was on technical and managerial skills based on the experience gained.

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Simple program
  • Q2. I wrote a simple program in C

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about Yourself, some questions related to machine learning, and I was asked more questions to differentiate like differences between ml and ai, python and c, c and java and procedural and functiona...

Interview Preparation Tips

Interview preparation tips for other job seekers - Get a complete grip on your resume and be confident about what you say, If you don't know the answer it is okay to agree that you don't know the answer so that interviewer can ask the next questions.

Infosys Interview FAQs

How many rounds are there in Infosys Senior Software Engineer interview for freshers?
Infosys interview process for freshers usually has 2-3 rounds. The most common rounds in the Infosys interview process for freshers are Technical, Resume Shortlist and Aptitude Test.
How to prepare for Infosys Senior Software Engineer interview for freshers?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Infosys. The most common topics and skills that interviewers at Infosys expect are SDLC, Software Engineering, Java, Angularjs and J2Ee.
What are the top questions asked in Infosys Senior Software Engineer interview for freshers?

Some of the top questions asked at the Infosys Senior Software Engineer interview for freshers -

  1. What is OOP? Write pseudo code to design library management system. What is RDB...read more
  2. What is scope of performance test...read more
  3. Sql query to find the 2nd last student ma...read more
How long is the Infosys Senior Software Engineer interview process?

The duration of Infosys Senior Software Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Infosys Senior Software Engineer Interview Process for Freshers

based on 4 interviews

Interview experience

4
  
Good
View more
Join Infosys Creating the next opportunity for people, businesses & communities
Infosys Senior Software Engineer Salary
based on 4.3k salaries
₹3.7 L/yr - ₹17.8 L/yr
38% less than the average Senior Software Engineer Salary in India
View more details

Infosys Senior Software Engineer Reviews and Ratings

based on 400 reviews

3.6/5

Rating in categories

3.5

Skill development

3.6

Work-life balance

2.7

Salary

4.0

Job security

3.7

Company culture

2.7

Promotions

3.3

Work satisfaction

Explore 400 Reviews and Ratings
Technology Analyst
55.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Systems Engineer
50.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

System Engineer
39.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
30.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate Consultant
28k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Infosys with

TCS

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Accenture

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview