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 Technical Specialist Interview Questions and Answers

Updated 2 Oct 2024

7 Interview questions

🔥 Asked by recruiter 10 times
A Technical Specialist was asked
Q. What are the differences between C and C++?
Ans. 

C++ is an extension of C with object-oriented programming features.

  • C++ supports classes and objects while C does not.

  • C++ has better support for function overloading and templates.

  • C++ has a standard library that includes many useful functions.

  • C++ allows for both procedural and object-oriented programming.

  • C++ is generally considered to be more complex than C.

A Technical Specialist was asked
Q. Define the types of OOPS.
Ans. 

There are four types of OOPs: Encapsulation, Inheritance, Polymorphism, and Abstraction.

  • Encapsulation: Hiding the implementation details of an object from the outside world.

  • Inheritance: Creating a new class from an existing class, inheriting all the properties and methods of the parent class.

  • Polymorphism: The ability of an object to take on many forms. It allows objects of different classes to be treated as if the...

Technical Specialist Interview Questions Asked at Other Companies

asked in HCLTech
Q1. What SolarWinds features are you familiar with?
asked in Accenture
Q2. What programming language are you most familiar with,describe a t ... read more
asked in HCLTech
Q3. Which protocol do we use for monitoring network devices?
asked in Birlasoft
Q4. How many years of experience do you have as a Linux System Admini ... read more
asked in HCLTech
Q5. 1. What is HANA replication? 2. What is fencing? 3. What is near ... read more
A Technical Specialist was asked
Q. Write code to process a series of numbers in ascending order, adding 1 to the first number, 2 to the second, and so on.
Ans. 

Add 1 to each number in an ascending series

  • Check if the numbers are in ascending order

  • If yes, start with 1 and add it to the first number

  • Continue adding subsequent numbers with increasing values of 1

A Technical Specialist was asked
Q. What is a lambda function in Python?
Ans. 

Lambda is a shorthand way of defining anonymous functions in Python.

  • Lambda functions are defined using the keyword 'lambda'.

  • They can take any number of arguments, but can only have one expression.

  • Lambda functions are often used as arguments for higher-order functions.

  • Example: lambda x: x**2 defines a function that squares its input.

A Technical Specialist was asked
Q. What is Tulip in Python?
Ans. 

Tulip is a library for asynchronous programming in Python.

  • Tulip provides a set of high-level APIs for writing concurrent code using coroutines and futures.

  • It is included in Python 3.4 and later versions as the asyncio module.

  • Tulip allows for efficient and scalable I/O operations, making it useful for network programming.

  • Example: Using the asyncio module to create a simple HTTP server that handles multiple requests...

A Technical Specialist was asked
Q. Can you develop a data algorithm for previous coding questions?
Ans. 

Develop an algorithm to analyze and solve previous coding questions effectively.

  • Identify common patterns in previous coding questions, e.g., sorting algorithms.

  • Break down problems into smaller, manageable parts, like using divide and conquer.

  • Practice coding problems on platforms like LeetCode or HackerRank.

  • Review solutions and understand different approaches to the same problem.

🔥 Asked by recruiter 2 times
A Technical Specialist was asked
Q. What is data structures
Ans. 

Data structures are ways of organizing and storing data in a computer so that it can be accessed and used efficiently.

  • Data structures are used to manage and manipulate data in computer programs.

  • They can be implemented using arrays, linked lists, trees, graphs, and other techniques.

  • Examples of data structures include stacks, queues, hash tables, and binary search trees.

  • Choosing the right data structure for a partic...

Are these interview questions helpful?

Infosys Technical Specialist Interview Experiences

4 interviews found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

There were 3 coding questions based on dp and graph

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-
Round 1 - Coding Test 

3 dsa problems hard not easy to solve even for 2000 rating on leetcode

Round 2 - One-on-one 

(1 Question)

  • Q1. Oops dbms os dsa

Interview Preparation Tips

Interview preparation tips for other job seekers - study core
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

We had 2 coding questions

I applied via Company Website and was interviewed in May 2022. There was 1 interview round.

Round 1 - Technical 

