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 Springboot Developer Interview Questions, Process, and Tips

Updated 6 Sep 2024

Top Infosys Springboot Developer Interview Questions and Answers

  • Q1. SpringBoot Annotations configuration linkedlist vs arraylist tomcat vs other application servers AJAX JSON Method overriding Polymorphism Struts Architecture Pom.xml Inte ...read more
  • Q2. What is method overloading and method overriding
  • Q3. Difference between restcontroller and controller?
View all 13 questions

Infosys Springboot Developer Interview Experiences

5 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via LinkedIn and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(8 Questions)

  • Q1. Spring filters explained briefly
  • Ans. 

    Spring filters are components in Spring framework that intercept incoming HTTP requests and outgoing HTTP responses.

    • Filters are used to perform tasks like logging, authentication, authorization, etc.

    • They are configured in the web.xml file or using annotations like @WebFilter.

    • Example: javax.servlet.Filter interface is implemented to create custom filters.

  • Answered by AI
  • Q2. Spring security concepts
  • Q3. Flat map vs map
  • Ans. 

    Flat map is used to flatten nested collections, while map is used to transform elements in a collection.

    • Flat map is used when you have a collection of collections and you want to flatten it into a single collection.

    • Map is used to transform each element in a collection using a given function.

    • Example: Using flatMap to flatten a list of lists - list.stream().flatMap(List::stream).collect(Collectors.toList())

    • Example: Using...

  • Answered by AI
  • Q4. Stream apI in java 8 explanation
  • Ans. 

    Stream API in Java 8 allows for functional-style operations on collections.

    • Stream API provides a way to process collections of objects in a functional way.

    • It supports operations like filter, map, reduce, and collect.

    • Example: List names = Arrays.asList("Alice", "Bob", "Charlie"); Stream stream = names.stream();

    • Example: List numbers = Arrays.asList(1, 2, 3, 4, 5); int sum = numbers.stream().filter(n -> n % 2 == 0).mapToI

  • Answered by AI
  • Q5. Paraller programming concepts in java 8
  • Ans. 

    Java 8 introduced parallel programming concepts like streams, parallel streams, and CompletableFuture.

    • Java 8 introduced streams which allow for functional-style operations on collections.

    • Parallel streams allow for parallel processing of stream elements, improving performance on multi-core processors.

    • CompletableFuture class enables asynchronous programming by representing a future result of an asynchronous computation.

  • Answered by AI
  • Q6. Abstract vs interfcae
  • Ans. 

    Abstract classes can have both abstract and non-abstract methods, while interfaces can only have abstract methods.

    • Abstract classes can have constructors, fields, and methods, while interfaces cannot.

    • A class can implement multiple interfaces but can only extend one abstract class.

    • Abstract classes are used to define a common behavior for subclasses, while interfaces are used to define a contract for classes to implement.

    • ...

  • Answered by AI
  • Q7. SOLID principle explain
  • Ans. 

    SOLID is a set of five design principles to make software designs more understandable, flexible, and maintainable.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subclasses without aff...

  • Answered by AI
  • Q8. Static keyword explain
  • Ans. 

    Static keyword is used in Java to create class-level variables and methods.

    • Static variables are shared among all instances of a class

    • Static methods can be called without creating an instance of the class

    • Static keyword can also be used to create static blocks for initialization

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. What is method overloading and method overriding
  • Ans. 

    Method overloading is having multiple methods in the same class with the same name but different parameters. Method overriding is having a method in a subclass with the same name and parameters as a method in its superclass.

    • Method overloading allows a class to have multiple methods with the same name but different parameters.

    • Method overriding occurs when a subclass provides a specific implementation of a method that is...

  • Answered by AI
  • Q2. Difference between restcontroller and controller?
  • Ans. 

    RestController is specialized version of controller used for RESTful web services in Spring framework.

    • RestController is used to create RESTful web services that return JSON or XML data, while Controller is used to create web pages that return HTML data.

    • RestController annotation is a combination of @Controller and @ResponseBody annotations.

    • RestController is typically used for building RESTful APIs, while Controller is u...

  • Answered by AI
  • Q3. Difference between @bean and @ component
  • Ans. 

    The @Bean annotation is used to define a method that returns an object to be registered as a bean in the Spring application context. The @Component annotation is used to indicate that a class is a Spring component.

    • The @Bean annotation is used on methods within a @Configuration class to define Spring beans.

    • The @Component annotation is used on classes to indicate that they are Spring components.

    • The @Bean annotation allow...

  • Answered by AI
  • Q4. What is bean factory?
  • Ans. 

    Bean factory is a container for managing beans in Spring framework.

    • Bean factory is responsible for creating, managing, and configuring beans in a Spring application.

    • It uses inversion of control (IoC) to manage the beans.

    • Beans are defined in a configuration file (XML or Java) and the bean factory instantiates them.

    • Example: ApplicationContext is a type of bean factory in Spring framework.

  • Answered by AI
  • Q5. What is singleton?
  • Ans. 

    Singleton is a design pattern that restricts the instantiation of a class to only one object.

    • Ensures a class has only one instance and provides a global point of access to it.

    • Commonly used in scenarios where a single instance of a class is needed, such as database connections or thread pools.

    • Implemented by creating a static method to return the same instance of the class every time it is called.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Infosys Springboot Developer interview:
  • Java8
  • Springboot annotations
