Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by INDIUM Team. If you also belong to the team, you can get access from here

INDIUM Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

INDIUM Interview Questions and Answers

Updated 17 Jun 2025
Popular Designations

126 Interview questions

A Quality Engineer was asked 3mo ago
Q. How do you test the performance of a telecom system?
Ans. 

Testing telecom system performance involves assessing speed, reliability, and capacity under various conditions.

  • Conduct load testing to evaluate system behavior under peak traffic conditions, e.g., simulating thousands of simultaneous calls.

  • Perform stress testing to determine the system's breaking point, such as pushing beyond maximum user capacity.

  • Use benchmarking tools to compare performance metrics against indu...

View all Quality Engineer interview questions
A Manual Test Engineer was asked 3mo ago
Q. What are the different types of joins in SQL, and can you explain each of them?
Ans. 

SQL joins combine rows from two or more tables based on related columns.

  • INNER JOIN: Returns records with matching values in both tables. Example: SELECT * FROM A INNER JOIN B ON A.id = B.id;

  • LEFT JOIN: Returns all records from the left table and matched records from the right table. Example: SELECT * FROM A LEFT JOIN B ON A.id = B.id;

  • RIGHT JOIN: Returns all records from the right table and matched records from the ...

View all Manual Test Engineer interview questions
A Manual Test Engineer was asked 3mo ago
Q. What is the difference between UNION and UNION ALL in SQL?
Ans. 

UNION combines results from two queries, removing duplicates; UNION ALL includes all results, keeping duplicates.

  • UNION removes duplicate rows from the result set.

  • UNION ALL includes all rows, even duplicates.

  • Example of UNION: SELECT column1 FROM table1 UNION SELECT column1 FROM table2;

  • Example of UNION ALL: SELECT column1 FROM table1 UNION ALL SELECT column1 FROM table2;

  • UNION may be slower due to duplicate eliminati...

View all Manual Test Engineer interview questions
A Manual Test Engineer was asked 3mo ago
Q. Write a query to join tables where the course payment is greater than 5000K, fetching the course name, payment, student name, course name, and age. Assume there are two tables: course details and student de...
Ans. 

Join course and student tables to fetch details for payments greater than 5000k, including course name, payment, student name, and age.

  • SQL JOIN: Use INNER JOIN to combine course and student tables based on a common key, typically course ID.

  • WHERE Clause: Filter results using a WHERE clause to include only payments greater than 5000k.

  • SELECT Statement: Specify the columns to retrieve, such as course name, payment amo...

View all Manual Test Engineer interview questions
A Manual Test Engineer was asked 3mo ago
Q. How will you track defects?
Ans. 

