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

Clear (1)

Iris Software Software Engineer Interview Questions, Process, and Tips

Updated 13 Aug 2024

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 )
  • Q2. why there is abstract ,interface and enum class in java?
  • Q3. Object oriented software engg definition(definition contains word"framwork") ?and definitionof framwork
View all 12 questions

Iris Software Software Engineer Interview Experiences

6 interviews found

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

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

(1 Question)

  • Q1. Basic java and spring boot questions with some deeper knowledge.
Round 2 - Technical 

(1 Question)

  • Q1. Manger round to know about product and system
Round 3 - HR 

(1 Question)

  • Q1. Some behavioural and questions releated to why want to change and expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - brush up yours basics and check multithreading and microservices questions.

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

I applied via Naukri.com and was interviewed in Oct 2022. There were 4 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Angular Life Cycle hooks AOT vs JIT Call stack and event loop ngOnchanges vs ngDocheck @hostlistner component interaction content projection call, apply bind
Round 3 - Coding Test 

Duration 30 minutes, topics were related to Javascript and Angular

Round 4 - PM Round 

(1 Question)

  • Q1. Write a program to find count of character from a string. Write a program to sort array without using sort method
  • Ans. 

    Program to count characters in a string and sort an array without using sort method

    • Use a loop to iterate through the string and count each character

    • For sorting an array, use a loop to compare each element with all other elements and swap if necessary

    • Implement a sorting algorithm like bubble sort, insertion sort or quick sort

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep coding. Work on a self project. Clear fundamentals.

I applied via Naukri.com and was interviewed in Oct 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Explain the project and job and responsibilities
  • Ans. 

    As a Software Engineer, the project involves developing and maintaining software applications. The job responsibilities include coding, testing, debugging, and collaborating with the team.

    • Developing and maintaining software applications

    • Coding, testing, and debugging

    • Collaborating with the team

    • Implementing software solutions based on requirements

    • Optimizing application performance

    • Troubleshooting and resolving software def...

  • Answered by AI
Round 2 - Coding Test 

Write short code snippet to show your logic building

Round 3 - HR 

(1 Question)

  • Q1. Hobbies, Package, Date of joining and others

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on technical like coding

Iris Software interview questions for designations

 Senior Software Engineer

 (15)

 Associate Software Engineer

 (1)

 Software Engineer II

 (1)

 Senior Software Engineer 2

 (1)

 Senior QA Engineer -Software Testing

 (1)

 Software Developer

 (3)

 Technology Engineer

 (5)

 QA Engineer

 (3)

Interview Questionnaire 

1 Question

  • Q1. Multithreading, Executor Framework, Hashmap in detail, Terrify Threshold, Hashing, Sharding, Diff between Interface & Abstract class

Get interview-ready with Top Iris Software Interview Questions

Software Engineer Interview Questions & Answers

user image Sheetal D Kharat

posted on 14 Mar 2015

Interview Questionnaire 

