Upload Button Icon Add office photos
Engaged Employer

i

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

Indium Software Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Indium Software Interview Questions, Process, and Tips

Updated 4 Apr 2025

Top Indium Software Interview Questions and Answers

View all 118 questions

Indium Software Interview Experiences

Popular Designations

186 interviews found

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

Interview Questionnaire 

4 Questions

  • Q1. How to switch between Tabs in a browser using selenium
  • Ans. 

    To switch between tabs in a browser using Selenium, we can use the getWindowHandles() method and switchTo() method.

    • Use getWindowHandles() method to get the handles of all open tabs

    • Store the handles in a Set

    • Use switchTo() method to switch to a specific tab by passing the handle as an argument

  • Answered by AI
  • Q2. Write code to give rating in webta le given applicant name and rating as input to the method.
  • Ans. 

    Code to give rating in webtable for given applicant name and rating as input.

    • Create a function that takes applicant name and rating as input.

    • Search for the applicant name in the webtable.

    • Update the rating for the applicant in the webtable.

    • Return the updated webtable.

  • Answered by AI
  • Q3. I was given one website link where there is option to generate random photo, full name and last name when clicked on a button. Write code to check first name, last name and photo are not repeated for atlea...
  • Q4. Find how many numbers are repeated from given integer array
  • Ans. 

    Count the number of repeated integers in an array

    • Iterate through the array and use a hash table to keep track of the count of each number

    • Return the count of numbers with a count greater than 1

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be prepared on windows switching, handling tables, Java questions

Skills evaluated in this interview

Top Indium Software Senior Software Engineer Interview Questions and Answers

Q1. How to switch between Tabs in a browser using selenium
View answer (2)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

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...

Skills evaluated in this interview

Top Indium Software Manual Test Engineer Interview Questions and Answers

Q1. 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 details
Add answer

Manual Test Engineer Interview Questions asked at other Companies

Q1. Why choose testing field What is manual testing What is traditional testing What is the difference between functional and non functional testing What is severity and priority in a testing What is smoke or sanity testing What is test case Ho... read more
View answer (2)
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

Top Indium Software Test Associate Interview Questions and Answers

Q1. what are all the techniques you will follow while testing?
View answer (1)

Test Associate Interview Questions asked at other Companies

Q1. what are the amazon devices you see in market can u name them
View answer (2)
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

Senior Data Analyst Interview Questions asked at other Companies

Q1. What is the difference between Least Squares Method and the maximum likelihood
View answer (1)

Indium Software interview questions for popular designations

 Test Engineer

 (28)

 Test Associate

 (21)

 Senior Test Engineer

 (17)

 Data Analyst

 (15)

 Software Engineer

 (10)

 Senior Data Analyst

 (6)

 Data Engineer

 (6)

 Manual Test Engineer

 (5)

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.

Top Indium Software Test Associate Interview Questions and Answers

Q1. what are all the techniques you will follow while testing?
View answer (1)

Test Associate Interview Questions asked at other Companies

Q1. what are the amazon devices you see in market can u name them
View answer (2)

Get interview-ready with Top Indium Software Interview Questions

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.

Top Indium Software Test Associate Interview Questions and Answers

Q1. what are all the techniques you will follow while testing?
View answer (1)

Test Associate Interview Questions asked at other Companies

Q1. what are the amazon devices you see in market can u name them
View answer (2)

Jobs at Indium Software

View all
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

Top Indium Software Test Associate Interview Questions and Answers

Q1. what are all the techniques you will follow while testing?
View answer (1)

Test Associate Interview Questions asked at other Companies

Q1. what are the amazon devices you see in market can u name them
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

  • Q1. Java- Find duplicate Elements in the String.
  • Q2. Selenium - Extract the titles of books written by a specific author?
  • Q3. Rest Assured- Write post request.
  • Q4. Testng - Annotations order

Senior Automation Test Engineer Interview Questions asked at other Companies

Q1. (1) write a list comprehension to print a list from 1 to 10 (2) write a program to check if a given positive integer is a power of two (3) create a fibonacci series of 100 using recursive function (4) write a program to find missing numbers... read more
View answer (2)

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

Data Engineer Interview Questions asked at other Companies

Q1. Next Greater Element Problem Statement You are given an array arr of length N. For each element in the array, find the next greater element (NGE) that appears to the right. If there is no such greater element, return -1. Input: T N arr[0]... read more
View answer (3)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Sep 2024, where I was asked the following questions.

  • Q1. What are your salary expectations and how do you believe your strengths justify this compensation?
  • Q2. What is your opinion on- a person with career gap should be treated as fresher or not?

Quality Engineer Interview Questions asked at other Companies

Q1. What is MSA and addition of msa version, type of msa ,what different between variable data and attibute data .why difine flase and miss rate calculate by msa .
View answer (10)
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 Software Test Associate interview:
  • Overal manual testing

Top Indium Software Test Associate Interview Questions and Answers

Q1. what are all the techniques you will follow while testing?
View answer (1)

Test Associate Interview Questions asked at other Companies

Q1. what are the amazon devices you see in market can u name them
View answer (2)

Indium Software Interview FAQs

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

Some of the top questions asked at the Indium Software interview -

  1. how will you initiate a test with less knowledge in requiremen...read more
  2. How to switch between Tabs in a browser using selen...read more
  3. what are all the techniques you will follow while testi...read more
How long is the Indium Software interview process?

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

Tell us how to improve this page.

Indium Software Interview Process

based on 168 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.6
 • 341 Interviews
CitiusTech Interview Questions
3.3
 • 277 Interviews
NeoSOFT Interview Questions
3.6
 • 268 Interviews
Tiger Analytics Interview Questions
3.7
 • 227 Interviews
Altimetrik Interview Questions
3.8
 • 223 Interviews
Episource Interview Questions
3.9
 • 220 Interviews
Incedo Interview Questions
3.1
 • 184 Interviews
Xoriant Interview Questions
4.1
 • 184 Interviews
View all

Indium Software Reviews and Ratings

based on 1k reviews

4.1/5

Rating in categories

4.0

Skill development

4.1

Work-life balance

3.6

Salary

3.9

Job security

4.0

Company culture

3.4

Promotions

3.9

Work satisfaction

Explore 1k Reviews and Ratings
Business Analyst

Bangalore / Bengaluru

5-10 Yrs

₹ 9-13 LPA

Automation Lead / IOS Tester

Chennai

2-6 Yrs

₹ 9-13 LPA

Business Analyst

Bangalore / Bengaluru

5-6 Yrs

Not Disclosed

Explore more jobs
Test Engineer
1k salaries
unlock blur

₹1.6 L/yr - ₹8.5 L/yr

Senior Test Engineer
674 salaries
unlock blur

₹3 L/yr - ₹11.4 L/yr

Softwaretest Engineer
231 salaries
unlock blur

₹2.5 L/yr - ₹8.4 L/yr

Test Associate
217 salaries
unlock blur

₹1 L/yr - ₹5 L/yr

Senior Software Engineer
187 salaries
unlock blur

₹7.2 L/yr - ₹28.8 L/yr

Explore more salaries
Compare Indium Software with

ITC Infotech

3.6
Compare

CMS IT Services

3.1
Compare

KocharTech

3.9
Compare

Xoriant

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