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 Operations Executive Interview Questions and Answers

Updated 14 May 2025

99 Interview questions

An Operations Executive was asked
Q. Can instances of an abstract class be created?
Ans. 

No, instances of abstract class cannot be created.

  • Abstract classes are incomplete and cannot be instantiated.

  • They are meant to be extended by subclasses that provide concrete implementations.

  • Abstract classes can have abstract methods that must be implemented by the subclass.

  • Example: abstract class Animal cannot be instantiated, but subclasses like Dog and Cat can be.

An Operations Executive was asked
Q. Why doesn't Java support pointers?
Ans. 

Java doesn't support pointers for safety and security reasons.

  • Java uses references instead of pointers to avoid memory leaks and null pointer exceptions.

  • Pointers can be used to access memory directly, which can be a security risk.

  • Java's garbage collector manages memory automatically, making pointers unnecessary.

  • Java's design philosophy prioritizes safety and security over low-level control.

  • Pointers can also make c...

Operations Executive Interview Questions Asked at Other Companies

asked in Flipkart
Q1. What is the electric current? How is works ?
asked in AmbitionBox
Q2. Write an email to a client informing them that the campaign deliv ... read more
asked in Infosys
Q3. What is OOPs? Difference between Overloading and overriding, what ... read more
Q4. How can you rescue attempted and rejected parcels?
Q5. You need 10 delivery personnel per day for operations, but today ... read more
An Operations Executive was asked
Q. What are the different ways to swap two numbers?
Ans. 

Swapping numbers can be done using a temporary variable, arithmetic operations, or XOR bitwise operator.

  • Using a temporary variable: temp = a; a = b; b = temp;

  • Using arithmetic operations: a = a + b; b = a - b; a = a - b;

  • Using XOR bitwise operator: a = a ^ b; b = a ^ b; a = a ^ b;

An Operations Executive was asked
Q. Why is the Java language platform-independent?
Ans. 

Java is platform-independent due to its bytecode and virtual machine architecture.

  • Java code is compiled into bytecode, which can run on any platform with a Java Virtual Machine (JVM).

  • JVM acts as an interpreter, translating bytecode into machine code specific to the platform it is running on.

  • This allows Java programs to be written once and run on any platform with a JVM installed.

  • For example, a Java program written...

An Operations Executive was asked
Q. What are inheritance and polymorphism?
Ans. 

Inheritance is a mechanism where a new class is derived from an existing class. Polymorphism is the ability of an object to take on many forms.

  • Inheritance allows for code reuse and promotes a hierarchical organization of code.

  • Polymorphism allows for flexibility in code design and enables objects to be used in multiple contexts.

  • Example of inheritance: A class 'Car' can be inherited by a class 'SUV' which adds addit...

An Operations Executive was asked
Q. What are the five basic concepts of OOPS?
Ans. 

5 basic concepts of OOPs are encapsulation, inheritance, polymorphism, abstraction, and class.

  • Encapsulation: bundling of data and methods that manipulate the data within a single unit.

  • Inheritance: ability of a class to inherit properties and characteristics from its parent class.

  • Polymorphism: ability of objects to take on multiple forms or have multiple behaviors.

  • Abstraction: hiding of complex implementation detai...

An Operations Executive was asked
Q. What are the 5 basic concepts of OOPS?
Ans. 

The 5 basic concepts of OOP are encapsulation, inheritance, polymorphism, abstraction, and class.

  • Encapsulation: bundling of data and methods that manipulate the data within a single unit.

  • Inheritance: creating new classes from existing ones, inheriting their properties and methods.

  • Polymorphism: ability of objects to take on multiple forms or behaviors.

  • Abstraction: hiding the complexity of a system and only showing ...

Are these interview questions helpful?
🔥 Asked by recruiter 12 times
An Operations Executive was asked
Q. What is inheritance?
Ans. 

Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

  • Inheritance allows for code reuse and promotes a hierarchical organization of classes.

  • The existing class is called the superclass or parent class, while the new class is called the subclass or child class.

  • The subclass inherits all the properties and methods of the superclass, and can...