13 Questions

  • Q1. Difference between java and c?
  • Ans. 

    Java is an object-oriented language while C is a procedural language.

    • Java is platform-independent while C is platform-dependent.

    • Java has automatic garbage collection while C requires manual memory management.

    • Java has built-in support for multithreading while C requires external libraries.

    • Java has a larger standard library compared to C.

    • Java is more secure than C due to its strong type checking and exception handling.

    • C ...

  • Answered by AI
  • Q2. Aggregation functions in DBMS?
  • Ans. 

    Aggregation functions are used to perform calculations on groups of data in a database.

    • Aggregation functions include COUNT, SUM, AVG, MAX, and MIN.

    • They are used with the GROUP BY clause to group data based on a specific column.

    • COUNT function returns the number of rows in a table or the number of non-null values in a column.

    • SUM function returns the sum of values in a column.

    • AVG function returns the average of values in ...

  • Answered by AI
  • Q3. 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 )
  • Ans. 

    Two ways to write a sentence in mirror image form in Java: reverse string function and array conversion.

    • Use the reverse() method of the String class to reverse the sentence

    • Convert the sentence to a character array, then swap the first and last characters, second and second-to-last characters, and so on until the middle is reached

    • Example: 'Hello World' becomes 'dlroW olleH'

  • Answered by AI
  • Q4. Why static is used in "public static void main"?
  • Ans. 

    Static is used in public static void main to allow the method to be called without creating an instance of the class.

    • Static methods belong to the class and not to any instance of the class.

    • The main method is the entry point of a Java program and needs to be called without creating an object of the class.

    • The static keyword allows the main method to be called directly from the class, without creating an instance of the c...

  • Answered by AI
  • Q5. Why there is abstract ,interface and enum class in java?
  • Ans. 

    Abstract classes, interfaces, and enums provide abstraction and modularity in Java.

    • Abstract classes provide a partial implementation of a class and cannot be instantiated.

    • Interfaces define a set of methods that a class must implement and can be used for multiple inheritance.

    • Enums provide a set of named constants.

    • All three are used for abstraction and modularity in Java.

    • Abstract classes and interfaces are used for polym...

  • Answered by AI
  • Q6. Object oriented software engg definition(definition contains word"framwork") ?and definitionof framwork
  • Ans. 

    Object-oriented software engineering is a framework for designing and developing software using objects.

    • Object-oriented software engineering is a methodology for designing and developing software using objects.

    • It involves creating classes and objects that encapsulate data and behavior.

    • Frameworks are pre-built structures that provide a foundation for building software applications.

    • Frameworks can include libraries, APIs,...

  • Answered by AI
  • Q7. Properties of java(object oriented languages)
  • Ans. 

    Java is an object-oriented language with features like inheritance, encapsulation, and polymorphism.

    • Inheritance allows classes to inherit properties and methods from other classes.

    • Encapsulation hides the implementation details of a class from other classes.

    • Polymorphism allows objects to take on multiple forms or behaviors.

    • Java also supports abstraction, interfaces, and exception handling.

    • Example: class Car extends Vehi...

  • Answered by AI
  • Q8. Normalization in DBMS (in detail with eg.)
  • Ans. 

    Normalization is a process of organizing data in a database to reduce redundancy and dependency.

    • Normalization is used to eliminate data redundancy and improve data integrity.

    • It involves dividing a database into two or more tables and defining relationships between them.

    • There are different levels of normalization, such as first normal form (1NF), second normal form (2NF), and so on.

    • Normalization helps in efficient data ...

  • Answered by AI
  • Q9. What is difference between ADBMS and DBMS?
  • Ans. 

    ADBMS stands for Advanced Database Management System which is an extension of DBMS with additional features.

    • ADBMS has advanced features like data mining, data warehousing, and online analytical processing.

    • ADBMS is used for handling large and complex data sets.

    • DBMS is a basic system for managing data and is used for small and simple data sets.

    • DBMS does not have advanced features like ADBMS.

    • Examples of ADBMS are Oracle, ...

  • Answered by AI
  • Q10. Your Introduction
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications.

    • Proficient in programming languages such as Java, Python, and JavaScript

    • Experience in developing RESTful APIs and microservices

    • Familiarity with front-end technologies such as HTML, CSS, and React

    • Strong understanding of database management systems like MySQL and MongoDB

    • Experience in Agile development methodologies

  • Answered by AI
  • Q11. Why u want do job?(why ur not doing post graduation?)
  • Ans. 

    I want to gain practical experience and contribute to the industry while also learning on the job.

    • I believe that hands-on experience is invaluable in the software engineering field

    • I am eager to apply my skills and knowledge to real-world projects

    • I am excited to work with a team and learn from experienced professionals

    • I am not currently pursuing post-graduation as I feel that gaining industry experience is more importan

  • Answered by AI
  • Q12. What will u do if ur from java background and company requires .NET peoples,not java peoples
  • Q13. Why this Company ?and some information about company( like achivements)

Interview Preparation Tips

Round: Test
Experience: Test contains 45 question having Maths(approx. 30 questions) , verbal & non-verbal , logical reasoning Qustions. 
1 hr to solve it.  And no negative marking .Easy aptitude test for me cause i hav given almost 8 apti tests before it. Most of the questions from R.S. Agarwal (Quantitative Aptitude)Book. we total 40 to 50 peoples given the test(All branch students eligibal for test above 60 % aggregate)
Duration: 60 minutes
Total Questions: 45

Round: Technical Interview
Experience: Out of 40-50 peoples appeared for aptitude test 12 students were eligibal for technical interview. Interview was in the Company . The interviewer ask the questions from the answers i am giving to his previous question .And trying to confuse me.
but after understanding my programming to his question and some logical answers to his qusetions he stops confusing  me. And go on saying 'You r correct or you r near to answer,think little bit more about it'.
Tips: Be confident , If u don't  know answer say that "i didn't brush up that topic". Don't go on interviwer's expression, they(expressions) always distract u.

Round: HR Interview
Experience: After 50-55 minutes of technical interview , we had HR interview.It was easy Interview,  all the 5 candidates have these same set of questions ,so we prepared the answers and all 5 got selected in company.

