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 Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Infosys Team Member/Team Leader Interview Questions and Answers

Updated 27 Jun 2021

9 Interview questions

A Team Member/Team Leader was asked
Q. If a client complains after a fresh deployment that the application has become slow, what approaches will you follow to find the issue, and how will you manage the client?
Ans. 

To address client complaint of slow application post-deployment, I would follow a systematic approach to identify and resolve the issue while keeping the client informed.

  • First, I would gather more information from the client about the specific areas of the application that are slow and the frequency of the issue.

  • Next, I would review the application logs to identify any errors or performance issues.

  • I would also che...

A Team Member/Team Leader was asked
Q. If there is no template for a component, will it be rendered on the UI?
Ans. 

No, it will not get rendered on UI without a template.

  • A component needs a template to be rendered on UI.

  • Without a template, the component will not be visible on the UI.

  • The template defines the structure and content of the component.

  • If there is no template, the component will not have any visual representation.

Team Member/Team Leader Interview Questions Asked at Other Companies

asked in Xoriant
Q1. Write a program to print even and odd numbers up to 10 using two ... read more
asked in Infosys
Q2. If a client complains after a fresh deployment that the applicati ... read more
asked in Infosys
Q3. What is SPA? How to load another module.what is lazy loading
Q4. What is an abstract class, and where have you used it in your exp ... read more
asked in Infosys
Q5. How would you pass data between components if they don't share an ... read more
A Team Member/Team Leader was asked
Q. Can you use script tags in Angular?
Ans. 

Yes, script tags can be used in Angular

  • Script tags can be used to load external scripts in Angular

  • Angular also provides a way to load scripts dynamically using the ScriptService

  • However, it is recommended to use Angular's built-in mechanisms for loading scripts

A Team Member/Team Leader was asked
Q. How would you pass data between components if they don't share any relationship?
Ans. 

Data can be passed between unrelated components using various techniques like events, state management, or context APIs.

  • Use a global state management library (e.g., Redux) to store shared data.

  • Implement event-driven architecture where components emit and listen for events.

  • Utilize context APIs in frameworks like React to provide data to components without direct relationships.

  • Leverage local storage or session stora...

A Team Member/Team Leader was asked
Q. What are the garbage collection methods in JAVA?
Ans. 

Garbage collection is an automatic memory management process in Java.

  • Garbage collection is the process of freeing up memory by removing objects that are no longer in use.

  • Java has a built-in garbage collector that runs automatically in the background.

  • The garbage collector uses different algorithms to determine which objects are no longer in use and can be removed.

  • Some of the commonly used garbage collection algorit...

A Team Member/Team Leader was asked
Q. How is collision handled in JAVA 8?
Ans. 

JAVA 8 handles collisions using separate chaining and open addressing.

  • Separate chaining uses linked lists to store multiple values at the same index in the hash table.

  • Open addressing uses a probing sequence to find the next available slot in the hash table.

  • JAVA 8 also introduced the ConcurrentHashMap class which uses a combination of both techniques for better performance.

  • Example: HashMap map = ne...

A Team Member/Team Leader was asked
Q. What is SPA? How to load another module.what is lazy loading
Ans. 

SPA stands for Single Page Application. Lazy loading is a technique to load modules on demand.

  • SPA is a web application that loads a single HTML page and dynamically updates the content as the user interacts with it.

  • To load another module in SPA, we can use lazy loading technique which loads the module only when it is required.

  • Lazy loading helps in reducing the initial load time of the application and improves the ...

Are these interview questions helpful?
A Team Member/Team Leader was asked
Q. What is dynamic form? FormArray ?
Ans. 

Dynamic form is a form that can be modified at runtime. FormArray is an array of form controls.

  • Dynamic form allows adding or removing form fields based on user input or other conditions.

  • FormArray is used to manage an array of form controls.

  • Example: A form where users can add multiple phone numbers or email addresses.

  • Example: A form where users can add or remove items from a shopping cart.

A Team Member/Team Leader was asked
Q. What is observable and promises.how asymc.await works
Ans. 