Interview preparation tips for other job seekers - Prepare all basics for java and java 8 mostly asked question and all annotations that we mostly use in spring-boot are always asked in infosys.

Skills evaluated in this interview

Springboot Developer Interview Questions Asked at Other Companies

asked in Infosys
Q1. SpringBoot Annotations configuration linkedlist vs arraylist tomc ... read more
asked in Infosys
Q2. What is method overloading and method overriding
Q3. @Restcontroller combines @controller and @ResponseBody, simplifyi ... read more
asked in TCS
Q4. Write a Spring boot application to accept two values and generate ... read more
Q5. What is the @Restcontroller in Spring Boot?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed before Aug 2022. There were 2 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 

(7 Questions)

  • Q1. 1. Spring Boot Annotations
  • Q2. Java 8 features
  • Q3. Questions on mysql
  • Q4. Hibernate caching
  • Q5. Linkedlist and arraylist
  • Q6. Hashtable questions
  • Q7. Map interface questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare as per the your skills, be confident.

I applied via Approached by Company and was interviewed in Apr 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 - Technical 

(1 Question)

  • Q1. SpringBoot Annotations configuration linkedlist vs arraylist tomcat vs other application servers AJAX JSON Method overriding Polymorphism Struts Architecture Pom.xml Interceptors in Struts Framework Action...
  • Ans. 

    The question covers various topics related to SpringBoot development.

    • LinkedList vs ArrayList: LinkedList is better for frequent insertions/deletions, ArrayList is better for frequent access.

    • Tomcat vs other application servers: Tomcat is a lightweight server, while others like JBoss are more feature-rich.

    • AJAX JSON: AJAX is used to make asynchronous requests to the server, while JSON is a lightweight data interchange for...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Questions based on agile model sprint testing code review tools why I am leaving my company Projects worked on Roles of yours in Projects.Technologies used.

Interview Preparation Tips

Topics to prepare for Infosys Springboot Developer interview:
  • SpringBoot
  • Application servers
  • OOPS
  • Data Structures
Interview preparation tips for other job seekers - Prepare that framework in which you have thoroughly worked in your organization and basics of the language which you are using.Then the Profile for you are applying prepare for that also with all the questions from architecture to web applications.Check out about the organization which technologies it is using .Discuss your Carrer aspirations/expectations with HR .Be prepared with all the Projects you have done .

Skills evaluated in this interview

Infosys interview questions for designations

 Developer

 (22)

 Software Developer

 (260)

 Java Developer

 (143)

 Salesforce Developer

 (34)

 Web Developer

 (21)

 Angular Developer

 (13)

 Reactjs Developer

 (11)

 Application Developer

 (10)

Round 1 - Technical 

