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.6

based on 38.3k Reviews

Filter interviews by

Infosys Java Technical Lead Interview Questions and Answers

Updated 24 Sep 2024

Infosys Java Technical Lead Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Find 2nd max element.
  • Ans. 

    Find 2nd max element in an array of strings.

    • Sort the array in descending order

    • Return the element at index 1

  • Answered by AI
  • Q2. Sort strings on the basis of city.
  • Ans. 

    Sort strings based on city names.

    • Use Arrays.sort() method with a custom Comparator to sort strings based on city names.

    • Create a Comparator that compares the city names of two strings.

    • Example: String[] cities = {"New York", "London", "Paris"};

    • Example: Arrays.sort(cities, (a, b) -> a.compareTo(b));

  • Answered by AI
Round 2 - Behavioral 

(2 Questions)

  • Q1. How did you handle team conficts.
  • Ans. 

    I addressed team conflicts by promoting open communication, active listening, and facilitating constructive discussions.

    • Encouraged team members to express their concerns and viewpoints openly

    • Acted as a mediator to resolve conflicts and find common ground

    • Implemented team-building activities to improve collaboration and trust

    • Provided constructive feedback and guidance to help team members work through conflicts

  • Answered by AI
  • Q2. A struggle you would like to tell.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for technical round, managerial round focuses on team ability and design.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How we can improve microservice security
  • Ans. 

    Improving microservice security involves implementing authentication, authorization, encryption, and monitoring.

    • Implement strong authentication mechanisms such as OAuth or JWT

    • Use role-based access control for authorization

    • Encrypt sensitive data in transit and at rest

    • Implement monitoring and logging to detect and respond to security incidents

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - interviewers are rude showing no interest or respect to answers... they dont even know what to ask and how to ask ...they think they know everything correct

Skills evaluated in this interview

Java Technical Lead Interview Questions Asked at Other Companies

asked in Quess
Q1. Internals of JVM. Where is class , variables , objects stored in ... read more
asked in Axis Bank
Q2. Exceptions code snippets to guess output. How to convert checked ... read more
Q3. What is streams and how to get distinct objects Whats are convent ... read more
asked in Coforge
Q4. what is the difference between stream and parallel stream
asked in Quess
Q5. Design patterns used in Microservice architecture. API Gateway

Interview questions from similar companies

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

I was interviewed in Dec 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Spring Boot, Microservice Basic
Round 2 - Technical 

(1 Question)

  • Q1. RestAPI implementation
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Referral and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Use of static in main function
  • Ans. 

    Using static in main function allows it to be called without creating an instance of the class.

    • Static in main function allows it to be called directly without creating an object of the class.

    • Static methods can be called using the class name itself, without creating an object.

    • Example: public static void main(String[] args) { }

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Data Structures, logical questions

Round 2 - Technical 

(1 Question)

  • Q1. Springboot, microservices, Data sources,architecture design
Round 3 - HR 

(1 Question)

  • Q1. General HR disccussion

I applied via Recruitment Consultant and was interviewed in Oct 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What is the Controller Advice?
  • Ans. 

    Controller Advice is a mechanism in Spring MVC to handle exceptions globally.

    • It is used to handle exceptions across multiple controllers.

    • It can be used to add common data to the model.

    • It can be used to customize the response status code and message.

    • It can be used to redirect to a custom error page.

  • Answered by AI
  • Q2. Why we need 2 way SSL?
  • Ans. 

    2 way SSL is needed for mutual authentication between client and server.

    • 2 way SSL ensures that both client and server are authenticated

    • It provides an extra layer of security by verifying the identity of both parties

    • It is commonly used in financial transactions, healthcare, and government applications

  • Answered by AI
  • Q3. What is Decorator design pattern
  • Ans. 

    Decorator pattern adds behavior to an object dynamically without affecting its existing behavior.

    • It is a structural pattern

    • It involves a component interface, concrete component, decorator interface, and concrete decorator

    • Decorators wrap around components to add new behavior

    • It allows for flexible and dynamic behavior modification

    • Example: Java I/O streams use decorator pattern

  • Answered by AI
  • Q4. How to group by in streams
  • Ans. 

    Grouping by in streams in Java

    • Use the 'groupingBy' method from the 'Collectors' class

    • Pass a lambda expression to specify the grouping criteria

    • The result is a Map with the grouping criteria as keys and the grouped elements as values

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It’s was good experience. Interviewer was technically sound. So don’t try to fool him/her. As it’s for a lead position somemdesigning question and leading attitude check.

This was second round.
Waiting for feedback

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Related to core java and spring security
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - Coding Test 

A sequence was provided: 4181, 2684, 1597, 987, 610.
first 2 are given and write code for other value calculation using java 8

The second question required writing a reverse of a palindrome using both Java 8 streams. I was able to successfully write both and clear the first round.

Round 2 - Technical 

