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 Interview Questions, Process, and Tips

Updated 18 Feb 2025

Top Iris Software Interview Questions and Answers

View all 84 questions

Iris Software Interview Experiences

Popular Designations

141 interviews found

Python Developer Interview Questions & Answers

user image Shubham Jaiswal

posted on 9 Oct 2024

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

(2 Questions)

  • Q1. Past project related questions
  • Q2. Python and sql queries
Round 2 - Coding Test 

Waiting for l2 round

Python Developer Interview Questions asked at other Companies

Q1. Tell me the logic of program to reverse a given string word by word without using any built in function.
View answer (9)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. How does consumer, producer work in kafka
  • Ans. 

    Consumers read data from topics, while producers write data to topics in Kafka.

    • Consumers subscribe to topics to read messages from them

    • Producers publish messages to topics for consumers to read

    • Consumers can be part of a consumer group to scale out consumption

    • Producers can specify key for messages to control partitioning

  • Answered by AI

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (41)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. WAP to check occurrence of words in a paragraph.
  • Ans. 

    A program to check the occurrence of words in a paragraph.

    • Split the paragraph into words using space as delimiter

    • Create a hashmap to store word frequencies

    • Iterate through the words and update the hashmap accordingly

    • Display the word frequencies

  • Answered by AI
  • Q2. What git command do you use incase PR build is failed
  • Ans. 

    Use git bisect command to find the commit that caused the build failure

    • Use 'git bisect start' to start the bisect process

    • Mark the current commit as bad with 'git bisect bad'

    • Mark a known good commit with 'git bisect good '

    • Git will automatically checkout commits for testing, mark them as good or bad until the culprit commit is found

Answered by AI

Skills evaluated in this interview

Top Iris Software Software Engineer Interview Questions and Answers

Q1. How to write any sentence (given to u ) in mirror image form in java?(ans :by 2 ways 1. reverse string function in string object 2 .by aaray conversion )
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 5 Aug 2024

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

I applied via Recruitment Consulltant and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Tableau interview questioins
  • Q2. SQl based quetions

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)

Iris Software interview questions for popular designations

 Senior Software Engineer

 (15)

 Senior Engineer

 (10)

 Technical Lead

 (9)

 Senior Technology Engineer

 (7)

 Software Engineer

 (6)

 Java Developer

 (5)

 Technology Engineer

 (5)

 QA Lead

 (4)

Senior Data Scientist Interview Questions & Answers

user image Buddhadeb Mondal

posted on 23 Sep 2024

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

I applied via Naukri.com

Round 1 - Coding Test 

AWS and Python, basic Machine learning questions

Round 2 - Coding Test 

Python, project description, AWS, in build package

Round 3 - Case Study 

Basic Machine learning data science

Senior Data Scientist Interview Questions asked at other Companies

Q1. What is the difference between logistic and linear regression?
View answer (4)

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

Round 1 - HR 

(1 Question)

  • Q1. Brief about yourself. Projects you been into. Why you would like to change the organisation? What made you feel to opt Iris Software?
Round 2 - Technical 

(1 Question)

  • Q1. Monitoring tools like JIRA, Splunk, Servicenow. Cases and CRM tools like Salesforce, Dynamics 365, and any other. SQL queries. Logs collection and reading. Application validation and other patching activit...
Round 3 - Technical 

(1 Question)

  • Q1. Some Python basics. Some power shell scripting questions. Networking basics. Azure Monitoring.
Round 4 - Case Study 

Case study of projects that you been into previously and how will you counter the cases and proactive cases to the prioritise Incidents.

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall experience was good, neither too difficult nor too easy. It was good 👍

Senior Application Support Engineer Interview Questions asked at other Companies

Q1. What is the defence in Financial or non Financial transactions.
View answer (1)

Jobs at Iris Software