An Operations Executive was asked
Q. What are the five core concepts of OOP?
Ans. 

The 5 concepts of OOP are encapsulation, inheritance, polymorphism, abstraction, and class.

  • Encapsulation: bundling of data and methods that manipulate the data within a single unit

  • Inheritance: ability of a class to inherit properties and characteristics from a parent class

  • Polymorphism: ability of objects to take on multiple forms or have multiple behaviors

  • Abstraction: hiding of complex implementation details and p...

🔥 Asked by recruiter 3 times
An Operations Executive was asked
Q. What is the difference between DBMS and RDBMS?
Ans. 

DBMS is a software system to manage databases while RDBMS is a type of DBMS that stores data in tables with relations.

  • DBMS stands for Database Management System while RDBMS stands for Relational Database Management System.

  • DBMS can manage any type of database while RDBMS is specifically designed to manage relational databases.

  • DBMS does not enforce any specific data model while RDBMS enforces the relational data mod...

Infosys Operations Executive Interview Experiences

165 interviews found

Operations Executive Interview Questions & Answers

user image Raksha Ghevadekar

posted on 30 Nov 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude test is based on quantitative apptitude, English and computer

Round 2 - Technical 

(2 Questions)

  • Q1. Mostly based on language you know
  • Q2. Gave 1 small code to write
  • Ans. 

    Write a small code to reverse a string in an array of strings

    • Iterate through each string in the array

    • Use built-in functions or write a custom function to reverse each string

    • Store the reversed strings back in the array

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    Experienced Operations Executive with a proven track record of optimizing processes and driving efficiency.

    • Over 10 years of experience in operations management

    • Successfully implemented cost-saving initiatives resulting in 20% reduction in expenses

    • Led cross-functional teams to improve workflow and increase productivity

    • Strong analytical skills and ability to identify areas for improvement

    • Excellent communication and leader...

  • Answered by AI
  • Q2. Why should I hire you

Operations Executive Interview Questions & Answers

user image Hrushikesh Sawant

posted on 27 Sep 2024

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

(2 Questions)

  • Q1. Explain OOPS concepts
  • Ans. 

    OOPS concepts refer to Object-Oriented Programming concepts which include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: Parent class 'Animal' and child class 'Dog'.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: Class 'Car' with private variables and public methods.

    • Polym...

  • Answered by AI
  • Q2. Explain exceptions
  • Ans. 

    Exceptions are unexpected events that disrupt the normal flow of operations.

    • Exceptions are errors or unusual conditions that occur during the execution of a program.

    • They can be caused by various factors such as invalid input, hardware failures, or network issues.

    • Handling exceptions involves using try-catch blocks to catch and handle the errors gracefully.

    • Examples of exceptions include NullPointerException, ArrayIndexOu...

  • Answered by AI

Operations Executive Interview Questions & Answers

user image Kamala Rambabu

posted on 25 Feb 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Let take x and y, x have 3 fruits and total ofc nd y is then how many fruits does y have?

Round 2 - HR 

(2 Questions)

  • Q1. Self introduction
  • Ans. 

    Dynamic Operations Executive with a proven track record in optimizing processes and enhancing efficiency across various sectors.

    • Over 5 years of experience in operations management, focusing on process improvement.

    • Successfully led a project that reduced operational costs by 20% through lean methodologies.

    • Skilled in data analysis and using metrics to drive decision-making.

    • Collaborated with cross-functional teams to strea...

  • Answered by AI
  • Q2. Nothing
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Logical Reasoning, work and Time

Round 2 - HR 

