Upload Button Icon Add office photos
Premium Employer

i

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

Innominds Software Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Innominds Software Senior Automation Test Engineer Interview Questions, Process, and Tips

Updated 15 Feb 2023

Innominds Software Senior Automation Test Engineer Interview Experiences

1 interview found

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

I applied via Naukri.com

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

(5 Questions)

  • Q1. What is software Test life Cycle and Bug Life cycle?
  • Ans. 

    Software Test Life Cycle (STLC) is a sequence of activities carried out to ensure quality in software testing. Bug Life Cycle is a process followed by the testing team to track and manage bugs found during testing.

    • STLC includes planning, designing, executing, and reporting of tests.

    • Bug Life Cycle includes bug identification, reporting, assigning, fixing, retesting, and closing.

    • STLC ensures that the software meets the r...

  • Answered by AI
  • Q2. What is pull request in git? how do you commit code ? how do you resolve merge conflicts ?
  • Ans. 

    Pull request is a feature in git that allows developers to review and merge code changes.

    • A pull request is created when a developer wants to merge their changes into the main branch

    • Other developers can review the changes and leave comments or suggestions

    • Once the changes are approved, the pull request can be merged into the main branch

    • To commit code, use the 'git commit' command with a message describing the changes mad...

  • Answered by AI
  • Q3. Python : (1) what is recursion ? Give example ? (2)what are the different data types in python? (3)What is negative indexing in python ? (4) How exception is handled in python ? (5) what is with st...
  • Ans. 

    Python interview questions covering recursion, data types, exception handling, memory management, and more.

    • Recursion is a function that calls itself. Example: factorial function.

    • Python data types include integers, floats, strings, lists, tuples, and dictionaries.

    • Negative indexing allows you to access elements from the end of a list or string. Example: my_list[-1] returns the last element.

    • Exceptions are handled using tr...

  • Answered by AI
  • Q4. (1) what is chmod 644 example.txt permission ? (2) what is the use of xpath? (3) how will you find an element by xpath and by css in selenium ?
  • Ans. 

    Answers to technical questions for Senior Automation Test Engineer position.

    • chmod 644 example.txt permission means the owner has read and write access, while others have only read access.

    • XPath is a language used to locate elements in an XML document or HTML page.

    • To find an element by XPath in Selenium, use the findElement() method with the By.xpath() locator. For example: driver.findElement(By.xpath("//input[@id='usern...

  • Answered by AI
  • Q5. (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) wri...
  • Ans. 

    A technical interview question for Senior Automation Test Engineer involving list comprehension, power of two, fibonacci series, missing numbers, and character count.

    • Use range() function to generate a list from 1 to 10 in list comprehension

    • Check if the given integer is a power of two by using bitwise AND operator

    • Use recursion to create a fibonacci series of 100

    • Find missing numbers from a list by comparing it with a ran...

  • Answered by AI
Round 3 - Technical 

(4 Questions)

  • Q1. What is a generator ? Have you used it in real time?
  • Ans. 

    A generator is a function that returns an iterator object. It generates a sequence of values on the fly.

    • Generators are used to create iterators for lazy evaluation of a sequence of values.

    • They are memory efficient as they generate values on the fly instead of storing them in memory.

    • Generators are used in Python for creating infinite sequences, reading large files, and processing data in chunks.

    • Example: def my_generator...

  • Answered by AI
  • Q2. What is a lambda function? Give a example
  • Ans. 

    A lambda function is a small anonymous function that can take any number of arguments and return a single value.

    • Lambda functions are also known as anonymous functions or closures.

    • They are often used as arguments for higher-order functions, such as map, filter, and reduce.

    • Example: lambda x: x**2 defines a lambda function that takes one argument and returns its square.

  • Answered by AI
  • Q3. Print a list of odd index elements from list1 and even index elements from list2 and print the thrid list with the result set of both. list1 = [3,6,9,12,15,18,21] list2 = [4,8,12,16,20,24,28]
  • Ans. 

    Print odd index elements from list1 and even index elements from list2 and combine them into a third list.

    • Loop through both lists and use conditional statements to append the elements to the third list.

    • Use the modulo operator to check for odd/even index.

    • Final list should contain [6, 4, 12, 12, 18, 20].

  • Answered by AI
  • Q4. Write a python program to print the repititve characters in a list which should exclude integers input = ['a','a',4,4,'b','c','a'] output = {'a':3}
  • Ans. 

    Python program to print repetitive characters in a list excluding integers

    • Use a dictionary to store the count of each character

    • Iterate through the list and check if the character is a string and not an integer

    • Print the characters with count greater than 1

  • Answered by AI
Round 4 - One-on-one 

(3 Questions)

  • Q1. This is F2F with director. Asked me about the CI/CD
  • Q2. Some Basic questions on Selenium like How do you launch a browser instance? What are xpaths? Project structure ? About Sprint Cycle
  • Q3. Some python basics on list, dict

Interview Preparation Tips

Topics to prepare for Innominds Software Senior Automation Test Engineer interview:
  • Python
  • GIT
  • Selenium
  • RobotFramework
Interview preparation tips for other job seekers - Go through Python and Selenium Basics. Have knowledge on CI/CD.
Be careful in F2F. I don't have positive experience in director round. He's kind of mean.

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. 1. My interview it has been scheduled by one consultancy. I interviewed with ITC Infotech on June 9th 2018.
  • Q2. Interviewer was very cool and supportive guy. I maximum tried gave an answers for below questions.. 1. Interviewer asked me about SD. 2. About roles and responsibilities as a Senior automation test enginee...
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(2 Questions)

  • Q1. Explain about Agile process?
  • Ans. 

    Agile process is a software development methodology that promotes adaptive planning, evolutionary development, early delivery, and continuous improvement.

    • Iterative and incremental development

    • Cross-functional teams

    • Regular feedback and adaptation

    • Customer collaboration

    • Time-boxed iterations (sprints)

    • Continuous integration and testing

  • Answered by AI
  • Q2. What is spark? what is legacy defect? find the xpath of given example how will you run the 1 test case multiple times in testng? if the some task will take 8 hours but your manager said that you should com...
  • Ans. 

    Spark is a fast and general-purpose cluster computing system. Legacy defect refers to a known issue in older versions of software. XPath is a way to navigate XML documents. TestNG allows running test cases multiple times. Approach to completing a task in less time involves prioritizing and optimizing.

    • Spark is a cluster computing system for big data processing.

    • Legacy defect is a known issue in older versions of software...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Reverse a string, find the repetition of characters, Fibonacci series, selenium web elements handling. Organizational workflows.

Round 2 - Assignment 

Selenium web automation for a web demo page.

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic preparation is going to be good. But, practice logic building that wins game always.

I applied via Recruitment Consultant and was interviewed before Feb 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Method overloading, method overriding, life cycle of thread,oops concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 4 rounds. 1. Technical written test, here, pattern, string, array questions were asked. 2.Face to face .
3. Manager round, here scenario based questions on jdbc,hybernate and other family background details.
4. HR round.

I applied via Referral and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Explain datawindow in powerbuilder
  • Ans. 

    DataWindow is a GUI control in PowerBuilder used to display and manipulate data from a database.

    • DataWindow can be used to retrieve data from a database, display it in a tabular format, and allow users to edit the data.

    • It supports various data sources such as SQL, ODBC, and XML.

    • DataWindow can also be used to create reports and graphs.

    • It provides various features such as sorting, filtering, grouping, and computed columns...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - say basics concepts about the datawindow in powerbuilder. As datawindow is the base of powerbuilder candidate should prepare well

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. IOS Basics , iPhone programming

Interview Preparation Tips

Interview preparation tips for other job seekers - When you tried a lot to get good company if you have no option then go for it ,Make this to last of your joining preferences.You will be deadlocked in the bond think twice before Join.

I applied via Recruitment Consultant and was interviewed in Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic Java questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Had appeared for Java developer role, basic Java questions were asked.

I appeared for an interview in Sep 2017.

Interview Questionnaire 

4 Questions

  • Q1. Technical interview take by client technical person actually they are hiring for another client so they took total 3 technical round and final will HR round
  • Q2. Asking about life cycle of Dot net mvc contols entity frame work and SQL queries
  • Q3. Problem based on oops and SQL queries outputs
  • Q4. Basic questions about my self ,salary discussion basic formalities form I have to fill up

Interview Preparation Tips

Round: Test
Experience: There were around 15 objective question that includes mvc, c#.net and SQL server. It was very simple question like different types of filters,Acton results in mvc. Basic oops concept and dot net web page regarding

Round: Resume Shortlist
Experience: After completing test round another was technical round discussed maily for mvc and SQL server questions. Around 30 mint discussion. After qualify this round another round will start from client technical staff.

General Tips: It was for 2-3 year experience person very simple to crack but focus on you which profile you are looking for study interview questions from net
Skills: Dot net mve oops concept jQuery and SQL server

I appeared for an interview in Sep 2017.

Interview Questionnaire 

3 Questions

  • Q1. What is deadlock
  • Ans. 

    Deadlock is a situation where two or more processes are unable to proceed because each is waiting for the other to release a resource.

    • Deadlock occurs when two or more processes are stuck in a circular wait, where each process is waiting for a resource held by another process.

    • Four necessary conditions for deadlock are mutual exclusion, hold and wait, no preemption, and circular wait.

    • Example: Process A holds resource X a...

  • Answered by AI
  • Q2. Which technology you know and worked
  • Ans. 

    I have experience with various technologies including Java, Python, HTML/CSS, JavaScript, and SQL.

    • Java

    • Python

    • HTML/CSS

    • JavaScript

    • SQL

  • Answered by AI
  • Q3. Why you are looking for change and what is your notice period
  • Ans. 

    I am looking for a change to explore new opportunities and challenges. My notice period is 30 days.

    • Seeking new opportunities and challenges

    • Want to learn and grow in a different environment

    • Exploring better career prospects

    • Seeking a company with a better work-life balance

    • Notice period is 30 days

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: 25 objective ques from Java and 25 from English
Tips: should prepare with Java Technology
Duration: 1 hour
Total Questions: 50

Round: Technical Interview
Experience: describe clearly
Tips: should prepared

Round: Technical Interview
Experience: do you know about jsf
Tips: yes, I worked

Round: Technical + HR Interview
Experience: this is my dream company actually, and notice is 15 to 20 days.
Tips: be confident

Skills evaluated in this interview

Innominds Software Interview FAQs

How many rounds are there in Innominds Software Senior Automation Test Engineer interview?
Innominds Software interview process usually has 4 rounds. The most common rounds in the Innominds Software interview process are Technical, Resume Shortlist and One-on-one Round.
What are the top questions asked in Innominds Software Senior Automation Test Engineer interview?

Some of the top questions asked at the Innominds Software Senior Automation Test Engineer interview -

  1. (1) write a list comprehension to print a list from 1 to 10 (2) write a program...read more
  2. Python : (1) what is recursion ? Give example ? (2)what are the different da...read more
  3. What is a generator ? Have you used it in real ti...read more

Tell us how to improve this page.

Innominds Software Senior Automation Test Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.6
 • 341 Interviews
NeoSOFT Interview Questions
3.6
 • 268 Interviews
3i Infotech Interview Questions
3.5
 • 145 Interviews
Microland Interview Questions
3.4
 • 132 Interviews
Sify Technologies Interview Questions
3.8
 • 123 Interviews
Mastek Interview Questions
3.5
 • 120 Interviews
Maveric Systems Interview Questions
3.5
 • 118 Interviews
View all
Innominds Software Senior Automation Test Engineer Salary
based on 5 salaries
₹11 L/yr - ₹18 L/yr
At par with the average Senior Automation Test Engineer Salary in India
View more details

Innominds Software Senior Automation Test Engineer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

3.0

Skill development

2.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
468 salaries
unlock blur

₹7 L/yr - ₹27.5 L/yr

Software Engineer
393 salaries
unlock blur

₹3.6 L/yr - ₹14 L/yr

Senior Engineer
217 salaries
unlock blur

₹6 L/yr - ₹25.8 L/yr

Associate Software Engineer
168 salaries
unlock blur

₹2.2 L/yr - ₹8.1 L/yr

Engineer
160 salaries
unlock blur

₹3 L/yr - ₹13.2 L/yr

Explore more salaries
Compare Innominds Software with

ITC Infotech

3.6
Compare

3i Infotech

3.5
Compare

Sify Technologies

3.8
Compare

Microland

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