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 Manual Test Engineer Interview Questions and Answers

Updated 1 Feb 2024

Infosys Manual Test Engineer Interview Experiences

1 interview found

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

It was like medium.

Round 2 - Technical 

(2 Questions)

  • Q1. What is testing
  • Ans. 

    Testing is the process of evaluating a system or component to determine if it meets specified requirements.

    • Testing is done to identify defects or errors in software or hardware.

    • It involves executing test cases and comparing the actual results with expected results.

    • Testing can be performed manually or using automated tools.

    • Types of testing include functional testing, performance testing, security testing, etc.

    • Example: T...

  • Answered by AI
  • Q2. Explain agile model
  • Ans. 

    Agile model is an iterative and incremental approach to software development that promotes flexibility and collaboration.

    • Agile model emphasizes adaptive planning and continuous improvement.

    • It involves breaking down the project into small, manageable tasks called user stories.

    • The development process is divided into short iterations called sprints.

    • Regular meetings like daily stand-ups and sprint reviews are conducted for...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Best sorting although and its working they asked
  • Q2. Write a program to replace the character with another character in java.
  • Ans. 

    A program to replace a character with another character in Java.

    • Create a string variable with the original text

    • Use the replace() method to replace the character with another character

    • Print the new string with the replaced character

  • Answered by AI
  • Q3. SQL queries on order by, group by, and it's difference they asked.
  • Q4. Project management experience they asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare on the basis concepts and be perfect on your resume they are not expecting much from you as you are a fresher.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Swap two number with and without temporary variable
  • Ans. 

    Swap two numbers with and without temporary variable

    • Without temporary variable: Use addition and subtraction

    • With temporary variable: Use a third variable to store the value of one of the numbers

    • Example without temporary variable: a=5, b=7; a=a+b; b=a-b; a=a-b;

    • Example with temporary variable: a=5, b=7; temp=a; a=b; b=temp;

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't be afraid. It companies take interview to select you. And if you are selected in this company you are not lucky enough so try hard.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. What is second level cache?How to implement second level cache?How to optimize sql query?what are solid principles?
  • Ans. 

    Second level cache is a caching mechanism used to improve performance by storing frequently accessed data in memory.

    • Second level cache is implemented at the application level and can be configured using frameworks like Hibernate.

    • To optimize SQL queries, one can use indexes, avoid using SELECT *, and use JOINs instead of subqueries.

    • SOLID principles are a set of design principles for writing maintainable and scalable cod...

  • Answered by AI
  • Q2. Mostly FAQ but somewhat in depth?
  • Q3. How to deploy application in aws?
  • Ans. 

    To deploy an application in AWS, you need to create an EC2 instance, configure security groups, install necessary software, and upload your application code.

    • Create an EC2 instance in the desired region and select the appropriate instance type

    • Configure security groups to allow traffic to and from the instance

    • Install necessary software and dependencies on the instance

    • Upload your application code to the instance

    • Start the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic faq but in depth,Interview level is easy to medium.They will ask only theory .No practical algorithm test.

Skills evaluated in this interview

I applied via Company Website and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is my longterm and short-term goals.
  • Ans. My short-term is to become an expert in solving queries And long term is to become valuable employee in an organisation and managing a team, also helping new recruits to learn the work.
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Excellent and friendly-nature interview

I applied via Campus Placement and was interviewed in Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. THERE WERE 4 ROUNDS.1-APTITUDE 2-PSEUDO TEST 2-TECHNICAL INTERVIEW 4-HR ROUND
  • Q2. 1ST ROUND WAS VERY SIMPLE 2ND WAS LITTLE COMPLEX 3RD&4TH ROUND WAS VERY SIMPLE

Interview Preparation Tips

Interview preparation tips for other job seekers - PREPARE BASIC PROGRAMMING CONCEPTS AND APTITUDE