Defect tracking involves documenting, managing, and resolving software defects throughout the testing process.

  • Use a defect tracking tool like JIRA or Bugzilla to log defects with detailed descriptions.

  • Assign severity levels (e.g., critical, major, minor) to prioritize defect resolution.

  • Include steps to reproduce the defect, screenshots, and environment details for clarity.

  • Regularly update the status of defects (e....

View all Manual Test Engineer interview questions
A Manual Test Engineer was asked 3mo ago
Q. What are the differences between a sprint review and product grooming?
Ans. 

Sprint reviews assess completed work, while product grooming prioritizes and refines backlog items for future sprints.

  • Sprint Review occurs at the end of a sprint to showcase completed work to stakeholders.

  • Product Grooming (or Backlog Refinement) is an ongoing process to prioritize and clarify backlog items.

  • In a Sprint Review, the team demonstrates features; for example, showing a new app feature to stakeholders.

  • Du...

View all Manual Test Engineer interview questions
A Manual Test Engineer was asked 3mo ago
Q. What is the difference between the WHERE and HAVING clauses in SQL?
Ans. 

WHERE filters rows before aggregation; HAVING filters after aggregation in SQL queries.

  • WHERE clause is used to filter records before any groupings are made.

  • HAVING clause is used to filter records after aggregation functions like COUNT, SUM, AVG.

  • Example of WHERE: SELECT * FROM Employees WHERE Age > 30;

  • Example of HAVING: SELECT Department, COUNT(*) FROM Employees GROUP BY Department HAVING COUNT(*) > 5;

View all Manual Test Engineer interview questions
Are these interview questions helpful?
A Manual Test Engineer was asked 3mo ago
Q. What are the SQL queries used to remove duplicates from a database?
Ans. 

SQL queries can be used to identify and remove duplicate records from a database effectively.

  • Use the 'ROW_NUMBER()' function to assign a unique number to each row within a partition of a result set. Example: SELECT *, ROW_NUMBER() OVER (PARTITION BY column_name ORDER BY id) AS row_num FROM table_name.

  • Delete duplicates by using a Common Table Expression (CTE) with 'ROW_NUMBER()'. Example: WITH CTE AS (SELECT *, ROW...

View all Manual Test Engineer interview questions
A Manual Test Engineer was asked 3mo ago
Q. Write a SQL query to join tables.
Ans. 

SQL joins combine rows from two or more tables based on related columns, enabling complex queries and data retrieval.

  • INNER JOIN: Returns records with matching values in both tables. Example: SELECT * FROM Orders INNER JOIN Customers ON Orders.CustomerID = Customers.CustomerID;

  • LEFT JOIN: Returns all records from the left table and matched records from the right table. Example: SELECT * FROM Customers LEFT JOIN Orde...

View all Manual Test Engineer interview questions
A Senior Automation Test Engineer was asked 3mo ago
Q. Using Selenium, how would you extract the titles of books written by a specific author?
Ans. 

Use Selenium to automate web scraping and extract book titles by a specific author from a webpage.

  • Set Up Selenium: Install Selenium WebDriver and the appropriate browser driver (e.g., ChromeDriver) to interact with the web page.

  • Locate Elements: Use methods like find_element_by_xpath or find_elements_by_css_selector to locate book titles on the page.

  • Filter by Author: If the page lists multiple authors, filter the r...

View all Senior Automation Test Engineer interview questions

INDIUM Interview Experiences

198 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Group Discussion 

Difference between soft skills and hard skills

Round 2 - Technical 

(2 Questions)

  • Q1. What is manual testing
  • Ans. 

    Manual testing is the process of manually testing software for defects without the use of automation tools.

    • Involves executing test cases manually without automation tools

    • Requires human intervention to verify software functionality

    • Helps in identifying defects that may be missed by automated testing

    • Can be time-consuming but provides thorough testing coverage

  • Answered by AI
  • Q2. What is defect life cycleif
  • Ans. 

    Defect life cycle is the process of identifying, reporting, fixing, retesting, and closing defects in software testing.

    • Defect identification: Defects are identified through testing or user feedback.

    • Defect reporting: Defects are reported in a defect tracking tool with details like severity, priority, and steps to reproduce.

    • Defect fixing: Developers address the reported defects by making necessary code changes.

    • Defect ret...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. What is the main thing should have for a test engineer
  • Ans. 

    The main thing a test engineer should have is attention to detail.

    • Attention to detail is crucial for identifying and fixing bugs in software.

    • Strong analytical skills are necessary for understanding complex systems.

    • Good communication skills are important for collaborating with developers and other team members.

    • Knowledge of testing tools and techniques is essential for efficient testing.

    • Ability to prioritize tasks and ma...

  • Answered by AI
  • Q2. What's your opinion on testing
  • Ans. 

    I believe testing is crucial for ensuring the quality and reliability of software products.

    • Testing helps identify bugs and issues early in the development process.

    • It ensures that the software meets the requirements and functions as expected.

    • Different types of testing, such as unit testing, integration testing, and regression testing, are important for comprehensive coverage.

    • Automation testing can help improve efficienc...

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Are you ok with rotational shifts?
  • Ans. 

    Yes, I am comfortable with rotational shifts as I understand the nature of the job requires flexibility in working hours.

    • I am open to working different shifts to accommodate project needs

    • I understand the importance of being flexible in a dynamic work environment

    • I have previous experience working in rotational shifts in my previous job

  • Answered by AI
  • Q2. Are you ok with the work location?
  • Ans. 

    Yes, I am okay with the work location as long as it is within a reasonable distance from my home.

    • I am flexible with work locations within a reasonable distance from my home.

    • I am open to commuting or relocating if necessary.

    • I prioritize a convenient work location for better work-life balance.

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Sql based questions in first round and increased level in next rounds
  • Q2. Simple python questions
  • Q3. Guessestimate- process matters not answers
Round 2 - Technical 

(1 Question)

  • Q1. Hard SQL question
Round 3 - Client Interview 

(2 Questions)

  • Q1. Sql based questions asked
  • Q2. Fit for the role

Interview Preparation Tips

Interview preparation tips for other job seekers - Sql is the key for this role for current position

They ghost you after this round
Might be some candidate ghosted before
I got response on same day for past round
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jan 2025.

Round 1 - Group Discussion 

Difference between online study and offline study

Round 2 - Technical 

(2 Questions)

  • Q1. All types of testing one by one (System, integration, usability, black box, white box)
  • Q2. Question on gaming like are you a mobile game player or pc or console game player, what's the difference between them.

Test Associate Interview Questions & Answers

user image Chilka Dinesh

posted on 24 Dec 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Group Discussion 

Technical skills - soft skills
Online classes - off line class
5g technology advantages and disadvantage

Round 2 - Aptitude Test 

Manual testing some MCQ's

Round 3 - Technical 

(2 Questions)

  • Q1. What is white box testing? What is STLC & SDLC? What is software testing life cycle?
  • Ans. 

    White box testing is a testing technique where the internal structure, design, and code of the software being tested is known to the tester.

    • White box testing is also known as clear box testing, glass box testing, or structural testing.

    • It involves testing the internal logic and structure of the code.

    • Testers need to have knowledge of the code to perform white box testing effectively.

    • Examples of white box testing techniqu...

  • Answered by AI
  • Q2. What is bug life cycle? What is santy and smoke testing? What is regression testing and re testing?
  • Ans. 

    Bug life cycle is the process of a bug from identification to resolution. Sanity and smoke testing are initial tests to check basic functionality. Regression testing ensures new code doesn't break existing features. Re-testing is testing a bug fix.

    • Bug life cycle involves identification, reporting, prioritization, fixing, retesting, and closing of a bug.

    • Sanity testing is a narrow regression test to ensure basic function...

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. 1. Can you tell me about yourself?
  • Ans. 

    I am a dedicated and detail-oriented individual with a strong background in software testing.

    • I have a Bachelor's degree in Computer Science

    • I have 3 years of experience in software testing at XYZ company

    • I am proficient in using testing tools such as Selenium and JIRA

  • Answered by AI
  • Q2. 2. Why are you looking for a change from your current job?
  • Ans. 

    Seeking new challenges and opportunities for growth in a different environment.

    • Looking for new challenges and opportunities for personal and professional growth

    • Interested in exploring different technologies or industries

    • Seeking a better work-life balance or company culture

    • Want to relocate to a different city or country for personal reasons

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The person conducting the interview is good and friendly.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Difference between hard and soft skills

Round 2 - Technical 

(2 Questions)

  • Q1. What is manual testing
  • Ans. 

    Manual testing is the process of manually testing software for defects without the use of automation tools.

    • Manual testing involves testers executing test cases by hand to identify bugs and issues in the software.

    • It is a time-consuming process but allows for thorough testing of all aspects of the software.

    • Testers need to have good attention to detail and follow test cases accurately.

    • Examples of manual testing include ex...

  • Answered by AI
  • Q2. Defect retest cycle
Round 3 - Technical 

(2 Questions)

  • Q1. What is SDLC and STLC
  • Ans. 

    SDLC stands for Software Development Life Cycle and STLC stands for Software Testing Life Cycle.

    • SDLC is a process used by software development teams to design, develop, and test high-quality software.

    • STLC is a subset of SDLC focused specifically on the activities related to testing the software.

    • SDLC includes phases like planning, analysis, design, implementation, and maintenance.

    • STLC includes phases like test planning,...

  • Answered by AI
  • Q2. Types of software testing
  • Ans. 

    Types of software testing include unit testing, integration testing, system testing, and acceptance testing.

    • Unit testing: Testing individual components or modules of the software.

    • Integration testing: Testing how different modules work together.

    • System testing: Testing the entire system as a whole.

    • Acceptance testing: Testing to ensure the software meets the requirements of the end users.

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Are you okay with rotational shift
  • Ans. 

    Yes, I am okay with rotational shifts as I understand the nature of the job requires flexibility.

    • I am comfortable with working different shifts as needed

    • I understand the importance of being flexible in a testing role

    • I have previous experience working in rotational shifts in a similar position

  • Answered by AI
  • Q2. Are you okay with work location
  • Ans. 

    Yes, I am okay with work location as long as it is within a reasonable distance from my home.

    • I am open to working at different locations as long as it is feasible for me to commute.

    • I prioritize the job role and responsibilities over the specific work location.

    • I am willing to relocate if necessary for the job opportunity.

  • Answered by AI

Data Engineer Interview Questions & Answers

user image Kathiravan Kesavan

posted on 16 Dec 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Question based on big data
  • Q2. Cloud based messaging system
Round 2 - Technical 

(1 Question)

  • Q1. Cloud based operations
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Group Discussion 

5G Technology on Indian economy

Round 2 - Technical 

(2 Questions)

  • Q1. Manual testing, SDLC, stlc, blc
  • Q2. Application explanation
  • Ans. 

    Explaining the functionality and purpose of a specific application

    • Describe the main features of the application

    • Explain how the application is used

    • Discuss the benefits of using the application

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Willing to relocation
  • Ans. 

    Yes, I am willing to relocate for the right opportunity.

    • I am open to relocating for a better career prospect

    • I have relocated in the past for job opportunities

    • I am flexible and willing to adapt to new environments

  • Answered by AI

Interview Preparation Tips

Topics to prepare for INDIUM Test Associate interview:
  • Overal manual testing
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Technology advantage or not

Round 2 - Aptitude Test 

All aptitude topics,logical reasoning

Round 3 - Technical 

(2 Questions)

  • Q1. Oops,2 coding questions
  • Q2. Palindrome,even number
Round 4 - HR 

(2 Questions)

  • Q1. What do you know
  • Q2. Do you have any questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Similar to tcs,infosys pattern

Manual Test Engineer Interview Questions & Answers

user image Pranika Aravind

posted on 4 Apr 2025

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. What are the differences between a sprint review and product grooming?
  • Ans. 

    Sprint reviews assess completed work, while product grooming prioritizes and refines backlog items for future sprints.

    • Sprint Review occurs at the end of a sprint to showcase completed work to stakeholders.

    • Product Grooming (or Backlog Refinement) is an ongoing process to prioritize and clarify backlog items.

    • In a Sprint Review, the team demonstrates features; for example, showing a new app feature to stakeholders.

    • During ...

  • Answered by AI
  • Q2. How will you track defects?
  • Ans. 

    Defect tracking involves documenting, managing, and resolving software defects throughout the testing process.

    • Use a defect tracking tool like JIRA or Bugzilla to log defects with detailed descriptions.

    • Assign severity levels (e.g., critical, major, minor) to prioritize defect resolution.

    • Include steps to reproduce the defect, screenshots, and environment details for clarity.

    • Regularly update the status of defects (e.g., o...

  • Answered by AI
  • Q3. What are the SQL queries used to remove duplicates from a database?
  • Ans. 

    SQL queries can be used to identify and remove duplicate records from a database effectively.

    • Use the 'ROW_NUMBER()' function to assign a unique number to each row within a partition of a result set. Example: SELECT *, ROW_NUMBER() OVER (PARTITION BY column_name ORDER BY id) AS row_num FROM table_name.

    • Delete duplicates by using a Common Table Expression (CTE) with 'ROW_NUMBER()'. Example: WITH CTE AS (SELECT *, ROW_NUMB...

  • Answered by AI
  • Q4. What is the difference between the WHERE and HAVING clauses in SQL?
  • Ans. 

    WHERE filters rows before aggregation; HAVING filters after aggregation in SQL queries.

    • WHERE clause is used to filter records before any groupings are made.

    • HAVING clause is used to filter records after aggregation functions like COUNT, SUM, AVG.

    • Example of WHERE: SELECT * FROM Employees WHERE Age > 30;

    • Example of HAVING: SELECT Department, COUNT(*) FROM Employees GROUP BY Department HAVING COUNT(*) > 5;

  • Answered by AI
  • Q5. What is the difference between UNION and UNION ALL in SQL?
  • Ans. 

    UNION combines results from two queries, removing duplicates; UNION ALL includes all results, keeping duplicates.

    • UNION removes duplicate rows from the result set.

    • UNION ALL includes all rows, even duplicates.

    • Example of UNION: SELECT column1 FROM table1 UNION SELECT column1 FROM table2;

    • Example of UNION ALL: SELECT column1 FROM table1 UNION ALL SELECT column1 FROM table2;

    • UNION may be slower due to duplicate elimination, w...

  • Answered by AI
  • Q6. What are the different types of joins in SQL, and can you explain each of them?
  • Ans. 

    SQL joins combine rows from two or more tables based on related columns.

    • INNER JOIN: Returns records with matching values in both tables. Example: SELECT * FROM A INNER JOIN B ON A.id = B.id;

    • LEFT JOIN: Returns all records from the left table and matched records from the right table. Example: SELECT * FROM A LEFT JOIN B ON A.id = B.id;

    • RIGHT JOIN: Returns all records from the right table and matched records from the left ...

  • Answered by AI
  • Q7. Write a quires for join the table greater than 5000k in course payment and need to fetch the course name, payment, student name, course name and age. There are 2 table one is course details and student det...
  • Ans. 

    Join course and student tables to fetch details for payments greater than 5000k, including course name, payment, student name, and age.

    • SQL JOIN: Use INNER JOIN to combine course and student tables based on a common key, typically course ID.

    • WHERE Clause: Filter results using a WHERE clause to include only payments greater than 5000k.

    • SELECT Statement: Specify the columns to retrieve, such as course name, payment amount, ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic arthmetic,English

Round 2 - Technical 

(1 Question)

  • Q1. Anything to ask related to coding
Round 3 - HR 

(1 Question)

  • Q1. Easy to interact with HR

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about INDIUM?
Ask anonymously on communities.

INDIUM Interview FAQs

How many rounds are there in INDIUM interview?
INDIUM interview process usually has 2-3 rounds. The most common rounds in the INDIUM interview process are Technical, HR and One-on-one Round.
How to prepare for INDIUM 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 INDIUM. The most common topics and skills that interviewers at INDIUM expect are Manual Testing, SQL, Python, Automation Testing and Java.
What are the top questions asked in INDIUM interview?

Some of the top questions asked at the INDIUM interview -

  1. how will you initiate a test with less knowledge in requiremen...read more
  2. I was given one website link where there is option to generate random photo, fu...read more
  3. How to switch between Tabs in a browser using selen...read more
What are the most common questions asked in INDIUM HR round?

The most common HR questions asked in INDIUM interview are -

  1. What are your salary expectatio...read more
  2. What is your family backgrou...read more
  3. Share details of your previous j...read more
How long is the INDIUM interview process?

The duration of INDIUM 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.2/5

based on 181 interview experiences

Difficulty level

Easy 18%
Moderate 75%
Hard 7%

Duration

Less than 2 weeks 79%
2-4 weeks 14%
4-6 weeks 2%
6-8 weeks 2%
More than 8 weeks 3%
View more

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.3
 • 290 Interviews
Altimetrik Interview Questions
3.7
 • 240 Interviews
Xoriant Interview Questions
4.1
 • 213 Interviews
Incedo Interview Questions
3.1
 • 193 Interviews
Globant Interview Questions
3.7
 • 183 Interviews
Iris Software Interview Questions
4.0
 • 178 Interviews
ThoughtWorks Interview Questions
3.9
 • 157 Interviews
Apexon Interview Questions
3.3
 • 150 Interviews
View all

INDIUM Reviews and Ratings

based on 1.1k reviews

4.0/5

Rating in categories

4.0

Skill development

4.1

Work-life balance

3.5

Salary

3.9

Job security

4.0

Company culture

3.4

Promotions

3.9

Work satisfaction

Explore 1.1k Reviews and Ratings
Manual Tester

Hyderabad / Secunderabad

5-10 Yrs

Not Disclosed

Manual Tester

Hyderabad / Secunderabad

3-5 Yrs

Not Disclosed

Sdet Lead

Chennai

10-17 Yrs

₹ 11-21 LPA

Explore more jobs
Test Engineer
1k salaries
unlock blur

₹2.4 L/yr - ₹7 L/yr

Senior Test Engineer
700 salaries
unlock blur

₹4 L/yr - ₹9.5 L/yr

Softwaretest Engineer
231 salaries
unlock blur

₹2.5 L/yr - ₹8.4 L/yr

Test Associate
223 salaries
unlock blur

₹1.3 L/yr - ₹4 L/yr

Senior Software Engineer
191 salaries
unlock blur

₹12.1 L/yr - ₹22 L/yr

Explore more salaries
Compare INDIUM with

Xoriant

4.1
Compare

Photon Interactive

4.1
Compare

CitiusTech

3.3
Compare

Iris Software

4.0
Compare
write
Share an Interview