Upload Button Icon Add office photos
Premium 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

Proud winner of ABECA 2025 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Iris Software Senior Engineer Interview Questions and Answers

Updated 7 Jul 2025

14 Interview questions

A Senior Engineer was asked 4d ago
Q. Write an SQL query to show the employee with the highest salary in each department.
Ans. 

Retrieve the highest digit from employee IDs across all departments using SQL.

  • Use the MAX() function to find the highest value in a column.

  • Assuming a table structure: Employees(id INT, department VARCHAR).

  • Example query: SELECT MAX(id) FROM Employees GROUP BY department;

  • This will return the highest ID for each department.

A Senior Engineer was asked 2mo ago
Q. How are OOPS concepts used in the framework?
Ans. 

OOP concepts in frameworks enhance code reusability, maintainability, and scalability through encapsulation, inheritance, and polymorphism.

  • Encapsulation: Bundling data and methods that operate on the data within one unit, e.g., classes in Java.

  • Inheritance: Creating new classes based on existing ones to promote code reuse, e.g., a 'Dog' class inheriting from an 'Animal' class.

  • Polymorphism: Allowing methods to do di...

Senior Engineer Interview Questions Asked at Other Companies

Q1. What does the 'M' signify in M20, M25, and M30 grades of concrete ... read more
asked in Nagarro
Q2. Write a program that takes an integer N and an array of integers ... read more
asked in Tata Elxsi
Q3. What is Quality Assurance. Difference between Quality assurance a ... read more
Q4. Is it possible to work with multiple threads in core data? If so, ... read more
Q5. When would you perform a half or full engine overhaul?
A Senior Engineer was asked 2mo ago
Q. What is the structure of the framework?
Ans. 

A framework structure is a foundational design that organizes and supports software development processes.

  • Modularity: Frameworks promote modular design, allowing developers to build reusable components. Example: React components.

  • Abstraction: They provide a level of abstraction, simplifying complex tasks. Example: Django abstracts database interactions.

  • Convention over Configuration: Frameworks often follow conventi...

A Senior Engineer was asked 2mo ago
Q. What are the differences between Selenium 3 and Selenium 4?
Ans. 

Selenium 4 introduces significant improvements over Selenium 3, enhancing performance, features, and ease of use.

  • Selenium 4 supports the W3C WebDriver standard, improving compatibility across browsers.

  • Enhanced support for modern web applications with better handling of dynamic content.

  • New features like the 'Relative Locators' allow finding elements based on their position relative to other elements.

  • Improved docume...

A Senior Engineer was asked 12mo ago
Q. What are the features of JDK 8?
Ans. 

JDK 8 features include lambda expressions, functional interfaces, streams, and default methods.

  • Lambda expressions allow you to write code in a more concise and readable way.

  • Functional interfaces enable the use of lambda expressions.

  • Streams provide a way to work with sequences of elements efficiently.

  • Default methods allow interfaces to have concrete methods.

  • Date and Time API improvements.

🔥 Asked by recruiter 3 times
A Senior Engineer was asked 12mo ago
Q. Explain the internal workings of a hashmap.
Ans. 

HashMap is a data structure that stores key-value pairs and uses hashing to quickly retrieve values based on keys.

  • HashMap internally uses an array of linked lists to store key-value pairs.

  • When a key-value pair is added, the key is hashed to determine the index in the array where it will be stored.

  • If multiple keys hash to the same index, a linked list is used to handle collisions.

  • HashMap uses the hashCode() method ...

A Senior Engineer was asked
Q. What is the difference between a deep copy and a shallow copy?
Ans. 

Deep copy creates a new object and recursively copies all nested objects, while shallow copy creates a new object and copies the references to nested objects.

  • Deep copy duplicates all levels of the object hierarchy, ensuring that changes in the copied object do not affect the original object.

  • Shallow copy only duplicates the top-level object, so changes in the copied object may affect the original object.

  • Deep copy i...

Are these interview questions helpful?
A Senior Engineer was asked
Q. What are the different ways to set values in form groups?
Ans. 

Ways to set values in form groups

  • Use setValue() method to set values in form groups

  • Use patchValue() method to set values in form groups

  • Use reset() method to set values in form groups

A Senior Engineer was asked
Q. How do you add a dynamic component in a view?
Ans. 

To add a dynamic component in a view, use a framework or library that supports dynamic rendering and component creation.

  • Use a framework like React or Angular that allows for dynamic component creation

  • Create a component factory or use a component resolver to dynamically create and render components

  • Pass data or props to the dynamic component to customize its behavior

  • Update the view or component tree to include the d...

A Senior Engineer was asked
Q. Given a string representing a number, add one to it.
Ans. 

Add one to a given String of number

  • Convert the string to integer, add one, and convert back to string

  • Handle edge cases like leading zeros

  • Consider using built-in functions like parseInt() and toString()

Iris Software Senior Engineer Interview Experiences

17 interviews found

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

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. Complete ETL Process
  • Q2. Python Automation Testing
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic Questions on SQL and SSIS
Round 2 - Technical 

(1 Question)

  • Q1. Advanced question on SQL and SSIS
Round 3 - HR 

(1 Question)

  • Q1. Salary negotiation
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Explain previous experience
  • Ans. 

    I have over 8 years of experience in software engineering, focusing on full-stack development and team leadership.

    • Led a team of 5 engineers in developing a scalable e-commerce platform, resulting in a 30% increase in sales.

    • Implemented CI/CD pipelines that reduced deployment time by 50%, enhancing team productivity.

    • Worked on a healthcare application that improved patient data management, ensuring compliance with HIPAA r...

  • Answered by AI
  • Q2. Multithreading deep dive question asked

Senior Engineer Interview Questions & Answers

user image wayase sandip

posted on 12 Jun 2025

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

I appeared for an interview in Dec 2024, where I was asked the following questions.

  • Q1. Advance SQL questions
  • Q2. Questions on Pyspark
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Introduction of self
  • Q2. Tech stack related
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Internal working of hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to quickly retrieve values based on keys.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where it will be stored.

    • If multiple keys hash to the same index, a linked list is used to handle collisions.

    • HashMap uses the hashCode() method of ke...

  • Answered by AI
  • Q2. What are the feature of jdk 8
  • Ans. 

    JDK 8 features include lambda expressions, functional interfaces, streams, and default methods.

    • Lambda expressions allow you to write code in a more concise and readable way.

    • Functional interfaces enable the use of lambda expressions.

    • Streams provide a way to work with sequences of elements efficiently.

    • Default methods allow interfaces to have concrete methods.

    • Date and Time API improvements.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on new feature of java

Skills evaluated in this interview

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

Objective technical question was given.

Round 3 - Technical 

(3 Questions)

  • Q1. Java, DB, Spring, UI related questions asked.
  • Q2. CoreJava Multi-threading
  • Q3. Database many to many relattionship related question
Round 4 - Technical 

(1 Question)

  • Q1. Mutli-threading related questions
Round 5 - HR 

(1 Question)

  • Q1. Salary expectation and joining details.
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 Apr 2023. 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 - Technical 

(1 Question)

  • Q1. Power BI DAX calculations
Round 3 - Technical 

(1 Question)

  • Q1. RLS Implementation
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
6-8 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. Java coding like count of alphabet after removing spaces.
  • Q2. Sql query like show highest digit in all departments
  • Ans. 

    Retrieve the highest digit from employee IDs across all departments using SQL.

    • Use the MAX() function to find the highest value in a column.

    • Assuming a table structure: Employees(id INT, department VARCHAR).

    • Example query: SELECT MAX(id) FROM Employees GROUP BY department;

    • This will return the highest ID for each department.

  • Answered by AI