(7 Questions)

  • Q1. What is lambda in python
  • Ans. 

    Lambda is a shorthand way of defining anonymous functions in Python.

    • Lambda functions are defined using the keyword 'lambda'.

    • They can take any number of arguments, but can only have one expression.

    • Lambda functions are often used as arguments for higher-order functions.

    • Example: lambda x: x**2 defines a function that squares its input.

  • Answered by AI
  • Q2. What is data structures
  • Ans. 

    Data structures are ways of organizing and storing data in a computer so that it can be accessed and used efficiently.

    • Data structures are used to manage and manipulate data in computer programs.

    • They can be implemented using arrays, linked lists, trees, graphs, and other techniques.

    • Examples of data structures include stacks, queues, hash tables, and binary search trees.

    • Choosing the right data structure for a particular ...

  • Answered by AI
  • Q3. Write a code if number is series and in ascending order then number 1 is add and continue with another adding number and so on
  • Ans. 

    Add 1 to each number in an ascending series

    • Check if the numbers are in ascending order

    • If yes, start with 1 and add it to the first number

    • Continue adding subsequent numbers with increasing values of 1

  • Answered by AI
  • Q4. Prepare a data algorithm for previous Coding questions
  • Ans. 

    Develop an algorithm to analyze and solve previous coding questions effectively.

    • Identify common patterns in previous coding questions, e.g., sorting algorithms.

    • Break down problems into smaller, manageable parts, like using divide and conquer.

    • Practice coding problems on platforms like LeetCode or HackerRank.

    • Review solutions and understand different approaches to the same problem.

  • Answered by AI
  • Q5. What is tulip in python
  • Ans. 

    Tulip is a library for asynchronous programming in Python.

    • Tulip provides a set of high-level APIs for writing concurrent code using coroutines and futures.

    • It is included in Python 3.4 and later versions as the asyncio module.

    • Tulip allows for efficient and scalable I/O operations, making it useful for network programming.

    • Example: Using the asyncio module to create a simple HTTP server that handles multiple requests conc...

  • Answered by AI
  • Q6. Define a types of oops
  • Ans. 

    There are four types of OOPs: Encapsulation, Inheritance, Polymorphism, and Abstraction.

    • Encapsulation: Hiding the implementation details of an object from the outside world.

    • Inheritance: Creating a new class from an existing class, inheriting all the properties and methods of the parent class.

    • Polymorphism: The ability of an object to take on many forms. It allows objects of different classes to be treated as if they wer...

  • Answered by AI
  • Q7. Difference in c and c++
  • Ans. 

    C++ is an extension of C with object-oriented programming features.

    • C++ supports classes and objects while C does not.

    • C++ has better support for function overloading and templates.

    • C++ has a standard library that includes many useful functions.

    • C++ allows for both procedural and object-oriented programming.

    • C++ is generally considered to be more complex than C.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn all basic questions from a language choose in front of technical and be confident with your answers and also prepare for introducing with self and what problems faces in real life and why to choose Infosys and why we hire you

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

Consultant Interview Questions & Answers

Capgemini user image Triveni Dhakate

posted on 26 Mar 2022

I applied via Company Website and was interviewed before Mar 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Based on sql server. Joins, cross join with table scenario.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was very easy interview.
Be confident on what you are telling.

I applied via Recruitment Consulltant and was interviewed before Oct 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. Framework skills with architecture workflow
  • Ans. 

    Framework skills are essential for efficient architecture workflow.

    • Framework skills help in understanding the overall structure of the system.

    • They aid in identifying the key components and their interactions.

    • Frameworks provide a common language for communication between team members.

    • Examples of frameworks include Spring, Hibernate, and AngularJS.

  • Answered by AI
  • Q2. Programming skills along with POM model

Interview Preparation Tips

Interview preparation tips for other job seekers - Need strong technical skill in Framework level and also architecture level.
Programming knowledge is must

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

Interview Questionnaire 

2 Questions

  • Q1. Related to Functional testing
  • Q2. General Discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Try hard and never loose hope. Prepare well on your technical skills and attend interview without fail. Hardwork never fails. All the best for your future.
Are these interview questions helpful?

I applied via Naukri.com and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Standard Coding questing

Round 2 - Technical 

(1 Question)

  • Q1. Core java, java 8 features, collections, Exception handling

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare for Datastructures and Algorithms .

I appeared for an interview before May 2021.

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 

Quant, reasoning, English

Round 3 - Technical 

(1 Question)

  • Q1. Java/C language questions
Round 4 - HR 

(1 Question)

  • Q1. About your self questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and be yourself
Respect time of others

I applied via Naukri.com and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me any module build in last project
  • Q2. What CI/CD methods used for deployment
  • Ans. 

    We use Jenkins for CI/CD and deploy to AWS using CloudFormation.

    • Jenkins is used for continuous integration and continuous deployment

    • AWS CloudFormation is used for infrastructure as code

    • We have automated tests that run during the CI/CD process

    • We use Git for version control

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and answer information as correct as you can.

Skills evaluated in this interview

Infosys Interview FAQs

How many rounds are there in Infosys Technical Specialist interview?
Infosys interview process usually has 1-2 rounds. The most common rounds in the Infosys interview process are Coding Test, Resume Shortlist and Technical.
What are the top questions asked in Infosys Technical Specialist interview?

Some of the top questions asked at the Infosys Technical Specialist interview -

  1. Write a code if number is series and in ascending order then number 1 is add an...read more
  2. Prepare a data algorithm for previous Coding questi...read more
  3. What is lambda in pyt...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.6/5

based on 5 interview experiences

Difficulty level

Moderate 100%

Duration

2-4 weeks 100%
View more
Join Infosys Creating the next opportunity for people, businesses & communities
Infosys Technical Specialist Salary
based on 238 salaries
₹5.3 L/yr - ₹12.4 L/yr
49% less than the average Technical Specialist Salary in India
View more details

Infosys Technical Specialist Reviews and Ratings

based on 17 reviews

3.1/5

Rating in categories

3.8

Skill development

3.2

Work-life balance

3.3

Salary

3.2

Job security

3.6

Company culture

3.2

Promotions

3.5

Work satisfaction

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