I applied via Recruitment Consulltant and was interviewed before Jun 2021. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Where do we use BigInteger in java ?
  • Ans. 

    BigInteger is used for mathematical operations involving very large integers in Java.

    • BigInteger is used when the range of values supported by primitive data types like int and long is not sufficient.

    • It is commonly used in cryptography and security applications.

    • It provides methods for arithmetic, bitwise, and logical operations on large integers.

    • Example: calculating factorial of a large number, generating large prime nu

  • Answered by AI
  • Q2. Merge Sort Algo code in java
  • Ans. 

    Merge Sort Algo code in java

    • Divide the array into two halves

    • Recursively sort the two halves

    • Merge the sorted halves

    • Time complexity: O(n log n)

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Genpact Software Engineer interview:
  • Core Java
  • DSA
Interview preparation tips for other job seekers - Not a very good interview experience. I was asked 2-3 questions only. Not satisfied with interview process.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

10 Questions

  • Q1. Tell me about yourself
  • Q2. Write a program to print unique elements in an array in java
  • Ans. 

    Program to print unique elements in an array in Java

    • Create a HashSet to store unique elements

    • Iterate through the array and add each element to the HashSet

    • Print the HashSet to get the unique elements

  • Answered by AI
  • Q3. Types of data structures
  • Ans. 

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

    • Arrays - a collection of elements of the same type

    • Linked Lists - a sequence of nodes where each node contains a reference to the next node

    • Stacks - a collection of elements with two main operations: push (add) and pop (remove)

    • Queues - a collection of elements with two main operations: enqueue (add) and d...

  • Answered by AI
  • Q4. Tree traversal
  • Q5. What is oops
  • Ans. 

    OOPs stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects.

    • OOPs focuses on creating objects that contain both data and functions.

    • It emphasizes on encapsulation, inheritance, and polymorphism.

    • Examples of OOPs languages are Java, C++, Python, etc.

  • Answered by AI
  • Q6. Applications of oops
  • Ans. 

    OOPs is used for creating modular, reusable and maintainable code.

    • Encapsulation: Hiding implementation details and exposing only necessary information.

    • Inheritance: Reusing code and creating a hierarchy of classes.

    • Polymorphism: Using a single interface to represent multiple entities.

    • Abstraction: Reducing complexity by hiding unnecessary details.

    • Examples: Java, C++, Python, Ruby, etc.

  • Answered by AI
  • Q7. 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 code reuse and promotes code organization.

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

    • The child class inherits all the properties and methods of the parent class and can also add its own unique properties and ...

  • Answered by AI
  • Q8. What is polymorphism
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • It allows objects of different classes to be treated as if they were objects of the same class.

    • It is achieved through method overriding and method overloading.

    • Example: A parent class Animal can have child classes like Dog, Cat, and Bird, each with their own unique implementation of the method 'makeSound'.

    • Polymorphism makes code more flexible and reusable.

  • Answered by AI
  • Q9. What is abstraction? Explain with example
  • Ans. 

    Abstraction is the process of hiding complex implementation details and exposing only the necessary information.

    • Abstraction helps in reducing complexity and increasing efficiency.

    • It allows us to focus on the essential features of an object or system.

    • For example, a car can be abstracted as a vehicle with certain properties like speed, fuel efficiency, and seating capacity.

    • Abstraction can be achieved through interfaces,

  • Answered by AI
  • Q10. What is encapsulation
  • Ans. 

    Encapsulation is the process of hiding implementation details and providing a public interface for accessing the functionality.

    • Encapsulation helps in achieving data abstraction and information hiding

    • It prevents unauthorized access to the internal details of an object

    • It allows for easy modification of implementation without affecting the external code

    • Example: A class with private variables and public methods

    • Example: A b...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - As I'm from ECE background it's little bit easy for me because they ask basic questions. If we are good enough in basics it's easy to crack Mindtree interview

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. In and out of project. How bucketing concept works. Data localisation in Hadoop. Persistence in spark.

Interview Preparation Tips

Interview preparation tips for other job seekers - Project should be explained well and basic concepts should be cleared.