Observable is a pattern for handling asynchronous data streams. Promises are a way to handle asynchronous operations.

  • Observables allow for subscribing to a stream of data and reacting to each event as it comes in.

  • Promises represent a value that may not be available yet, but will be resolved at some point in the future.

  • async/await is a way to write asynchronous code that looks synchronous, by pausing execution unti...

Infosys Team Member/Team Leader Interview Experiences

4 interviews found

I applied via Referral and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. What is dynamic form? FormArray ?
  • Ans. 

    Dynamic form is a form that can be modified at runtime. FormArray is an array of form controls.

    • Dynamic form allows adding or removing form fields based on user input or other conditions.

    • FormArray is used to manage an array of form controls.

    • Example: A form where users can add multiple phone numbers or email addresses.

    • Example: A form where users can add or remove items from a shopping cart.

  • Answered by AI
  • Q2. If a client complaints after fresh deployment that application has become slow.What all approaches you will follow and how you ll find the issue. How you ll manage the client
  • Ans. 

    To address client complaint of slow application post-deployment, I would follow a systematic approach to identify and resolve the issue while keeping the client informed.

    • First, I would gather more information from the client about the specific areas of the application that are slow and the frequency of the issue.

    • Next, I would review the application logs to identify any errors or performance issues.

    • I would also check th...

  • Answered by AI
  • Q3. What is SPA? How to load another module.what is lazy loading
  • Q4. How you ll pass data in btw comments if they dnt sharr nay relationship.
  • Ans. 

    Data can be passed between unrelated components using various techniques like events, state management, or context APIs.

    • Use a global state management library (e.g., Redux) to store shared data.

    • Implement event-driven architecture where components emit and listen for events.

    • Utilize context APIs in frameworks like React to provide data to components without direct relationships.

    • Leverage local storage or session storage fo...

  • Answered by AI
  • Q5. What is observable and promises.how asymc.await works
  • Ans. 

    Observable is a pattern for handling asynchronous data streams. Promises are a way to handle asynchronous operations.

    • Observables allow for subscribing to a stream of data and reacting to each event as it comes in.

    • Promises represent a value that may not be available yet, but will be resolved at some point in the future.

    • async/await is a way to write asynchronous code that looks synchronous, by pausing execution until a p...

  • Answered by AI
  • Q6. Can you use script tag in angular
  • Ans. 

    Yes, script tags can be used in Angular

    • Script tags can be used to load external scripts in Angular

    • Angular also provides a way to load scripts dynamically using the ScriptService

    • However, it is recommended to use Angular's built-in mechanisms for loading scripts

  • Answered by AI
  • Q7. Reactive form module
  • Q8. If there is no template to component will it get rendered on ui
  • Ans. 

    No, it will not get rendered on UI without a template.

    • A component needs a template to be rendered on UI.

    • Without a template, the component will not be visible on the UI.

    • The template defines the structure and content of the component.

    • If there is no template, the component will not have any visual representation.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Level of Interview was easy .If you hav worked on angular you easily crack it.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Feb 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. 1) basic core java questions 2)spring boot questions
  • Q2. 3)Agile Scrum framework questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through common java interview questions and you can easily crack it. They have only 1 techincal round.

I applied via LinkedIn and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. SQL server
  • Q2. Indexing
  • Q3. Cluster
  • Q4. Non cluster
  • Q5. Joins

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confirmed on answer

I applied via Recruitment Consultant and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. How the collision is handled in JAVA 8
  • Ans. 

    JAVA 8 handles collisions using separate chaining and open addressing.

    • Separate chaining uses linked lists to store multiple values at the same index in the hash table.

    • Open addressing uses a probing sequence to find the next available slot in the hash table.

    • JAVA 8 also introduced the ConcurrentHashMap class which uses a combination of both techniques for better performance.

    • Example: HashMap map = new Has...

  • Answered by AI
  • Q2. What is garbage collection methods in JAVA
  • Ans. 

    Garbage collection is an automatic memory management process in Java.

    • Garbage collection is the process of freeing up memory by removing objects that are no longer in use.

    • Java has a built-in garbage collector that runs automatically in the background.

    • The garbage collector uses different algorithms to determine which objects are no longer in use and can be removed.

    • Some of the commonly used garbage collection algorithms i...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - JAVA with 5+ years of experience should know about JAVA memory and Data Structures

