Upload Button Icon Add office photos
Engaged Employer

i

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

Iris Software Verified Tick

Compare button icon Compare button icon Compare
4.1

based on 1.5k Reviews

Filter interviews by

Iris Software Senior Sdet Engineer Interview Questions and Answers

Updated 24 Jun 2024

Iris Software Senior Sdet Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Reasoning techinical and coding based ques

Round 2 - Technical 

(2 Questions)

  • Q1. Asked about exceptions
  • Q2. Asked about api chaining

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

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

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
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 experience
5
Excellent
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 

Recerse string using java

Round 3 - Technical 

(1 Question)

  • Q1. Tell me all oops features
  • Ans. 

    Object-oriented programming features include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Ability for a class to inherit properties and behavior from another class.

    • Polymorphism: Ability for objects of different classes to respond to the same message in different ways.

    • Abstraction: Hiding the complex imp...

  • Answered by AI

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

Iris Software Interview FAQs

How many rounds are there in Iris Software Senior Sdet Engineer interview?
Iris Software interview process usually has 2 rounds. The most common rounds in the Iris Software interview process are Aptitude Test and Technical.
What are the top questions asked in Iris Software Senior Sdet Engineer interview?

Some of the top questions asked at the Iris Software Senior Sdet Engineer interview -

  1. asked about excepti...read more
  2. asked about api chain...read more

Tell us how to improve this page.

Iris Software Senior Sdet Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 798 Interviews
CitiusTech Interview Questions
3.4
 • 266 Interviews
View all

Fast track your campus placements

View all
Senior Software Engineer
567 salaries
unlock blur

₹10 L/yr - ₹32 L/yr

Technical Lead
530 salaries
unlock blur

₹15 L/yr - ₹36.2 L/yr

Senior Engineer
392 salaries
unlock blur

₹9.5 L/yr - ₹31 L/yr

Senior Technical Consultant
386 salaries
unlock blur

₹9.5 L/yr - ₹29 L/yr

Senior Technology Engineer
326 salaries
unlock blur

₹11.8 L/yr - ₹32 L/yr

Explore more salaries
Compare Iris Software with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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