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
4.1

based on 836 Reviews

Filter interviews by

Indium Software Qa Automation Testing Engineer Interview Questions and Answers

Updated 3 Mar 2022

Indium Software Qa Automation Testing Engineer Interview Experiences

1 interview found

I applied via Naukri.com

Round 1 - One-on-one 

(3 Questions)

  • Q1. Git, Jenkins, don't ask many questions as they don't have time also join late for an interview and in a very hurry
  • Q2. They more focus on git and Jenkins rather than skills and don't hire anyone as most of the glassdoor reviews, maybe
  • Q3. Git commands, Jenkins procedure, no question on selenium and java also in a very hurry and join around 30 mins late.

Interview Preparation Tips

Interview preparation tips for other job seekers - They focus more on git and Jenkins rather than skill knowledge

Interview questions from similar companies

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

I applied via campus placement at Karmaveer Bhaurao Patil College of Engineering, Satara

Round 1 - Aptitude Test 

The assessment consists of a one-hour aptitude test that includes questions on data structures and algorithms (DSA) as well as SQL query questions, where I am required to write SQL queries, followed by two coding questions.

Round 2 - Group Discussion 

Our group discussion topic is whether AI can replace human intelligence.

Round 3 - Technical 

(3 Questions)

  • Q1. Oops concept in java
  • Ans. 

    Oops concept in Java refers to Object-Oriented Programming principles like inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation refers to bundling data and methods that operate on the data into a single unit.

    • Polymorphism allows objects to be treated as instances of their parent class.

    • Abstraction hides the implementation ...

  • Answered by AI
  • Q2. What is compile time polymorphism
  • Ans. 

    Compile time polymorphism is the ability of a programming language to select which method to execute at compile time based on the method signature.

    • Compile time polymorphism is achieved through method overloading and operator overloading.

    • Method overloading allows multiple methods in the same class with the same name but different parameters.

    • The compiler determines which method to call based on the number and type of arg...

  • Answered by AI
  • Q3. What is the SQL query to select and display the name of person who have highest salary among employees?
  • Ans. 

    SQL query to select and display the name of person with highest salary among employees.

    • Use the MAX() function to find the highest salary

    • Join the employee table with the salary table using a common key like employee_id

    • Select the name of the person with the highest salary

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Tell me about yourself. then about final year project.
  • Ans. 

    I am a dedicated QA Automation Testing Engineer with experience in creating and executing test cases. My final year project involved developing a test automation framework using Selenium.

    • Experienced QA Automation Testing Engineer

    • Skilled in creating and executing test cases

    • Developed test automation framework using Selenium for final year project

  • Answered by AI
  • Q2. What is your family background, and are you prepared to relocate?
  • Ans. 

    I come from a close-knit family with a diverse background. I am open to relocating for the right opportunity.

    • Family background is close-knit and diverse

    • Open to relocating for the right opportunity

  • Answered by AI
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

Hacker rank test given

I applied via Recruitment Consulltant and was interviewed in May 2022. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Explain Agile and agile scrum ceremony
  • Ans. 

    Agile is a methodology that emphasizes flexibility and collaboration. Agile Scrum is a framework for implementing Agile.

    • Agile focuses on delivering working software in short iterations

    • Agile values individuals and interactions over processes and tools

    • Agile encourages customer collaboration and responding to change

    • Agile Scrum includes ceremonies such as Sprint Planning, Daily Stand-up, Sprint Review, and Sprint Retrospec...

  • Answered by AI
  • Q2. Select an element from drop down
  • Ans. 

    To select an element from a drop down, locate the drop down element and use the select class in Selenium.

    • Locate the drop down element using findElement() method

    • Create an object of Select class using the drop down element

    • Use selectByVisibleText(), selectByValue() or selectByIndex() method to select the desired option

  • Answered by AI
  • Q3. How to check if for every steps we have steps written in step definition file
  • Ans. 

    To check if every step has a corresponding step definition, we can use a code coverage tool.

    • Use a code coverage tool to analyze the step definition file and identify any missing steps

    • Ensure that all steps in the feature file are covered by the step definition file

    • Regularly review and update the step definition file to ensure it stays up-to-date with the feature file

  • Answered by AI
  • Q4. Reverse an integer in java
  • Ans. 

    Reverse an integer in Java

    • Convert integer to string using Integer.toString()

    • Use StringBuilder to reverse the string

    • Convert the reversed string back to integer using Integer.parseInt()

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Only four questions he asked.seems interviewer Pavan Kumar was busy somewhere else.

Skills evaluated in this interview

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

