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

Filter interviews by

Infosys Operations Executive Interview Questions, Process, and Tips

Updated 22 Jan 2025

Top Infosys Operations Executive Interview Questions and Answers

  • Q1. What is OOPs? Difference between Overloading and overriding, what is polymorphism, what is database, what is candidate key, How we train model in ML, difference between c ...read more
  • Q2. How to check ram usage in linux EC2 instance
  • Q3. What is Amazon Web services how do you use cloud computing in daily life
View all 98 questions

Infosys Operations Executive Interview Experiences

161 interviews found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy and simple, so that everyone can qualify it.

Round 2 - HR 

(2 Questions)

  • Q1. They are so friendly while asking you the questions.
  • Q2. What are the 3 main things to keep in mind to complete a task

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

(2 Questions)

  • Q1. Is there any career gap? If yes, why?
  • Ans. Yes, I have 1year of gap, because I prepared for post graduation Entrance Exam test. After that, I tried for MNC's opportunity. Finally I got offer letter.
  • Answered by sheik anesh
  • Q2. Are you willing to relocation?

Interview Preparation Tips

Interview preparation tips for other job seekers - Mainly Concentrate on Self Intro.
Maintain Good Communication
If you don't know the answer of Interviewer question Then try to convey the related.

Operations Executive Interview Questions Asked at Other Companies

asked in Flipkart
Q1. What is the electric current? How is works ?
asked in Infosys
Q2. What is OOPs? Difference between Overloading and overriding, what ... read more
Q3. You need 10 delivery boy per day to get operations but unfortunat ... read more
Q4. Why high voltage is preferred for transmission of electrical powe ... read more
asked in Infosys
Q5. How to check ram usage in linux EC2 instance
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

General aptitude questions

Round 2 - HR 

(1 Question)

  • Q1. Explain worst scenario handled.
  • Ans. 

    Handled a major supply chain disruption due to a natural disaster.

    • Coordinated with suppliers to find alternative sources for critical materials.

    • Worked with logistics team to reroute shipments and minimize delays.

    • Communicated regularly with customers to manage expectations and provide updates.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

There were mcq questions and answers.

Round 2 - HR 

(1 Question)

  • Q1. Why you want to join our company?

Infosys interview questions for designations

 Senior Executive Operations

 (5)

 Operations

 (1)

 Operations Executive Trainee

 (1)

 Operations Manager

 (3)

 Administration & Operations Manager

 (1)

 General Manager Operations

 (1)

 Technical Operations Analyst

 (1)

 Executive

 (3)

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jul 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 - Aptitude Test 

Basic logic,maths, reasoning and puzzle rounds

Round 3 - One-on-one 

(3 Questions)

  • Q1. Technical questions based on the role
  • Q2. Tell me about yourself ?
  • Q3. Where do you see yourself in next 5 years

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and prepare according to what you have written on your resume

Get interview-ready with Top Infosys Interview Questions

I applied via PrepInsta and was interviewed in Sep 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

(1 Question)

We had to install Lockdown browser OEM.
There were 4 sections
Reasoning ability, Mathematical ability, Verbal ability, Puzzle solving

  • Q1. Percentage, Data interpretation, Permutation and Combination, Boat and Streams, Probability
  • Ans. 

    The question covers various topics in quantitative aptitude such as percentage, data interpretation, permutation and combination, boat and streams, and probability.

    • Percentage: Calculation of percentage, percentage increase or decrease, profit and loss percentage

    • Data interpretation: Reading and analyzing data from graphs, charts, and tables

    • Permutation and combination: Calculation of possible arrangements and combination...

  • Answered by AI
Round 2 - Interview 

(6 Questions)

  • Q1. How are you feeling?
  • Ans. 

    I'm feeling great, thank you for asking!

    • I'm feeling energized and ready to tackle any challenges that come my way

    • I had a good night's sleep and a healthy breakfast this morning

    • I'm excited about the opportunity to interview for this position

  • Answered by AI
  • Q2. What is your hobby?
  • Ans. 

    My hobby is reading books.

    • I enjoy reading books on various topics such as history, science, and fiction.

    • I usually read for an hour or two before going to bed.

    • Reading helps me relax and expand my knowledge.

    • Some of my favorite authors include Dan Brown, Stephen Hawking, and J.K. Rowling.

  • Answered by AI
  • Q3. What is Overloading and Overriding?
  • Ans. 

    Overloading is using the same method name with different parameters. Overriding is replacing a method in a subclass.

    • Overloading is used to have multiple methods with the same name but different parameters.

    • Overriding is used to replace a method in a subclass with a new implementation.

    • Overloading is resolved at compile-time while overriding is resolved at runtime.

    • Example of overloading: public void print(int num) and pub...

  • Answered by AI
  • Q4. Does java use call by value or call be reference?
  • Ans. 

    Java uses call by value.

    • Java passes a copy of the value of a variable to a method, not the actual variable itself.

    • Changes made to the parameter inside the method have no effect on the original variable.

    • However, if the parameter is an object reference, the reference is passed by value, so changes to the object itself will be reflected outside the method.

  • Answered by AI
  • Q5. 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 code m

  • Answered by AI
  • Q6. Can instances of 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.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundAt the time of the interview, I had 0 Years (fresher) of experience. My academic qualification is Bsc. from Pratibha College of Commerce and Computer Studies.Infosys Limited interview preparation:Resources to prepare for this interview - I prepared for the coding questions from PrepInsta. I also referred to our college library books for aptitudeTips for other job seekers - Here are my two cents. Don't panic, be confident, never try to be oversmart, the person in front of you can catch you easily. Revise what subjects you had in what sem and what you learnt in that because the interviewer might ask what you did in your graduation. Study hard and be prepared so you feel confident. All the bestFinal outcome of the interviewSelected