(2 Questions)

  • Q1. 1. Coding questions on sorting
  • Q2. Writing basic SQL queries

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on coding part, java and spring concepts, Sql queries

Get interview-ready with Top Infosys Interview Questions

Interview questions from similar companies

I was interviewed in Apr 2017.

Interview Questionnaire 

2 Questions

  • Q1. Java questions...
  • Q2. Tell me about urself and about us family and all
  • Ans. 

    I am a software developer with a passion for coding and problem-solving. My family is supportive and has always encouraged my career in tech.

    • Experienced software developer

    • Passionate about coding and problem-solving

    • Supportive family that encourages my career in tech

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Easy questions are there
Duration: 1 hour
Total Questions: 90

Round: Group Discussion
Experience: 12 members are there only 9 got selected
Tips: Be confident in urself and specially work in Communication skills
Duration: 15 minutes

Round: Technical Interview
Experience: Asking all the concepts of Java like oops collections threads
Tips: Prepare well on Java

Round: HR Interview
Experience: Everything was Gud but due to my certificate problem I got rejected.. Otherwise everything is good.
Tips: Be confident

College Name: C. V. Raman College of Engineering

I was interviewed before Mar 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was an easy round which went really smooth.

  • Q1. 

    Nth Fibonacci Number Problem Statement

    Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1.

    Input:

    ...
  • Ans. 

    Calculate the Nth Fibonacci number efficiently using dynamic programming.

    • Use dynamic programming to store previously calculated Fibonacci numbers to avoid redundant calculations.

    • Start with base cases F(1) and F(2) as 1, then iteratively calculate F(n) using F(n-1) and F(n-2).

    • Ensure the input N is within the constraints 1 <= N <= 10000.

    • Example: For N = 5, the 5th Fibonacci number is 5 (1, 1, 2, 3, 5).

  • Answered by AI
  • Q2. 

    Prime Numbers Problem Statement

    Given a positive integer N, your task is to determine and return all prime numbers less than or equal to N.

    Input:

    N = 10

    Output:

    2 3 5 7

    Example:

    Input:
    N = 20
    Out...
  • Ans. 

    Implement a function to return all prime numbers less than or equal to a given positive integer N.

    • Create a function that takes a positive integer N as input

    • Iterate from 2 to N and check if each number is prime

    • Use a helper function to determine if a number is prime

    • Return an array of all prime numbers less than or equal to N

  • Answered by AI
  • Q3. What is a merge join in SQL?
  • Ans. 

    A merge join in SQL is a method of combining two sorted datasets by matching corresponding rows based on a specified condition.

    • Merge join is used when joining two large datasets that are already sorted.

    • It is more efficient than other join methods like nested loop join or hash join for sorted datasets.

    • The join condition must be an equality condition.

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.id = table2.i

  • Answered by AI
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

The round went excellent. I really enjoyed it. Just be confident about whatever you answer

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPALarsen & Toubro Infotech (LTI) interview preparation:Topics to prepare for the interview - Database, Basic C/C++, Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Mar 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This round went well. Interview depends on your basic knowledge of C/C++.

  • Q1. 

    Matrix Multiplication Task

    Given two sparse matrices MAT1 and MAT2 of integers with dimensions 'N' x 'M' and 'M' x 'P' respectively, the goal is to determine the resulting matrix produced by their multipl...

  • Ans. 

    Implement a function to multiply two sparse matrices and return the resulting matrix.

    • Create a function that takes two sparse matrices as input and returns the resulting matrix after multiplication

    • Iterate through the non-zero elements of the matrices to perform the multiplication efficiently

    • Handle the edge cases such as empty matrices or matrices with all zero elements

    • Ensure the dimensions of the matrices are compatible

  • Answered by AI
  • Q2. 

    Problem: Count Even or Odd in Array

    Tanmay and Rohit are best buddies. Tanmay gives Rohit a challenge involving an array of N natural numbers. The task is to perform and answer a series of queries on the ...

  • Ans. 

    Count the number of even or odd numbers in a range of an array based on given queries.

    • Create an array to store the input numbers.

    • Iterate through the queries and update or count even/odd numbers based on the query type.

    • Output the count of even or odd numbers for each query of type 1 or 2.

  • Answered by AI
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Typical HR round with behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPALarsen & Toubro Infotech (LTI) interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Sep 2016.