(2 Questions)

  • Q1. Tell me about your self
  • Ans. 

    Experienced Operations Executive with a proven track record in optimizing processes and driving efficiency.

    • Over 10 years of experience in operations management

    • Successfully implemented cost-saving initiatives resulting in a 20% reduction in expenses

    • Led cross-functional teams to streamline workflows and improve productivity

    • Strong analytical skills and ability to identify areas for improvement

  • Answered by AI
  • Q2. Why would you join this company
  • Ans. 

    I would join this company because of its strong reputation in the industry, opportunities for growth, and innovative approach to operations.

    • Strong reputation in the industry

    • Opportunities for growth

    • Innovative approach to operations

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - apt question and basic English knowledge
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic aptitude including English puzzle reasoning

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

60mins , It was easy .

Round 2 - One-on-one 

(1 Question)

  • Q1. About Java and interface, python
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Walk-in and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Logical Reasoning and Scenarios

Round 2 - Group Discussion 

GDP growth and its impact

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

30 minutes asked about problem solving

Round 2 - HR 

(2 Questions)

  • Q1. Self Introduction
  • Q2. Programming questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Aug 2023. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Assignment 

Online Assessment round

Round 3 - Technical 

(4 Questions)

  • Q1. Coding and problem solving
  • Q2. Which programming language do you use regularly in your work?
  • Ans. 

    I regularly use Python in my work as an Operations Executive.

    • Python is versatile and easy to learn, making it ideal for automating tasks and data analysis.

    • I use Python for scripting, data manipulation, and creating tools to streamline operations.

    • Some examples of Python libraries I frequently use are Pandas, NumPy, and Matplotlib.

  • Answered by AI
  • Q3. How many programing language do you know?
  • Ans. 

    I am proficient in 5 programming languages including Java, Python, C++, SQL, and JavaScript.

    • Java

    • Python

    • C++

    • SQL

    • JavaScript

  • Answered by AI
  • Q4. Do you have any technical certification
Round 4 - Aptitude Test 

Determine an individual skill

Round 5 - HR 

(1 Question)

  • Q1. Overall personality and suitability for the role

Interview Preparation Tips

Topics to prepare for Infosys Operations Executive interview:
  • Operation executive
Interview preparation tips for other job seekers - Online Assessment test
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Oops concepts, about yourself

What people are saying about Infosys

View All
yedabhai
2d
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.

Infosys Interview FAQs

How many rounds are there in Infosys Operations Executive interview?
Infosys interview process usually has 2-3 rounds. The most common rounds in the Infosys interview process are Aptitude Test, Technical and HR.
How to prepare for Infosys Operations Executive 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 Operations and Selection Process.
What are the top questions asked in Infosys Operations Executive interview?

Some of the top questions asked at the Infosys Operations Executive interview -

  1. What is OOPs? Difference between Overloading and overriding, what is polymorphi...read more
  2. How to check ram usage in linux EC2 insta...read more
  3. I got a question that was, how to cut a single cake with 3 times, but he need 7...read more
What are the most common questions asked in Infosys Operations Executive HR round?

The most common HR questions asked in Infosys Operations Executive interview are -

  1. Tell me about yourse...read more
  2. What are your strengths and weakness...read more
  3. Where do you see yourself in 5 yea...read more
How long is the Infosys Operations Executive interview process?

The duration of Infosys Operations Executive interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 55 interview experiences

Difficulty level

Easy 45%
Moderate 55%

Duration

Less than 2 weeks 67%
2-4 weeks 10%
4-6 weeks 10%
6-8 weeks 3%
More than 8 weeks 10%
View more
Join Infosys Creating the next opportunity for people, businesses & communities
Infosys Operations Executive Salary
based on 2.8k salaries
₹1.6 L/yr - ₹4.5 L/yr
12% less than the average Operations Executive Salary in India
View more details

Infosys Operations Executive Reviews and Ratings

based on 349 reviews

3.9/5

Rating in categories

3.9

Skill development

3.9

Work-life balance

3.1

Salary

4.1

Job security

4.0

Company culture

3.1

Promotions

3.4

Work satisfaction

Explore 349 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.5 L/yr

Senior Associate Consultant
31.2k salaries
unlock blur

₹8.2 L/yr - ₹14 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