Upload Button Icon Add office photos

Filter interviews by

Informatica Sdet Interview Questions and Answers

Updated 17 May 2024

Informatica Sdet Interview Experiences

1 interview found

Sdet Interview Questions & Answers

user image Anonymous

posted on 17 May 2024

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is AWS SQS and
  • Ans. 

    AWS SQS (Simple Queue Service) is a fully managed message queuing service that enables decoupling of components in a distributed system.

    • Used for storing messages in a queue before they are processed by a consumer

    • Supports distributed systems by enabling asynchronous communication between components

    • Helps in decoupling different parts of a system, improving scalability and fault tolerance

    • Messages can be stored in SQS for

  • Answered by AI
  • Q2. What is the use of Normalizations
  • Ans. 

    Normalizations are used to standardize data by removing redundancies and inconsistencies.

    • Normalizations help in organizing data in a consistent and efficient manner.

    • They reduce data redundancy by eliminating duplicate information.

    • Normalization ensures data integrity and accuracy by avoiding inconsistencies.

    • Examples include normalizing database tables to reduce data duplication and improve query performance.

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Instahyre and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Coding Test 

It was on hackerrank(OA). There were two string and array based medium question.(Part of Blind 75 list)

Sdet Interview Questions & Answers

Oracle user image Anonymous

posted on 14 Jun 2024

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

(1 Question)

  • Q1. Write selenium code for getting values in a dynamic table
  • Ans. 

    Use Selenium to extract values from a dynamic table

    • Identify the table using its locator (id, class, xpath, etc.)

    • Iterate through the rows and columns of the table to extract values

    • Use Selenium commands like findElements and getText to retrieve the values

    • Handle dynamic content by waiting for elements to be present or visible

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Java union of arrays
  • Ans. 

    To find the union of two arrays in Java, use a HashSet to store unique elements from both arrays.

    • Create two arrays of strings.

    • Convert arrays to HashSet to remove duplicates.

    • Combine both HashSets to get the union of arrays.

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

(1 Question)

  • Q1. Regular Expressions related

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good with Basics and lots of practice is the key

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Coding Test 

Solve sanke and ladder puzzle

Interview Preparation Tips

Interview preparation tips for other job seekers - learn DSA

Sdet Interview Questions & Answers

Adobe user image Anonymous

posted on 20 Mar 2023

Interview experience
4
Good
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 - Coding Test 

Coding practice is a must . DSA concept is a must .

Round 3 - Aptitude Test 

Coding Test 2 which involved a basic array ques . Checked logic ability

Interview Preparation Tips

Interview preparation tips for other job seekers - DSA practice ,confidence , try to think hard . Practice coding .
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(9 Questions)

  • Q1. Tell me about your Project? what part you tested in your project?
  • Ans. 

    I worked on a project to develop a mobile application for tracking fitness goals and workouts.

    • Tested user authentication and registration processes

    • Performed functional testing on workout tracking features

    • Conducted regression testing after each new feature implementation

  • Answered by AI
  • Q2. What is Regression testing and what is regression defects?
  • Ans. 

    Regression testing is retesting of software to ensure that recent changes have not adversely affected existing features. Regression defects are bugs that reappear after changes.

    • Regression testing is performed to make sure that new code changes have not introduced any new bugs or caused existing functionalities to break.

    • It involves re-executing test cases that cover the impacted areas of the software.

    • Regression defects ...

  • Answered by AI
  • Q3. Scenario based question in that ask about the regression defects
  • Q4. Verification vs Validation?
  • Ans. 

    Verification ensures the product is built right, while validation ensures the right product is built.

    • Verification focuses on process, validation focuses on product

    • Verification answers 'Are we building the product right?'

    • Validation answers 'Are we building the right product?'

    • Verification is done before validation

  • Answered by AI
  • Q5. How frequently do you run the Regression Test?
  • Ans. 

    Regression tests are run after every significant code change or new feature implementation.

    • Regression tests are typically run after every significant code change or new feature implementation to ensure that existing functionalities are not affected.

    • The frequency of running regression tests may vary depending on the project timeline and release cycle.

    • In Agile development, regression tests are often run as part of the co...

  • Answered by AI
  • Q6. How to select 5 th dropdown option?
  • Ans. 

    To select the 5th dropdown option, locate the dropdown element and choose the 5th option.

    • Locate the dropdown element using its unique identifier or class name

    • Use a method like 'selectByIndex' or 'selectByVisibleText' to choose the 5th option

    • Verify that the correct option has been selected

  • Answered by AI
  • Q7. Find the xpath of "Google Search tab" & "Voice search button"?
  • Ans. 

    Use xpath to locate Google Search tab and Voice search button on the webpage.

    • For Google Search tab: //input[@name='btnK']

    • For Voice search button: //div[@aria-label='Search by voice']

  • Answered by AI
  • Q8. Write a java program for reverse string without pre defined method.
  • Ans. 

    Java program to reverse a string without using predefined methods.

    • Create a char array from the input string.

    • Use two pointers, one at the start and one at the end, to swap characters.

    • Continue swapping characters until the pointers meet in the middle.

  • Answered by AI
  • Q9. Which libraries use for the verifying test cases?
  • Ans. 

    Some common libraries used for verifying test cases are JUnit, TestNG, Selenium, and RestAssured.

    • JUnit is a popular Java testing framework for unit testing.

    • TestNG is another Java testing framework that supports parameterized and data-driven testing.

    • Selenium is a widely used tool for automating web browsers for testing purposes.

    • RestAssured is a Java library for testing RESTful APIs.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Oct 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain your day to day Activities
  • Q2. More into role specific question how to run parallels execution
Round 2 - Technical 

(1 Question)

  • Q1. Situation questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare everything that you have mentioned in Resume
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Feb 2024.

Round 1 - Aptitude Test 

The aptitude test administered included questions on aptitude, mathematics, and reasoning.

Round 2 - One-on-one 

(2 Questions)

  • Q1. What is ad hoc testing?
  • Q2. What are the principles of software testing?
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. SIP Call flow with headers
  • Ans. 

    SIP call flow involves signaling and media exchange between SIP devices with headers containing important information.

    • SIP INVITE message is sent to initiate a call

    • SIP 1xx responses indicate call progress

    • SIP 2xx response confirms call establishment

    • SIP ACK message acknowledges call setup

    • SIP BYE message terminates the call

  • Answered by AI
  • Q2. SIP mandatory headers
Round 2 - Technical 

(2 Questions)

  • Q1. SERVICE ROUTE,PATH AND RECORD ROUTE HEADER
  • Q2. K8's Deployment
  • Ans. 

    K8's Deployment refers to the deployment of applications on Kubernetes clusters.

    • Kubernetes (K8s) is an open-source container orchestration platform used for automating deployment, scaling, and management of containerized applications.

    • K8s Deployment involves defining the desired state of the application, creating deployment configurations, and managing the deployment process.

    • Deployment resources in K8s include Pods, Rep...

  • 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 Referral and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Java oops concept Selenium all concepts like where we use action class how handle drop-down how to handle alert and windows pop It's all good experience with interviewer
  • Q2. Oops concept java selenium
Round 2 - Technical 

(1 Question)

  • Q1. They asked about Manual testing They asked about jira they asked about project details some scenario based questions all over experience is good interviewer also very friendly
Round 3 - Behavioral 

(1 Question)

  • Q1. They ask about project they told their work what amdocs products what is amdocs company culture experience was very good manager is also very friendly nature they will co-operate
Round 4 - HR 

(2 Questions)

  • Q1. Here they asked about salary disscusion
  • Q2. What is expected CTC What amdocs n all hr common questions totaly it was very good experience with all members who can took the interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on project
If you mention automation testing then go with java all concepts like oops
This and super keyword constructor
Focus on selenium and framework

Informatica Interview FAQs

How many rounds are there in Informatica Sdet interview?
Informatica interview process usually has 1 rounds. The most common rounds in the Informatica interview process are One-on-one Round.
What are the top questions asked in Informatica Sdet interview?

Some of the top questions asked at the Informatica Sdet interview -

  1. what is the use of Normalizati...read more
  2. what is AWS SQS ...read more

Tell us how to improve this page.

Informatica Sdet Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more

Sdet Interview Questions from Similar Companies

TCS Sdet Interview Questions
3.7
 • 4 Interviews
Oracle Sdet Interview Questions
3.7
 • 3 Interviews
Infosys Sdet Interview Questions
3.6
 • 2 Interviews
Accenture Sdet Interview Questions
3.8
 • 2 Interviews
Google Sdet Interview Questions
4.4
 • 2 Interviews
Adobe Sdet Interview Questions
3.9
 • 1 Interview
View all
Informatica Sdet Salary
based on 4 salaries
₹8 L/yr - ₹23 L/yr
23% more than the average Sdet Salary in India
View more details
Software Engineer
178 salaries
unlock blur

₹8 L/yr - ₹30 L/yr

Senior Software Engineer
144 salaries
unlock blur

₹10 L/yr - ₹40 L/yr

Associate Software Engineer
72 salaries
unlock blur

₹6 L/yr - ₹16.8 L/yr

Lead Software Engineer
59 salaries
unlock blur

₹24 L/yr - ₹51 L/yr

Senior QA Engineer
58 salaries
unlock blur

₹13 L/yr - ₹26 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