Skills evaluated in this interview

I applied via Company Website and was interviewed in Apr 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude was little bit hard

Round 2 - Interview 

(5 Questions)

  • Q1. Tell me about your self
  • Q2. Tell me about your project
  • Q3. Why do you want to join IT company
  • Q4. Which language did you know
  • Ans. 

    I am proficient in English and Spanish.

    • Proficient in both English and Spanish

    • Can read, write, and speak both languages fluently

    • Have experience working in bilingual environments

    • Able to translate documents and communicate with Spanish-speaking clients/customers

  • Answered by AI
  • Q5. Did you have any question to ask
  • Ans. 

    Yes, I have a few questions regarding the company culture and growth opportunities.

    • Can you tell me more about the company's values and how they are reflected in day-to-day operations?

    • What opportunities are there for professional development and advancement within the company?

    • How does the company encourage innovation and creativity among its employees?

    • Can you provide any examples of successful projects or initiatives th...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Infosys Operations Executive interview:
  • Java
  • Python
  • C
  • C++
Interview preparation tips for other job seekers - Always go through the language which you learn

I applied via Company Website and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

The aptitude test mainly contained questions related to analytical and logical reasoning.

Round 2 - HR 

(3 Questions)

  • Q1. Where do you see yourself in 5 years?
  • Q2. What are your strengths and weaknesses?
  • Q3. Tell me about yourself.

Interview Preparation Tips

Topics to prepare for Infosys Operations Executive interview:
  • SQL
  • DBMS
  • C
  • C++
  • OOPS
Interview preparation tips for other job seekers - Just be confident. Be honest with your interviewer and don't answer to questions you are not sure about. Practice well before the interview. Make a good first impression from your introduction. Be on time and look formal.

I applied via Campus Placement and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Tell me about yourself.
  • Q2. As I mentioned my three known programming languages are C, C++, and java. So Interviewer asked me the difference between C and C++. Also asked about my favorite subject.
  • Q3. Why java language is 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 on a...

  • Answered by AI
  • Q4. 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 additional...

  • Answered by AI
  • Q5. The interviewer asked me about my project.
  • Q6. Tell me the different logic for swapping 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;

  • Answered by AI
  • Q7. Are you okay with relocation?

Interview Preparation Tips

Interview preparation tips for other job seekers - My entire process took around 2 months. The recruiter was very slow in responding. First was the aptitude test having 4 sections arithmetic, reasoning, verbal section and last was the puzzle. The aptitude test was very easy. I prepared for it from indiabix and prepinsta. It was my first company to be interviewed so I was very excited and all process was the fun. As fresher, I think I did pretty well in my interview.
Don't take too much pressure just prepare the basics of your favorite programming language and some basic programs like Fibonacci series, prime number, reverse number, palindrome, etc. During interviews, it's common to feel nervous but you need to stay calm and answer each question. If you worked on basics you definitely gonna crack the interview.
So have faith in yourself and all the best for your interview.

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 Jan 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 - Coding Test 

Write code for prime number and Fibonacci series basic codes

Round 3 - Aptitude Test 

Basic intermediate level logical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident when you answer and be smille always and answer the proper way dres up properly

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. What is Amazon Web services how do you use cloud computing in daily l...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.

Infosys Operations Executive Interview Process

based on 51 interviews

4 Interview rounds

  • Aptitude Test Round
  • HR Round
  • Personal Interview1 Round - 1
  • Personal Interview1 Round - 2
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.3 L/yr
16% less than the average Operations Executive Salary in India
View more details

Infosys Operations Executive Reviews and Ratings

based on 346 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.5

Work satisfaction

Explore 346 Reviews and Ratings
Technology Analyst
55.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Systems Engineer
50.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

System Engineer
39.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
30.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate Consultant
28k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Infosys with

TCS

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Accenture

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