Interview Questionnaire 

5 Questions

  • Q1. What is raid
  • Ans. 

    RAID stands for Redundant Array of Independent Disks. It is a data storage technology that combines multiple physical disks into a single logical unit.

    • RAID provides improved performance, fault tolerance, and data protection.

    • There are different levels of RAID, including RAID 0, RAID 1, RAID 5, RAID 6, and RAID 10.

    • RAID 0 offers improved performance but no redundancy, while RAID 1 provides redundancy but no performance im...

  • Answered by AI
  • Q2. What is fsmo
  • Ans. 

    FSMO stands for Flexible Single Master Operations. It is a role in Active Directory that controls specific domain-wide operations.

    • There are five FSMO roles: Schema Master, Domain Naming Master, RID Master, PDC Emulator, and Infrastructure Master.

    • Each FSMO role is responsible for a specific operation within the Active Directory domain.

    • For example, the PDC Emulator role is responsible for time synchronization and passwor...

  • Answered by AI
  • Q3. What is idrac
  • Ans. 

    iDRAC stands for Integrated Dell Remote Access Controller. It is a hardware and software solution for remote server management.

    • iDRAC allows administrators to remotely manage and monitor Dell servers.

    • It provides features such as power management, virtual media access, and console redirection.

    • iDRAC can be accessed through a web interface or command line interface.

    • It is available on most Dell PowerEdge servers.

    • iDRAC can b...

  • Answered by AI
  • Q4. What is dns
  • Ans. 

    DNS stands for Domain Name System. It is a system that translates domain names into IP addresses.

    • DNS is like a phonebook for the internet

    • It helps to locate websites by translating domain names into IP addresses

    • DNS servers store information about domain names and their corresponding IP addresses

    • DNS can also be used for other purposes like email routing and network diagnostics

  • Answered by AI
  • Q5. What id dhcp
  • Ans. 

    DHCP stands for Dynamic Host Configuration Protocol. It is a network protocol that automatically assigns IP addresses to devices on a network.

    • DHCP is used to simplify network administration by automatically assigning IP addresses to devices on a network.

    • It allows devices to join a network and obtain an IP address without manual configuration.

    • DHCP servers can also provide additional network configuration information, su...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - good

Skills evaluated in this interview

Infosys Interview FAQs

How many rounds are there in Infosys Manual Test Engineer interview?
Infosys interview process usually has 2 rounds. The most common rounds in the Infosys interview process are Aptitude Test and Technical.
How to prepare for Infosys Manual Test Engineer 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 Linux and Manual Testing.
What are the top questions asked in Infosys Manual Test Engineer interview?

Some of the top questions asked at the Infosys Manual Test Engineer interview -

  1. What is test...read more
  2. Explain agile mo...read more

Tell us how to improve this page.

Infosys Manual Test Engineer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more
Join Infosys Creating the next opportunity for people, businesses & communities
Infosys Manual Test Engineer Salary
based on 123 salaries
₹2 L/yr - ₹8.6 L/yr
At par with the average Manual Test Engineer Salary in India
View more details

Infosys Manual Test Engineer Reviews and Ratings

based on 13 reviews

4.5/5

Rating in categories

4.4

Skill development

4.3

Work-life balance

4.4

Salary

4.8

Job security

4.6

Company culture

4.3

Promotions

4.5

Work satisfaction

Explore 13 Reviews and Ratings
Technology Analyst
55.4k salaries
unlock blur

₹3 L/yr - ₹11.1 L/yr

Senior Systems Engineer
51.2k salaries
unlock blur

₹2.5 L/yr - ₹8 L/yr

System Engineer
31.7k salaries
unlock blur

₹2.5 L/yr - ₹5.6 L/yr

Technical Lead
31k salaries
unlock blur

₹5.1 L/yr - ₹20 L/yr

Senior Associate Consultant
28.8k salaries
unlock blur

₹6.2 L/yr - ₹16.9 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