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
3.7

based on 37.2k Reviews

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.

Springboot Developer Interview Questions & Answers

user image Anjali Khokher

posted on 14 Oct 2022

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:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
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

 (21)

 Software Developer

 (256)

 Java Developer

 (143)

 Salesforce Developer

 (33)

 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

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
No response

I applied via Walk-in

Round 1 - Technical 

(5 Questions)

  • Q1. Write a Spring boot application to accept two values and generate an XML file.
  • Ans. 

    Create a Spring Boot application to generate an XML file from two input values.

    • Create a Spring Boot project using Spring Initializr

    • Create a REST controller to accept two input values

    • Use JAXB to generate XML from the input values

    • Return the generated XML file as response

  • Answered by AI
  • Q2. Write a program to insert comma after every character.
  • Ans. 

    Program to insert comma after every character in a string.

    • Iterate through each character in the string

    • Append the character and a comma to a new string

    • Handle the last character to avoid adding an extra comma

  • Answered by AI
  • Q3. Find the third max Salary in Oracle.
  • Ans. 

    Use SQL query with ROW_NUMBER() function to find the third max salary in Oracle.

    • Use ROW_NUMBER() function to assign a unique row number to each row based on the salary in descending order.

    • Filter the result where the row number is 3 to get the third max salary.

  • Answered by AI
  • Q4. Microservies design pattern. Explain annotation used in circuit breaker.
  • Ans. 

    Circuit breaker is a design pattern used in microservices to prevent cascading failures.

    • Circuit breaker is used to detect failures and prevent them from causing further issues.

    • It works by wrapping a protected function call in a circuit breaker object.

    • Annotations like @CircuitBreaker in Spring Cloud are used to implement circuit breaker pattern.

    • These annotations allow developers to easily add circuit breaker functionali

  • Answered by AI
  • Q5. JPA vs Hibernate
  • Ans. 

    JPA is a specification while Hibernate is an implementation of JPA.

    • JPA is a Java specification for managing relational data in applications.

    • Hibernate is an ORM framework that implements the JPA specification.

    • Hibernate provides additional features beyond JPA, such as caching and lazy loading.

    • JPA is vendor-neutral, allowing developers to switch between different JPA implementations.

    • Hibernate is a popular choice for JPA i...

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Oct 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 - HR 

(4 Questions)

  • Q1. What is java? What is variable?
  • Ans. 

    Java is a popular programming language used for developing various applications. A variable is a named memory location used to store data.

    • Java is an object-oriented language

    • It is platform-independent

    • Variables in Java have a specific data type

    • Variables can be assigned values and their values can be changed

    • Example: int age = 25; String name = "John";

  • Answered by AI
  • Q2. What is inheritance? types of inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows code reuse and promotes code organization.

    • There are different types of inheritance: single inheritance, multiple inheritance, multilevel inheritance, and hierarchical inheritance.

    • Single inheritance involves a class inheriting from a single base class.

    • Multiple inheritance involves...

  • Answered by AI
  • Q3. 1.Java is a high level language 2.java is a programme is called a set of instructions 3.java run time environment (jre) 4.java is a platform independent. Variable: A variable which is container that some d...
  • Q4. Inheritance; 1.Acquring the properties of parent class to the child class with out changeing the properties of parent class is known as inheritance 2.inheritanc is a is relationship 3.extends keyword is us...
  • Ans. 

    Inheritance is acquiring properties of parent class to child class without changing parent class properties. It is classified into 5 types.

    • Inheritance is a way to reuse code and establish a relationship between classes

    • The 'extends' keyword is used to implement inheritance in Java

    • Examples of inheritance include a 'Car' class inheriting properties from a 'Vehicle' class

    • Single level inheritance involves one parent class a...

  • Answered by AI
Round 3 - Group Discussion 

May I about you ? Which your qualification and which stream

Interview Preparation Tips

Topics to prepare for Tata Group Software Developer interview:
  • Core Java
  • Web Technologies
Interview preparation tips for other job seekers - My strength is quick learner, self motivated, Hard working
My weakness is if any body ask for help me,I never say know.

Skills evaluated in this interview

Java Developer Interview Questions & Answers

Atos user image Yashashri Sandip Vanjari

posted on 26 Feb 2022

I applied via Naukri.com and was interviewed in Jan 2022. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Constructor, Interface, Abstraction, Spring boot, Microservices
  • Q2. What is super keywords? What is Interface? What is constructor? What is use of @Componentscan ?
  • Ans. 

    Answers to common Java Developer interview questions.

    • super keyword is used to call a method or constructor of the parent class

    • Interface is a collection of abstract methods and constants that can be implemented by a class

    • Constructor is a special method used to initialize objects

    • @Componentscan is used to scan for Spring components in a specified package

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. They asked all technical questions again and also had discussion on project
Round 3 - One-on-one 