Senior Engineer Interview Questions & Answers

user image Khushboo Kumari

posted on 9 Apr 2025

Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. Oops concept in framework
  • Ans. 

    OOP concepts in frameworks enhance code reusability, maintainability, and scalability through encapsulation, inheritance, and polymorphism.

    • Encapsulation: Bundling data and methods that operate on the data within one unit, e.g., classes in Java.

    • Inheritance: Creating new classes based on existing ones to promote code reuse, e.g., a 'Dog' class inheriting from an 'Animal' class.

    • Polymorphism: Allowing methods to do differe...

  • Answered by AI
  • Q2. What is framework structure
  • Ans. 

    A framework structure is a foundational design that organizes and supports software development processes.

    • Modularity: Frameworks promote modular design, allowing developers to build reusable components. Example: React components.

    • Abstraction: They provide a level of abstraction, simplifying complex tasks. Example: Django abstracts database interactions.

    • Convention over Configuration: Frameworks often follow conventions t...

  • Answered by AI
  • Q3. Difference between selenium 3 and selenium 4
  • Ans. 

    Selenium 4 introduces significant improvements over Selenium 3, enhancing performance, features, and ease of use.

    • Selenium 4 supports the W3C WebDriver standard, improving compatibility across browsers.

    • Enhanced support for modern web applications with better handling of dynamic content.

    • New features like the 'Relative Locators' allow finding elements based on their position relative to other elements.

    • Improved documentati...

  • Answered by AI

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Iris Software?
Ask anonymously on communities.

Iris Software Interview FAQs

How many rounds are there in Iris Software Senior Engineer interview?
Iris Software interview process usually has 2-3 rounds. The most common rounds in the Iris Software interview process are Technical, Resume Shortlist and HR.
How to prepare for Iris Software Senior 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 Iris Software. The most common topics and skills that interviewers at Iris Software expect are Java, SQL, DevOps, Product Engineering and Python.
What are the top questions asked in Iris Software Senior Engineer interview?

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

  1. Java 8 vs 7 case studies. Stream vs collections case studi...read more
  2. Sql query like show highest digit in all departme...read more
  3. Add one to a given String of num...read more
How long is the Iris Software Senior Engineer interview process?

The duration of Iris Software Senior Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 16 interview experiences

Difficulty level

Easy 9%
Moderate 64%
Hard 27%

Duration

Less than 2 weeks 70%
2-4 weeks 20%
6-8 weeks 10%
View more
Iris Software Senior Engineer Salary
based on 469 salaries
₹17.5 L/yr - ₹31 L/yr
136% more than the average Senior Engineer Salary in India
View more details

Iris Software Senior Engineer Reviews and Ratings

based on 140 reviews

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.1

Salary

3.7

Job security

4.0

Company culture

3.6

Promotions

3.8

Work satisfaction

Explore 140 Reviews and Ratings
SDET + Python + ETL - Senior Engineer

Noida

3-7 Yrs

Not Disclosed

Java - Senior Engineer

Noida

4-8 Yrs

Not Disclosed

ETL Tester - Senior Engineer

Noida

5-8 Yrs

₹ 12.5-30 LPA

Explore more jobs
Senior Software Engineer
674 salaries
unlock blur

₹17.8 L/yr - ₹32 L/yr

Technical Lead
585 salaries
unlock blur

₹21.2 L/yr - ₹37 L/yr

Senior Engineer
469 salaries
unlock blur

₹17.5 L/yr - ₹31 L/yr

Senior Technical Consultant
400 salaries
unlock blur

₹17.7 L/yr - ₹30 L/yr

Senior Technology Engineer
355 salaries
unlock blur

₹18 L/yr - ₹33 L/yr

Explore more salaries
Compare Iris Software with

Xoriant

4.1
Compare

Photon Interactive

4.1
Compare

CitiusTech

3.3
Compare

HTC Global Services

3.5
Compare
write
Share an Interview