(6 Questions)

  • Q1. Interviewer was himself not knowing anything as it was walkin drive he was sitting infront of me and checking questions on phone Introduction that he inturrepted in between when I was introducing myself
  • Q2. What are the features of Java 17, specifically related to sealed classes, including their syntax and necessity, along with the potential errors encountered when invoking a sealed class?
  • Ans. 

    Java 17 introduces sealed classes to restrict inheritance and improve code maintainability.

    • Sealed classes are declared using the 'sealed' keyword followed by the permitted subclasses.

    • Subclasses of a sealed class must be either final or sealed themselves.

    • Errors may occur when trying to extend a sealed class with a non-permitted subclass.

  • Answered by AI
  • Q3. Java 8 feathers stream api, functional interface, Intermittent operator ,Ternary operator, Prediction,Bi predicate. Answered all successfully
  • Q4. Draw low level design of implementation of notify me if item is back in stock in a ecommerce application
  • Ans. 

    Implementation of 'notify me if item is back in stock' feature in an ecommerce application

    • Create a database table to store user notifications for out-of-stock items

    • Implement a service to check item availability and send notifications to subscribed users

    • Provide a user interface for users to subscribe to notifications for specific items

  • Answered by AI
  • Q5. All design patterns which I know. Asked me to implement adapter pattern on paper
  • Q6. Then given a problem that concurrent way perform operation on excell to decrease the response time

Interview Preparation Tips

Interview preparation tips for other job seekers - I always suggest staying away from these companies commonly referred to as WITCH (Wipro, Infosys, TCS, Cognizant, HCL). You will rarely encounter good interviewers there unless there is an extreme necessity. Interview was judging me on the basis of syntex by seeing in his phone. How can everyone write each and everything on copy. For the low level design first time in my 6 years carrier someone asked to design without using kafka or any other library like spring boot to achieve that add in reminder list problem 😂. At first it was my bad after holding a offer of almost 27 lakh I somehow agreed for giving interview. Second thing I also know that after Even clearing they cannot afford 30LPA which I asked. I just went there because from last 6.5 year I have never attended any walking or face to face interview so was curious for it. Currently also working with somewhat premium product development company only. My experience was very bad. May be it can get vary person to person.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What are intermediate and terminal operations
  • Ans. 

    Intermediate operations transform the elements of a stream, while terminal operations produce a result or side-effect.

    • Intermediate operations include map, filter, sorted, distinct, etc.

    • Terminal operations include forEach, collect, reduce, count, etc.

    • Intermediate operations are lazy and do not execute until a terminal operation is called.

    • Terminal operations trigger the processing of the stream and produce a result.

  • Answered by AI
  • Q2. Predefined functional interface
  • Q3. Ways to create Thread
  • Ans. 

    Ways to create Thread in Java

    • Extending the Thread class

    • Implementing the Runnable interface

    • Using Executor framework

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was moderate level of interview
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

The first round was an interview conducted with a GENAI virtual bot.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Internal architecture of Spring boot, how enable autoconfiguration works
  • Ans. 

    Spring Boot uses autoconfiguration to automatically configure the Spring application based on dependencies and properties.

    • Spring Boot autoconfiguration is achieved through @EnableAutoConfiguration annotation

    • Autoconfiguration classes are located in the org.springframework.boot.autoconfigure package

    • Autoconfiguration classes are conditionally applied based on the presence of specific classes or properties

  • Answered by AI
  • Q2. Questions mostly on microservices and coding question on restTemplate

Interview Preparation Tips

Topics to prepare for Wipro Senior Java Developer interview:
  • Java
  • Spring Boot
  • Microservices
  • REST API

Infosys Interview FAQs

How many rounds are there in Infosys Java Technical Lead interview?
Infosys interview process usually has 1-2 rounds. The most common rounds in the Infosys interview process are Technical and Behavioral.
How to prepare for Infosys Java Technical Lead 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 Java, Spring Boot, Microservices, J2Ee and Hibernate.
What are the top questions asked in Infosys Java Technical Lead interview?

Some of the top questions asked at the Infosys Java Technical Lead interview -

  1. how we can improve microservice secur...read more
  2. Sort strings on the basis of ci...read more
  3. Find 2nd max eleme...read more

Tell us how to improve this page.

Infosys Java Technical Lead Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more
Join Infosys Creating the next opportunity for people, businesses & communities
Infosys Java Technical Lead Salary
based on 21 salaries
₹8.1 L/yr - ₹22 L/yr
29% less than the average Java Technical Lead Salary in India
View more details

Infosys Java Technical Lead Reviews and Ratings

based on 2 reviews

3.8/5

Rating in categories

4.0

Skill development

3.8

Work-life balance

3.8

Salary

4.0

Job security

4.0

Company culture

3.8

Promotions

3.8

Work satisfaction

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

₹3 L/yr - ₹11 L/yr

Senior Systems Engineer
50.2k salaries
unlock blur

₹2.8 L/yr - ₹8 L/yr

System Engineer
39.3k salaries
unlock blur

₹2.5 L/yr - ₹5.3 L/yr

Technical Lead
30.7k salaries
unlock blur

₹5.2 L/yr - ₹19.5 L/yr

Senior Associate Consultant
27.5k salaries
unlock blur

₹4.5 L/yr - ₹16.6 L/yr

Explore more salaries
Compare Infosys with

TCS

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Accenture

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