(1 Question)

  • Q1. We had a discussion on CTC part and last organization.

Interview Preparation Tips

Topics to prepare for Atos Java Developer interview:
  • Core Java
  • Spring Boot
  • Micro-services
Interview preparation tips for other job seekers - Interview was quite easy ,be confident with your skills.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Nov 2021. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. As Tomcat is the default server in Spring Boot, how would you add a new server?
  • Ans. 

    To add a new server in Spring Boot, you need to exclude the default Tomcat dependency and add the desired server dependency.

    • Exclude the Tomcat dependency in the pom.xml file

    • Add the desired server dependency in the pom.xml file

    • Configure the server properties in the application.properties or application.yml file

  • Answered by AI
  • Q2. How can you check if a string is not null without string != null?
  • Ans. 

    Checking if a string is not null without using string != null.

    • Use string.IsNullOrEmpty() method

    • Use string.IsNullOrWhiteSpace() method

    • Use string.Compare() method to compare with an empty string

    • Use string.Length property to check if length is greater than 0

  • Answered by AI
  • Q3. Yoda notation.
  • Ans. 

    Yoda notation is a programming style where the order of a conditional statement is reversed.

    • Used to avoid null pointer exceptions

    • Improves readability for complex conditions

    • Example: if ('red' === color) instead of if (color === 'red')

  • Answered by AI
  • Q4. Convert a List of employees into a Map of Employees with ID as the key.
  • Ans. 

    Convert a List of employees into a Map of Employees with ID as the key.

    • Create an empty Map

    • Iterate through the List of employees

    • For each employee, add a key-value pair to the Map with ID as key and employee object as value

  • Answered by AI
  • Q5. Use Java 8. Collectors.toMap(Employee.getID(), e -> e).

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up your skills on Java 8, Spring Boot, Hibernate, JPA, and Collections framework in Java (including Map).

Skills evaluated in this interview

I applied via Job boards and was interviewed in Sep 2021. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. How to send a file without any internet connection if you are in first floor and your coligue was in second floor?
  • Ans. 

    Use a physical medium like a USB drive or a portable storage device to transfer the file.

    • Physically carry the file on a USB drive or portable storage device.

    • Use a local network connection to transfer the file between the two floors.

    • Utilize Bluetooth or other wireless technologies to transfer the file.

    • If the distance is short, use a physical method like printing the file and physically handing it over.

  • Answered by AI
  • Q2. What is JVM?
  • Ans. 

    JVM stands for Java Virtual Machine. It is an abstract machine that enables a computer to run Java programs.

    • JVM is responsible for interpreting the compiled Java code and executing it on the computer.

    • It provides a platform-independent environment for Java programs to run on different operating systems.

    • JVM has various components like Class Loader, Bytecode Verifier, Just-In-Time Compiler, and Garbage Collector.

    • Examples ...

  • Answered by AI
  • Q3. What are the memories in JDK?
  • Ans. 

    JDK memories are areas of memory used by Java programs to store data and code.

    • JDK memories include heap memory, stack memory, and non-heap memory.

    • Heap memory is used to store objects and is managed by the garbage collector.

    • Stack memory is used to store method calls and local variables.

    • Non-heap memory is used to store class definitions and other data.

    • Examples of non-heap memory include the method area and the permanent ...

  • Answered by AI
  • Q4. Before all these introduce yourself?
  • Q5. Tell me brief idea about your college project?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on basics of laptop and also your technical skills...

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.

People are getting interviews through

based on 4 Infosys interviews
Company Website
Job Portal
50%
25%
25% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Join Infosys Creating the next opportunity for people, businesses & communities

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
View all
Infosys Springboot Developer Salary
based on 10 salaries
₹4 L/yr - ₹10 L/yr
8% more than 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 & Benefits

4.0

Job Security

3.4

Company culture

1.2

Promotions/Appraisal

3.8

Work Satisfaction

Explore 2 Reviews and Ratings
Technology Analyst
56.2k salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
49.7k salaries
unlock blur

₹2.8 L/yr - ₹8 L/yr

System Engineer
39k salaries
unlock blur

₹2.5 L/yr - ₹5.5 L/yr

Technical Lead
30.7k salaries
unlock blur

₹5.2 L/yr - ₹19.5 L/yr

Senior Associate Consultant
27.1k salaries
unlock blur

₹4.3 L/yr - ₹16.8 L/yr

Explore more salaries
Compare Infosys with

TCS

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Accenture

3.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview