Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Informatica QA Engineer Interview Questions and Answers

Updated 18 Jul 2024

Informatica QA Engineer Interview Experiences

2 interviews found

QA Engineer Interview Questions & Answers

user image Kaviya Kumar

posted on 18 Jul 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
Not Selected

I was interviewed in Jun 2024.

Round 1 - Coding Test 

Coding on java,with explanation video, proctored

Round 2 - Technical 

(2 Questions)

  • Q1. Explain project framework
  • Ans. 

    Project framework is a structure that provides guidelines, tools, and libraries for developing software applications.

    • Provides a foundation for organizing code and implementing best practices

    • Includes libraries, tools, and templates to streamline development process

    • Can be specific to a programming language or technology stack

    • Examples: Angular for front-end web development, Spring for Java applications

  • Answered by AI
  • Q2. Explain waits in selenium
  • Ans. 

    Waits in Selenium are used to make the automation script wait for a certain condition to be met before proceeding.

    • Implicit Wait: Waits for a certain amount of time before throwing an exception if the element is not found.

    • Explicit Wait: Waits for a certain condition to be met before proceeding.

    • Fluent Wait: Waits for a certain condition with a defined polling frequency.

  • Answered by AI

Skills evaluated in this interview

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 5 Jun 2021

I applied via Referral and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1.selenium code from scratch 2. Rest api code from scratch 3. Java collection 4. programs based on ds like count each element of string. ...
  • Ans. 

    Interview questions for QA Engineer including Selenium, Rest API, Java collection, and programming based on data structures.

    • Demonstrate ability to write Selenium code from scratch

    • Show proficiency in writing Rest API code from scratch

    • Exhibit knowledge of Java collection and its implementation

    • Be able to write programs based on data structures like counting each element of a string and finding duplicates

    • Use algorithms wit...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Awesome panel of Interview
They will hint if you are stuck somewhere.

Skills evaluated in this interview

QA Engineer Interview Questions Asked at Other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many mi ... read more
Q2. Suppose your manager gave you one task which has to be complete i ... read more
Q3. how to access amazon page directly directly with out using driver ... read more
Q4. 100 apples in 5 consecutive days, each day 6 more than the previo ... read more
Q5. 7)how do you drive your data in automation , how do you validate ... read more

Interview questions from similar companies

I applied via Referral and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Why TCS?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be clear with the basics and you will be through

I applied via Naukri.com and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Testing concepts and agile methodology, linux commands, few java programmings, logical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong at basic concepts.

I applied via Campus Placement and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About sdlc and stlc

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare good from guru99

I applied via Walk-in and was interviewed before Jun 2021. There were 3 interview rounds.

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 Resume tips
Round 2 - Group Discussion 

Current Technologies

Round 3 - Aptitude Test 

Duration 1 hr, Coding,GK and English

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a good knowledge in ths subject which you are applying for th post

I applied via Referral and was interviewed before Mar 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Selenium, Java, functional testing
Round 2 - HR 

(1 Question)

  • Q1. Salary, notice period

Interview Preparation Tips

Interview preparation tips for other job seekers - Good work life balance and learning new technologies

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

Interview Questionnaire 

4 Questions

  • Q1. Wait in Selenium. type of waits.
  • Ans. 

    Types of waits in Selenium include implicit, explicit, and fluent waits.

    • Implicit waits wait for a certain amount of time before throwing an exception if an element is not found.

    • Explicit waits wait for a certain condition to be met before proceeding with the next step.

    • Fluent waits wait for a certain condition to be met within a specified time frame.

    • Examples of conditions include element visibility, element clickability,...

  • Answered by AI
  • Q2. Dynamic element how to search
  • Ans. 

    Dynamic elements can be searched using unique attributes like ID, class, name, or XPath.

    • Use ID attribute if it's unique and static

    • Use class attribute if it's unique and dynamic

    • Use name attribute if it's unique and static

    • Use XPath if other attributes are not unique or not available

  • Answered by AI
  • Q3. Jenkins do u know or not
  • Ans. 

    Jenkins is an open-source automation server that helps to automate parts of the software development process.

    • Jenkins is used for continuous integration and continuous delivery

    • It can be used to build, test, and deploy software

    • Jenkins has a large number of plugins available to extend its functionality

    • Examples of plugins include Git, Maven, and JUnit

    • Jenkins can be configured to run on different operating systems and envir

  • Answered by AI
  • Q4. How to fetch data from xls
  • Ans. 

    To fetch data from xls, use a library like Apache POI or OpenPyXL.

    • Use a library like Apache POI or OpenPyXL to read data from xls files

    • Identify the sheet and cell range to read data from

    • Iterate through the rows and columns to extract the data

    • Handle any formatting or data type conversions as needed

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare selenium with java testng and appache poi.

Skills evaluated in this interview

QA Engineer Interview Questions & Answers

Oracle user image Madhurya A N

posted on 13 Jan 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Selenium Questions

I applied via Naukri.com and was interviewed in Jun 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Write a programme to calculate number of integers in String
  • Ans. 

    Program to count integers in a string

    • Loop through each character in the string

    • Check if the character is a digit

    • If it is a digit, increment the count

    • Return the count

  • Answered by AI
  • Q2. Write a programme to find occurance of character in String.
  • Ans. 

    Program to find occurrence of character in String

    • Use a loop to iterate through each character in the string

    • Use a counter variable to keep track of the number of occurrences

    • Compare each character with the target character and increment the counter if they match

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for core java interview questions

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Informatica Interview FAQs

How many rounds are there in Informatica QA Engineer interview?
Informatica interview process usually has 2 rounds. The most common rounds in the Informatica interview process are Coding Test and Technical.
How to prepare for Informatica QA 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 Informatica. The most common topics and skills that interviewers at Informatica expect are Informatica, Selenium, Automation, Troubleshooting and SQL.
What are the top questions asked in Informatica QA Engineer interview?

Some of the top questions asked at the Informatica QA Engineer interview -

  1. 1.selenium code from scratch 2. Rest api code from scratch 3. Java collection...read more
  2. Explain project framew...read more
  3. Explain waits in selen...read more

Recently Viewed

LIST OF COMPANIES

Novartis

Locations

JOBS

Oxane Partners

No Jobs

JOBS

Novartis

No Jobs

LIST OF COMPANIES

B P Oil Mills

Locations

JOBS

Informatica

No Jobs

JOBS

Oxane Partners

No Jobs

JOBS

Oxane Partners

No Jobs

INTERVIEWS

Novartis

No Interviews

REVIEWS

Oxane Partners

No Reviews

JOBS

Oxane Partners

No Jobs

Tell us how to improve this page.

Informatica QA Engineer Interview Process

based on 2 interviews

Interview experience

1.5
  
Bad
View more

QA Engineer Interview Questions from Similar Companies

TCS QA Engineer Interview Questions
3.7
 • 43 Interviews
IBM QA Engineer Interview Questions
4.0
 • 12 Interviews
View all
Informatica QA Engineer Salary
based on 44 salaries
₹9 L/yr - ₹18 L/yr
125% more than the average QA Engineer Salary in India
View more details

Informatica QA Engineer Reviews and Ratings

based on 2 reviews

3.2/5

Rating in categories

3.2

Skill development

3.2

Work-life balance

2.6

Salary

2.6

Job security

2.6

Company culture

2.6

Promotions

3.2

Work satisfaction

Explore 2 Reviews and Ratings
Software Engineer
173 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
144 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
72 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Software Engineer
59 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior QA Engineer
58 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Informatica with

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

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