The first round was coding+ aptitude
Gave exam on unstop platform the aptitude questions where divided into section 45 mins for aptitude (logical reasoning+ quants+ verbal) then 25 min for technical mcqs try to be as fast as you can

Round 2 - Coding Test 

It consisted of 3 coding questions 2 were easy 1 was hard

Round 3 - Virtual interview 

(2 Questions)

  • Q1. They asked me mostly SQL based on my resume ( asked other friends, and mostly the question where on the skills you mention on resume)
  • Q2. Some coding questions like palindrome and reverse a string
Round 4 - Technical 

(2 Questions)

  • Q1. Mostly resume based questions
  • Q2. Text cases for your projects and how do you test your projects
  • Ans. 

    I create test cases based on project requirements and use automation tools to test the projects.

    • Identify test scenarios based on project requirements

    • Create test cases for positive and negative scenarios

    • Use automation tools like Selenium or Appium to execute test cases

    • Analyze test results and report any issues found

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Basic HT question

Skills evaluated in this interview

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

(5 Questions)

  • Q1. Selenium project realtime questions like handling Dynamic web elements
  • Q2. SQL query for joining
  • Ans. 

    SQL query for joining tables to retrieve data from multiple related tables.

    • Use JOIN keyword to combine rows from two or more tables based on a related column between them.

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column;

  • Answered by AI
  • Q3. Java program for oops concepts
  • Ans. 

    Java program showcasing OOPs concepts like inheritance, encapsulation, polymorphism, and abstraction.

    • Create classes representing different entities with properties and methods

    • Use inheritance to create a parent-child class relationship

    • Demonstrate encapsulation by setting private variables and using getter and setter methods

    • Show polymorphism by overriding methods in child classes

    • Implement abstraction by creating abstract

  • Answered by AI
  • Q4. Writing Xpath for any page
  • Ans. 

    Xpath is a query language used to locate elements on a web page based on their attributes and structure.

    • Identify unique attributes of the element you want to locate

    • Use the '//' operator to search for elements anywhere in the document

    • Use the '[@attribute='value']' syntax to specify the attribute and value you are looking for

    • Combine multiple conditions using 'and' or 'or' operators

    • Use functions like 'contains()', 'starts

  • Answered by AI
  • Q5. High level test scenarios

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

This was a C# automation test engineer interview(experience 2 years).
Duration of Interview was around 30 to 45 minutes with questions focused on OOPs concepts, basic programming questions & selenium questions.

Interview Preparation Tips

Topics to prepare for Iris Software Automation Engineer interview:
  • OOPS
  • Selenium
  • C#
Interview preparation tips for other job seekers - Prepare OOPs concepts, basic programming questions, selenium questions.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Good coding questions

Round 2 - Coding Test 

Excellent questions..good

Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. Office discussion
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
6-8 weeks
Result
Not Selected
Round 1 - Coding Test 

Asking fullstack developer level coding logic from a Qa which is really not required. Even after clearing 3 rounds with them there was no response for 2 weeks then again they make you appear for the process from step 1. Unnecessary and tedious process is being followed

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Assignment 

Was all good with online test

Round 2 - Technical 

(1 Question)

  • Q1. Write a java program to reverse a staring basic questions on OPPS, Selenium and TestNG

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview process was quit smooth

Indium Software Interview FAQs

How many rounds are there in Indium Software Qa Automation Testing Engineer interview?
Indium Software interview process usually has 1 rounds. The most common rounds in the Indium Software interview process are One-on-one Round.
What are the top questions asked in Indium Software Qa Automation Testing Engineer interview?

Some of the top questions asked at the Indium Software Qa Automation Testing Engineer interview -

  1. Git, Jenkins, don't ask many questions as they don't have time also join late f...read more
  2. git commands, Jenkins procedure, no question on selenium and java also in a ver...read more
  3. They more focus on git and Jenkins rather than skills and don't hire anyone as ...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Indium Software interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Indium Software Qa Automation Testing Engineer Salary
based on 5 salaries
₹3 L/yr - ₹4.5 L/yr
47% less than the average Qa Automation Testing Engineer Salary in India
View more details
Test Engineer
943 salaries
unlock blur

₹1.4 L/yr - ₹7.6 L/yr

Senior Test Engineer
636 salaries
unlock blur

₹3.5 L/yr - ₹11.5 L/yr

Softwaretest Engineer
225 salaries
unlock blur

₹2 L/yr - ₹8.4 L/yr

Test Associate
213 salaries
unlock blur

₹1 L/yr - ₹5.5 L/yr

Senior Software Engineer
183 salaries
unlock blur

₹6.3 L/yr - ₹19.7 L/yr

Explore more salaries
Compare Indium Software with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview