Upload Button Icon Add office photos
Engaged Employer

i

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

Infogain Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 1.1k Reviews

Filter interviews by

Infogain Sdet Automation Test Engineer Interview Questions and Answers

Updated 14 Jun 2024

Infogain Sdet Automation Test Engineer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Automate calendar
  • Q2. OOps concept in java
  • Ans. 

    Object-oriented programming concepts in Java focus on classes, objects, inheritance, encapsulation, and polymorphism.

    • Classes are blueprints for objects

    • Objects are instances of classes

    • Inheritance allows a class to inherit properties and behaviors from another class

    • Encapsulation hides the internal state of an object and only exposes necessary functionalities

    • Polymorphism allows objects to be treated as instances of their

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

(2 Questions)

  • Q1. Automation framework related questions
  • Q2. Java coding on strings
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Java Coding Test dsa program and all that

Sdet Interview Questions & Answers

Altimetrik user image Varsha Jyotiana

posted on 13 Jan 2025

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

(1 Question)

  • Q1. Questions based on java collections
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
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Reverse of string and largest number in an array

Round 2 - Technical 

(2 Questions)

  • Q1. Java oops concepts, strings, arrays
  • Q2. Selenium xpaths, concepts and some other technical stuff

Sdet Interview Questions & Answers

Incedo user image Vijay Prakash MJ

posted on 26 Apr 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Fair and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Simple xpath without using Index reverse strings with words separately
  • Ans. 

    Reverse strings with words separately using simple xpath without using index

    • Use XPath function to split the string into words

    • Reverse each word individually using XPath function

    • Concatenate the reversed words back together

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Programming language well

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Django in depth questions
  • Q2. Django ORM related questions
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 Dec 2022. 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 tips
Round 2 - Assignment 

3 Coding questions was asked in L1 round and indepth check of basic of Java

Round 3 - Technical 

(2 Questions)

  • Q1. Questions related to Basics of Java, Selenium, testNG, Database
  • Q2. CI/CD tools, Maven, testNg.xml

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics of Java, Selenium, testNG should be clear to crack the interview.

I was interviewed in Feb 2022.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 Minutes
Round difficulty - Easy

In this round, there are a total of 16 questions and the time given was 90 mins.

3 Coding questions – Easy, Medium, and Hard.
13 MCQs based on outputs, Computer fundamentals, Aptitude.

  • Q1. 

    N Queens Problem Statement

    You are provided with an integer 'N'. For an 'N' x 'N' chessboard, determine how to position 'N' queens such that no queen can attack another queen on the chessboard.

    Explanati...

  • Ans. Backtracking
    1. Instead of checking all the places on the chessboard, we can use backtracking and place queen row-wise or column-wise.
    2. Suppose we place queens row-wise, and we start with the very first row. Place the queen and move to the next row until either there is a solution or there are no viable cells left.
    3. As we backtrack, check to place the queen in the different columns of the same row.
    4. When we can place a queen at ...
  • Answered Anonymously
  • Q2. 

    Pair Sum Problem Statement

    Given an integer array ARR of size N and an integer S, your goal is to return a list of all pairs of elements such that the sum of elements of each pair equals S.

    Example:

    Inp...
  • Ans. Brute Force
    • Initialize a list to store our results.
    • For each element in the array 'ARR[i]', check if ('ARR[i]' + ‘ARR[j]’), equals to given sum or not, where ‘i’ < ‘j’ < ‘N’.
    • If the condition matches, add the pair('ARR[i]', ‘ARR[j]’) to the list. Sort the list of pairs as per the given output format and return this list.
    Space Complexity: O(1)Explanation:

    O(1).

     

    Constant extra space is required.

    Time Complexity: O...
  • Answered Anonymously
  • Q3. 

    Minimum Number of Platforms Needed Problem Statement

    You are given the arrival and departure times of N trains at a railway station for a particular day. Your task is to determine the minimum number of pl...

  • Ans. Space Complexity: O(1)Explanation: Time Complexity: O(1)Explanation:
  • Answered Anonymously
Round 2 - Coding Test 

Round duration - 120 minutes
Round difficulty - Easy

This round is an interesting experience to brainstorm, problem-solve and pair alongside a ThoughtWorks Developer that allows you to demonstrate hands-on coding, design, OOP, and solution skills on the code which you have submitted.The problem statement will be shared with you 20 minutes before the start time of the interview

Interview Preparation Tips

Eligibility criteriaNAThought Works interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare system design
Tip 2 : Practice coding questions
Tip 3 : Prepare and search previous interviews

Application resume tips for other job seekers

Tip 1 : Have atleast 3 great project
Tip 2 : Write only what you know and prepare well

Final outcome of the interviewRejected

Skills evaluated in this interview

Infogain Interview FAQs

How many rounds are there in Infogain Sdet Automation Test Engineer interview?
Infogain interview process usually has 1 rounds. The most common rounds in the Infogain interview process are Technical.
How to prepare for Infogain Sdet Automation Test 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 Infogain. The most common topics and skills that interviewers at Infogain expect are API Testing, Automation Testing and Cucumber.
What are the top questions asked in Infogain Sdet Automation Test Engineer interview?

Some of the top questions asked at the Infogain Sdet Automation Test Engineer interview -

  1. OOps concept in j...read more
  2. Automate calen...read more

Tell us how to improve this page.

Infogain Sdet Automation Test Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Infogain Sdet Automation Test Engineer Salary
based on 24 salaries
₹4.5 L/yr - ₹17.4 L/yr
30% less than the average Sdet Automation Test Engineer Salary in India
View more details

Infogain Sdet Automation Test Engineer Reviews and Ratings

based on 4 reviews

3.7/5

Rating in categories

3.9

Skill development

3.7

Work-life balance

3.4

Salary

3.7

Job security

3.4

Company culture

2.7

Promotions

3.7

Work satisfaction

Explore 4 Reviews and Ratings
Software Engineer
1.3k salaries
unlock blur

₹2.5 L/yr - ₹10.5 L/yr

Development Consultant
799 salaries
unlock blur

₹5.5 L/yr - ₹20 L/yr

Technical Lead
570 salaries
unlock blur

₹10.6 L/yr - ₹38 L/yr

Consultant
462 salaries
unlock blur

₹5.5 L/yr - ₹21 L/yr

Senior Consultant
374 salaries
unlock blur

₹7 L/yr - ₹28 L/yr

Explore more salaries
Compare Infogain 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