View all
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Oops concepts, Encapsulation, Abstraction in detail with example
  • Q2. Types of beans in Java
  • Ans. 

    Java has two types of beans: stateful and stateless beans.

    • Stateful beans maintain conversational state with the client, while stateless beans do not.

    • Stateful beans are typically used for long-running conversations, while stateless beans are used for short-lived operations.

    • Examples of stateful beans include session beans, while examples of stateless beans include message-driven beans.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Code to sort an Array in ascending order
  • Ans. 

    Use a sorting algorithm like bubble sort or quicksort to arrange elements in ascending order.

    • Use a sorting algorithm like bubble sort, quicksort, or merge sort to rearrange elements in ascending order.

    • For example, you can implement bubble sort to compare adjacent elements and swap them if they are in the wrong order.

    • Another example is using quicksort to divide the array into smaller subarrays and recursively sort them.

  • Answered by AI
  • Q2. Find the second greatest number in an array
  • Ans. 

    Iterate through the array to find the second greatest number.

    • Iterate through the array and keep track of the greatest and second greatest numbers.

    • Compare each element with the current greatest and second greatest numbers.

    • Update the second greatest number if a new number is found that is greater than the current second greatest but less than the greatest.

  • Answered by AI

Skills evaluated in this interview

Engineer Trainee Interview Questions asked at other Companies

Q1. If 10 people had a meeting and they shake hands only once with each of the others, then how many handshakes will be there in total ?
View answer (8)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What are pipes in angular?
  • Ans. 

    Pipes in Angular are used to transform data in templates.

    • Pipes are used to format data before displaying it in the view.

    • They can be used to filter, sort, or manipulate data in various ways.

    • Examples include currency, date, uppercase, and lowercase pipes.

  • Answered by AI

Skills evaluated in this interview

Angular Frontend Developer Interview Questions asked at other Companies

Q1. How to implement interfaces without methods?
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What was your previous work ex?
  • Ans. 

    I have 5 years of experience working as a Business Analyst in the finance industry.

    • Worked on analyzing financial data to identify trends and make recommendations for improvement

    • Collaborated with cross-functional teams to gather requirements for new projects

    • Created detailed reports and presentations for senior management

    • Utilized data visualization tools such as Tableau to present findings

    • Participated in user acceptance

  • Answered by AI

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (9)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

ARTIFICAIL INTELLIGENCE

Round 2 - Aptitude Test 

BASED ON LOGICAL THINKING

Technical Support Engineer Interview Questions asked at other Companies

Q1. Admin Questions :- What is Relationships what are types of relationships
View answer (4)

Iris Software Interview FAQs

How many rounds are there in Iris Software interview?
Iris Software interview process usually has 2-3 rounds. The most common rounds in the Iris Software interview process are Technical, One-on-one Round and HR.
How to prepare for Iris Software 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, Multithreading, Core Java and Spring.
What are the top questions asked in Iris Software interview?

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

  1. How to write any sentence (given to u ) in mirror image form in java?(ans :by 2...read more
  2. why there is abstract ,interface and enum class in ja...read more
  3. Prepare Java 8, 11 Programs on Java 8 and 11 Multithreading Collection Design p...read more
How long is the Iris Software interview process?

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

Tell us how to improve this page.

Iris Software Interview Process

based on 137 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
CitiusTech Interview Questions
3.4
 • 268 Interviews
View all

Fast track your campus placements

View all

Iris Software Reviews and Ratings

based on 1.5k reviews

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

3.9

Salary

3.7

Job security

4.0

Company culture

3.6

Promotions

3.8

Work satisfaction

Explore 1.5k Reviews and Ratings
ML Ops Engineer

Noida,

Pune

+1

5-10 Yrs

Not Disclosed

Java React Developer

Noida,

Gurgaon / Gurugram

5-10 Yrs

Not Disclosed

Senior Java Developer

Noida,

Gurgaon / Gurugram

+1

7-10 Yrs

₹ 20-24.21 LPA

Explore more jobs
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