General Tips: Do aptitude test practice online more
Don't add things that u dont know in resume
(for freshers :keep resume exactly of 2 pages and simple,don't use different font  styles and size much)
Skills: Java programming, c++, sql(DBMS), Html
College Name: TERNA ENGINEERING COLLEGE
Motivation: It is college campus placement only, But The Representator of company(each) gives the motivation to all candiates mostly

Skills evaluated in this interview

Software Engineer Jobs at Iris Software

View all

Interview questions from similar companies

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 140 minutes
Round difficulty - Medium

Test timing was at 2:00 pm , it was conducted in a college and the environment was good for the test. Camera was a primary part of test, so no suspicious activity.

  • Q1. 

    Sum of Two Numbers Represented as Arrays

    Given two numbers in the form of two arrays where each element of the array represents a digit, calculate the sum of these two numbers and return this sum as an ar...

  • Ans. 

    Given two numbers represented as arrays, calculate their sum and return the result as an array.

    • Iterate through the arrays from right to left, adding digits and carrying over if necessary

    • Handle cases where one array is longer than the other by considering the remaining digits

    • Ensure the final sum array does not have any leading zeros

  • Answered by AI
Round 2 - Face to Face 

Round duration - 20 minutes
Round difficulty - Easy

The round was conducted at around 12 p.m. I was called at the college location and then it was conducted. The interviewer was quite polite and frank.

Round 3 - HR 

Round duration - 8 minutes
Round difficulty - Easy

This round was conducted right after finishing and clearing the technical round at the same place and on the same day.

Interview Preparation Tips

Eligibility criteriaAbove 60 %Wipro Limited interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Database Concepts, Coding problemsTime required to prepare for the interview - 2-3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice atleast 2-3 Coding problems daily so your logic building becomes stronger.
Tip 2 : Exercise problems based on OOPS concepts and others too.
Tip 3 : If you can have your own project built, then it's the major point and will act as a plus point.

Application resume tips for other job seekers

Tip 1 : Your resume should be in standard form, short and simple will be more effective.
Tip 2 : Whatever you have learned, you need to mention it in your resume as that will be your primary source of selection and having project on your resume is important.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Feb 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Hr

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be true to what you are putting before the interviewer . Try to put your ideas Add something you did well in your career like in projects /research which you know very well and versed in concepts about it for open interview so that interviewer can get bandwidth where he can ask questions from. This is simply a key .

I applied via Campus Placement and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. 1.Describe a situation where you have taken a quick decision and failed, and a situation where you succeeded. 2. What is a skill you have tried to achieve but failed? 3. Describe a decision you have taken ...

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Always try to take risk in small problems . When you face the consequences, you would be able to tackle bigger problems.
2. Every skill you learn, even if you didn't excel in it is not to be considered a waste of time/failure, you learn something simply by participating.

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about Yourself, some questions related to machine learning, and I was asked more questions to differentiate like differences between ml and ai, python and c, c and java and procedural and functiona...

Interview Preparation Tips

Interview preparation tips for other job seekers - Get a complete grip on your resume and be confident about what you say, If you don't know the answer it is okay to agree that you don't know the answer so that interviewer can ask the next questions.
Contribute & help others!
anonymous
You can choose to be anonymous

Iris Software Interview FAQs

How many rounds are there in Iris Software Software Engineer interview?
Iris Software interview process usually has 2-3 rounds. The most common rounds in the Iris Software interview process are Technical, Coding Test and HR.
How to prepare for Iris Software Software 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, ISO 27001 Lead Auditor, API Testing and AWS.
What are the top questions asked in Iris Software Software Engineer interview?

Some of the top questions asked at the Iris Software Software Engineer 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. Object oriented software engg definition(definition contains word"framwork") ?a...read more

Recently Viewed

INTERVIEWS

Iris Software

No Interviews

INTERVIEWS

Carwale

No Interviews

INTERVIEWS

Forbes Marshall

No Interviews

INTERVIEWS

WNS

No Interviews

INTERVIEWS

Forbes Marshall

No Interviews

INTERVIEWS

Iris Software

No Interviews

INTERVIEWS

Forbes Marshall

No Interviews

INTERVIEWS

Forbes Marshall

No Interviews

INTERVIEWS

Iris Software

No Interviews

INTERVIEWS

Iris Software

No Interviews

Tell us how to improve this page.

Iris Software Software Engineer Interview Process

based on 3 interviews

1 Interview rounds

  • Technical Round
View more

Fast track your campus placements

View all
Iris Software Software Engineer Salary
based on 134 salaries
Lock Unlock
₹6 L/yr - ₹21.9 L/yr
69% more than the average Software Engineer Salary in India
View more details

Iris Software Software Engineer Reviews and Ratings

based on 33 reviews

3.6/5

Rating in categories

3.7

Skill development

3.5

Work-life balance

3.6

Salary

3.5

Job security

3.8

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 33 Reviews and Ratings
Software Engineer

Mumbai

10-20 Yrs

Not Disclosed

Software Engineer : JAVA ( GST )

Mumbai

2-3 Yrs

Not Disclosed

Explore more jobs
Technical Lead
578 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
576 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Senior Engineer
403 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Senior Technical Consultant
367 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Senior Technology Engineer
331 salaries
unlock blur Lock Unlock

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