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

Filter interviews by

Iris Software Senior Engineer Interview Questions, Process, and Tips

Updated 17 Jun 2024

Top Iris Software Senior Engineer Interview Questions and Answers

View all 10 questions

Iris Software Senior Engineer Interview Experiences

10 interviews found

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.

Senior Engineer Interview Questions Asked at Other Companies

Q1. what is the meaning of M in M20,M25,M30 grade of concrete?
asked in Nagarro
Q2. Write a program: two input, one is N(any integer, lets say 3), se ... read more
asked in Tata Elxsi
Q3. What is Quality Assurance. Difference between Quality assurance a ... read more
asked in Qburst
Q4. Is it possible to work with multiple threads in core data? If so, ... read more
Q5. When you will perform Half or Full engine overhauling.
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:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Power BI DAX calculations
Round 3 - Technical 

(1 Question)

  • Q1. RLS Implementation
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Java Multithreading
  • Q2. Core java using java 8 features
  • Ans. 

    Core Java features in Java 8 include lambda expressions, functional interfaces, streams, and default methods.

    • Lambda expressions allow you to pass functionality as an argument to a method.

    • Functional interfaces have a single abstract method and can be used with lambda expressions.

    • Streams provide a way to process collections of objects in a functional style.

    • Default methods allow interfaces to have methods with implementat...

  • Answered by AI
  • Q3. Oops concepts in java
  • Ans. 

    Oops concepts in java refer to Object-Oriented Programming principles like Inheritance, Encapsulation, Polymorphism, and Abstraction.

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

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

    • Polymorphism: Ability of a method to do different things based on the object it is acting upon.

    • Abstraction: Hiding the imp...

  • Answered by AI
  • Q4. Spring MVC and Batch
  • Q5. Basic SQL queries, joins and all

Interview Preparation Tips

Interview preparation tips for other job seekers - Be genuine, whatever you know explain well.

Skills evaluated in this interview

Iris Software interview questions for designations

 Senior Software Engineer

 (15)

 Senior Technology Engineer

 (7)

 Senior Quality Engineer

 (2)

 Senior Engineer L2

 (1)

 Senior Sdet Engineer

 (1)

 Senior Development Engineer

 (1)

 Senior Data Engineer

 (1)

 Engineer

 (1)

I applied via Naukri.com and was interviewed in Apr 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Java 8 vs 7 case studies. Stream vs collections case studies.
  • Ans. 

    Java 8 introduced streams which are more efficient than collections in certain cases.

    • Streams are useful for processing large amounts of data in parallel

    • Collections are better for small amounts of data or when modifying data

    • Java 8's stream API provides a functional programming approach to data processing

    • Java 7's collections API is more traditional and imperative

    • Example: Using streams to filter and map data from a databa...

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

(1 Question)

  • Q1. Add one to a given String of number
  • 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()

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Hash map implementation. exception handling in lambda exp. microservices architecture.
Round 5 - Client Interview 

(1 Question)

  • Q1. Why u want to join?

Interview Preparation Tips

Topics to prepare for Iris Software Senior Engineer interview:
  • Core Java
  • Spring Framework
  • Microservices
  • RDBMS
Interview preparation tips for other job seekers - Focus on the tech stack u have worked on.
Focus on concepts and basics.

Skills evaluated in this interview

Get interview-ready with Top Iris Software Interview Questions

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

I applied via Approached by Company and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Difference between deep and 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 is mor...

  • Answered by AI
  • Q2. 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

  • Answered by AI
  • Q3. How to add dynamic component in 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 dynami

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Spend time on basics

Skills evaluated in this interview

Senior Engineer Jobs at Iris Software

View all
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. All Concurrent Utility Classes and their uses.
  • Ans. 

    Concurrent Utility Classes provide support for concurrent programming in Java.

    • ConcurrentHashMap: Thread-safe implementation of Map interface.

    • CopyOnWriteArrayList: Thread-safe implementation of List interface.

    • CountDownLatch: Synchronization aid that allows one or more threads to wait until a set of operations being performed in other threads completes.

    • Semaphore: Controls the number of threads that can access a shared re...

  • Answered by AI
  • Q2. Basic SQL queries, mostly from Joins, Grouping
  • Q3. Core Java, Java 8
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Basic concepts of java , spring boot , angular and some coding Average interview . easy to crack if basics are clear
Round 3 - Technical 

(1 Question)

  • Q1. Little more deep on java , angular and some scenario based questions

Interview Questionnaire 

3 Questions

  • Q1. Core java
  • Q2. Spring and springboot, JDK 8
  • Q3. Mostly 2 technical and one manager

Interview Preparation Tips

Interview preparation tips for other job seekers - They will ask mostly java, and not frontend even though you are full stack. They will just assign project whichever works for them

Interview Questionnaire 

2 Questions

  • Q1. Java, jdk8, and sql
  • Q2. Core java questions mostl, threading, collection, oops concept. Design patterns and JDK 8 features

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 One-on-one Round.
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, Multithreading, Spring Boot, SQL and Core Java.
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. Add one to a given String of num...read more
  3. How to add dynamic component in v...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.

Iris Software Senior Engineer Interview Process

based on 8 interviews

3 Interview rounds

  • Resume Shortlist Round
  • Technical Round - 1
  • Technical Round - 2
View more

Fast track your campus placements

View all
Iris Software Senior Engineer Salary
based on 400 salaries
₹9.5 L/yr - ₹31 L/yr
131% more than the average Senior Engineer Salary in India
View more details

Iris Software Senior Engineer Reviews and Ratings

based on 120 reviews

4.1/5

Rating in categories

4.1

Skill development

4.0

Work-life balance

4.1

Salary

3.7

Job security

4.0

Company culture

3.7

Promotions

3.8

Work satisfaction

Explore 120 Reviews and Ratings
Technical Lead
573 salaries
unlock blur

₹15 L/yr - ₹36.2 L/yr

Senior Software Engineer
573 salaries
unlock blur

₹10 L/yr - ₹32 L/yr

Senior Engineer
400 salaries
unlock blur

₹9.5 L/yr - ₹31 L/yr

Senior Technical Consultant
367 salaries
unlock blur

₹9.5 L/yr - ₹29.5 L/yr

Senior Technology Engineer
330 salaries
unlock blur

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