Interview Preparation Tips

Round: Group Discussion
Experience: Interview was scheduled in Grab Job consultancy. In that, a class room, where we all asked to sit and interviewer was sitting in front and asked to speak one by one on the topic traffic situation in Hyderabad.
Tips: Just speak once two to three lines. Don't rush to speak. Take ur time and don't try speak repeatedly.
Duration: 35 minutes

Round: Technical Interview
Experience: System based test. Easy question from java , c, data structure.

Round: HR Interview
Experience: Not held because already we got too late.

Skills: Proficiency In English, Basic Coding
College Name: Medak College of engineering

I was interviewed in Mar 2017.

Interview Questionnaire 

5 Questions

  • Q1. Oops concepts in Java?
  • Ans. 

    Oops concepts in Java

    • Encapsulation - hiding implementation details

    • Inheritance - reusing code and creating parent-child relationships

    • Polymorphism - multiple forms of a method or object

    • Abstraction - creating abstract classes and interfaces

    • Example: Encapsulation - using private variables and public methods

    • Example: Inheritance - creating a subclass that inherits from a superclass

    • Example: Polymorphism - using method overloa...

  • Answered by AI
  • Q2. Altering columns in Databases?
  • Ans. 

    Altering columns in databases involves modifying the structure of a table by adding, deleting or modifying columns.

    • Use ALTER TABLE statement to modify columns

    • Add new columns using ADD COLUMN

    • Delete columns using DROP COLUMN

    • Modify columns using MODIFY COLUMN

    • Changing column data type may result in data loss

  • Answered by AI
  • Q3. Asked some queries in SQL
  • Q4. Reversing a number in java?
  • Ans. 

    Reversing a number in Java

    • Convert the number to a string

    • Use StringBuilder to reverse the string

    • Convert the reversed string back to a number

  • Answered by AI
  • Q5. Extracting words from a line in java?
  • Ans. 

    To extract words from a line in Java, split the line using whitespace as delimiter.

    • Use the split() method of String class

    • Pass the whitespace regex as argument to split() method

    • Iterate over the resulting array to get individual words

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: Started with the question "Tell me about yourself". Asked me about Core Java. Asked to solve some questions related to Java and SQL.
Tips: Be prepared with high knowledge in Java, Data Structures and SQL.

Skills: Java Programming, Data Strrutures, SQL
College Name: IIITDM Jabalpur

Skills evaluated in this interview

Infosys Interview FAQs

How many rounds are there in Infosys Springboot Developer interview?
Infosys interview process usually has 1-2 rounds. The most common rounds in the Infosys interview process are Technical, Resume Shortlist and HR.
How to prepare for Infosys Springboot Developer interview?
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 Spring Boot, Microservices, MySQL, PLSQL and SDLC.
What are the top questions asked in Infosys Springboot Developer interview?

Some of the top questions asked at the Infosys Springboot Developer interview -

  1. SpringBoot Annotations configuration linkedlist vs arraylist tomcat vs other ap...read more
  2. What is method overloading and method overrid...read more
  3. Difference between restcontroller and controll...read more

Tell us how to improve this page.

Infosys Springboot Developer Interview Process

based on 3 interviews

2 Interview rounds

  • Resume Shortlist Round
  • Technical Round
View more
Join Infosys Creating the next opportunity for people, businesses & communities

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
View all
Infosys Springboot Developer Salary
based on 10 salaries
₹4 L/yr - ₹10 L/yr
At par with the average Springboot Developer Salary in India
View more details

Infosys Springboot Developer Reviews and Ratings

based on 2 reviews

3.0/5

Rating in categories

4.0

Skill development

2.2

Work-life balance

1.0

Salary

4.0

Job security

3.4

Company culture

1.2

Promotions

3.8

Work satisfaction

Explore 2 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