Skills evaluated in this interview

What people are saying about Infosys

View All
yedabhai
1w
works at
Hyperpure
Are we not even safe in our own workplaces?
An Infosys employee was arrested for secretly recording women in the office washroom. Over 30 videos were found on his phone. This isn't just shocking, it's horrifying. Offices are meant to be safe, respectful spaces. 🙎 When will companies truly prioritize safety and surveillance in all corners, not just the visible ones?
FeedCard Image
Got a question about Infosys?
Ask anonymously on communities.

Interview questions from similar companies

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

Interview Questionnaire 

3 Questions

  • Q1. What is your role in team?
  • Q2. How many years experience as team leader?
  • Q3. What exactly you do as team leader in your team?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and explain the role. Be confident of what you speak.

I applied via Recruitment Consultant and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Starting from opps concept ,then java 8 ,spring Boot ,restapi,microservices

Interview Preparation Tips

Interview preparation tips for other job seekers - 2 technical round by Accenture,one technical from client,2 manager round

I applied via Naukri.com and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical questions : 1)oops concepts 2)plsql cursors, triggers, procedures 3)quick sort algorithm

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with your resume. None of the questions were asked out of resume.
Are these interview questions helpful?

I applied via Campus Placement and was interviewed before Nov 2021. 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 

(2 Questions)

  • Q1. Python and Java questions
  • Q2. Oops basic interview questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Easily we can Just Practice basic interview questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Dec 2021. 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 - Coding Test 

There are 2section of exam i.e English and Data structure

Round 3 - Mind analysis games 

(2 Questions)

  • Q1. First round interview is technical interview and managerial interviews which is not that tough. Do all the FaQ on your projects and if dont know any one of question answer then dont worry simply say it a...
  • Q2. 2nd round is HR interview .

Interview Preparation Tips

Interview preparation tips for other job seekers - In HR interview they ask about introduction, strength and weakness , willing to work on teams or not, some scenario based question

I applied via Company Website and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself.what qualities a leader should have. Which subject was hard for you and how did you manage to overcome it.if a person in your team is not working properly how will you deal with it

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be prepare for your interview... you always know about the company and job profile be comfortable in your answer.. prepare your answers . always be professional

Infosys Interview FAQs

What are the top questions asked in Infosys Team Member/Team Leader interview?

Some of the top questions asked at the Infosys Team Member/Team Leader interview -

  1. If a client complaints after fresh deployment that application has become slow....read more
  2. What is SPA? How to load another module.what is lazy load...read more
  3. How you ll pass data in btw comments if they dnt sharr nay relationsh...read more

Tell us how to improve this page.

Join Infosys Creating the next opportunity for people, businesses & communities

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.7
 • 8.7k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.7
 • 3.4k Interviews
LTIMindtree Interview Questions
3.7
 • 3k Interviews
IBM Interview Questions
3.9
 • 2.5k Interviews
View all

Infosys Team Member/Team Leader Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

4.9

Skill development

4.9

Work-life balance

4.9

Salary

4.9

Job security

4.9

Company culture

4.9

Promotions

4.9

Work satisfaction

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

₹4.8 L/yr - ₹10 L/yr

Senior Systems Engineer
53.8k salaries
unlock blur

₹2.5 L/yr - ₹6.3 L/yr

Technical Lead
35.1k salaries
unlock blur

₹9.4 L/yr - ₹16.4 L/yr

System Engineer
32.5k salaries
unlock blur

₹2.4 L/yr - ₹5.3 L/yr

Senior Associate Consultant
31.3k salaries
unlock blur

₹8.2 L/yr - ₹15 L/yr

Explore more salaries
Compare Infosys with

TCS

3.6
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Accenture

3.7
Compare
write
Share an Interview