Upload Button Icon Add office photos
Engaged Employer

i

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

IRIS Business Services Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

IRIS Business Services Software Engineer Interview Questions and Answers

Updated 15 Jan 2025

IRIS Business Services Software Engineer Interview Experiences

6 interviews found

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

(1 Question)

  • Q1. What is difference between .Net and .Net core
  • Ans. 

    The main difference between .Net and .Net Core is that .Net Core is a cross-platform, open-source framework while .Net is Windows-only.

    • Net Core is cross-platform, supporting Windows, macOS, and Linux

    • .Net Core is open-source, allowing for community contributions and faster updates

    • .Net Core is modular, allowing developers to include only the necessary components for their application

    • .Net Core has better performance and s...

  • Answered by AI

Software Engineer Interview Questions & Answers

user image Mayank Shedge

posted on 30 Sep 2024

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

Based on logical reasoning mostly

Round 2 - Coding Test 

Easy to medium 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
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Jan 2024.

Round 1 - Technical 

(1 Question)

  • Q1. What is difference between >Net and .Net Core
  • Ans. 

    The main difference between .Net and .Net Core is that .Net Core is a cross-platform, open-source framework while .Net is Windows-only.

    • Net Core is cross-platform, supporting Windows, macOS, and Linux

    • .Net Core is open-source, allowing for community contributions and faster updates

    • .Net Core is modular, allowing developers to include only the necessary components for their application

    • .Net Core has better performance and s...

  • Answered by AI

I applied via Recruitment Consulltant and was interviewed in Nov 2021. 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. SQL queries, Java string questions, collection hierarchy
Round 3 - Technical 

(1 Question)

  • Q1. Oops concepts, keyboard

Interview Preparation Tips

Interview preparation tips for other job seekers - This organisation is not good for freshers, no one help you while working

IRIS Business Services interview questions for designations

 Senior Software Engineer

 (1)

 Web Developer

 (1)

 Java Developer

 (1)

Software Engineer Interview Questions & Answers

user image Paresh Patil

posted on 28 Mar 2015

Interview Preparation Tips

Round: Test
Experience: Aptitude was quite easy.. it was written test n der was no negative marking. almost all questions wer from R.S.AGARWAL. it was a one hr test. topics wer time & distance , alligation , profit &loss, percentage etc. Result was declared on that evening itself. i scored 26 marks. out of 42 students only 14 wer selected for technical round.
Tips: Practice the solved sums from any book u refer.. also refer FAQ's..
Duration: 60 minutes
Total Questions: 45

Round: Technical Interview
Experience: Develop basic skills, try to understand formulaes

General Tips: 1: Be Confident.
2: Keep Smiling.
3: Do not be Panic.
4: Remember they are here to hire you but not reject you.
5: Do not loose hope.
6: Believe at yourself.
7: Start preparing early.
8: Do demo interviews with your friend.
Skill Tips: NA
Skills: basic programming skills, Logical Reasoning
College Name: TERNA ENGINEERING COLLEGE
Motivation: Every body joins a comapny for making a software or earning money. But I was always motivated to MAKE MONEY. I have taken this job because they have very extensive work in Share Market and they have lots of MBA from IIM's, Lots of CAs, CS. Thats why i have choosen Edelweiss. I have rejected epic System USA for this profile.

Software Engineer Interview Questions & Answers

user image Paresh Patil

posted on 14 Mar 2015

Interview Preparation Tips

Round: Test
Experience: Aptitude test was not so hard and it was written test. No negative marking. Almost all questions were from R S Aggrawal. There were 45 questions and the time limit was 1 hour. Topics were Time and distance, work, alligation, profit and loss, percentage etc. Result declared on that evening. I scored 26 marks. Out 42 students 14 were for shortlisted for technical round.
Tips: Only Practice..Practice..Practice!!!
Develop basic concepts. Try to understand formulae..
Duration: 1 Hr minute
Total Questions: 45

College Name: TERNA ENGINEERING COLLEGE

Interview questions from similar companies

Round 1 - Technical 

(2 Questions)

  • Q1. SQL windows functions
  • Q2. .Net framework quetions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself and practice well, senior management to take the interviews so talk more about your visions and values you can bring to the organisation

Interview Questionnaire 

1 Question

  • Q1. Runtime pollymorphism

Interview Preparation Tips

Round: Test
Experience: I scored good.
Tips: Core java good knowledge.
Duration: 30 minutes
Total Questions: 25

Round: Technical Interview
Experience: like this many ques from core java and hibernate and sql also and I scored good.
Tips: Command over core java and sql also.

I applied via Naukri.com and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. What is Singleton Class?
  • Ans. 

    A Singleton Class is a class that can only have one instance and provides a global point of access to it.

    • Singleton Class restricts the instantiation of a class to a single object.

    • It is used when only one instance of a class is required throughout the system.

    • It provides a global point of access to the instance.

    • It is implemented by making the constructor private and providing a static method to access the instance.

    • Exampl...

  • Answered by AI
  • Q2. Why do we use Static in java
  • Ans. 

    Static keyword in Java is used to create class-level variables and methods.

    • Static variables are shared among all instances of a class

    • Static methods can be called without creating an instance of the class

    • Static blocks are used to initialize static variables

    • Static import is used to import static members of a class

  • Answered by AI
  • Q3. Write Program with Singleton class
  • Ans. 

    Singleton class ensures only one instance of a class is created and provides a global point of access to it.

    • Create a private constructor to prevent direct instantiation of the class

    • Create a private static instance of the class

    • Create a public static method to get the instance of the class

    • Ensure thread safety by using synchronized keyword or static initialization

    • Example: Database connection manager

  • Answered by AI
  • Q4. Internal working of Hashmap
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and uses hashing to retrieve values quickly.

    • Hashmap uses an array to store the key-value pairs

    • The keys are hashed to generate an index in the array

    • If two keys hash to the same index, a linked list is used to store the values

    • Retrieving a value involves hashing the key to find the index and then traversing the linked list if necessary

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - With 2 Years of experience, you can't expect people to be master on any topic, Stop humiliating people by asking questions on a single topic only.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Sep 2023. There were 3 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 Resume tips
Round 2 - Coding Test 

All basic coding questions on pattern and star sums it easy

Round 3 - One-on-one 

(2 Questions)

  • Q1. About Yourself full information
  • Q2. Role that u want

Interview Preparation Tips

Interview preparation tips for other job seekers - All good just stay confident
Contribute & help others!
anonymous
You can choose to be anonymous

IRIS Business Services Interview FAQs

How many rounds are there in IRIS Business Services Software Engineer interview?
IRIS Business Services interview process usually has 1-2 rounds. The most common rounds in the IRIS Business Services interview process are Technical, Resume Shortlist and Aptitude Test.
How to prepare for IRIS Business Services 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 Business Services. The most common topics and skills that interviewers at IRIS Business Services expect are Application Server, J2Ee, Java, MVC and MySQL.
What are the top questions asked in IRIS Business Services Software Engineer interview?

Some of the top questions asked at the IRIS Business Services Software Engineer interview -

  1. what is difference between >Net and .Net C...read more
  2. SQL queries, Java string questions, collection hierar...read more
  3. Oops concepts, keybo...read more

Recently Viewed

INTERVIEWS

Ind-Swift Laboratories

No Interviews

LIST OF COMPANIES

IRIS Business Services

Locations

INTERVIEWS

Ind-Swift Laboratories

No Interviews

INTERVIEWS

IRIS Business Services

No Interviews

INTERVIEWS

IRIS Business Services

No Interviews

INTERVIEWS

Schneider Electric

No Interviews

LIST OF COMPANIES

Ind-Swift Laboratories

Locations

SALARIES

CodeArray Technologies

INTERVIEWS

Ind-Swift Laboratories

No Interviews

INTERVIEWS

IRIS Business Services

No Interviews

Tell us how to improve this page.

IRIS Business Services Software Engineer Interview Process

based on 3 interviews

1 Interview rounds

  • Technical Round
View more

Fast track your campus placements

View all
IRIS Business Services Software Engineer Salary
based on 57 salaries
₹2.8 L/yr - ₹9 L/yr
35% less than the average Software Engineer Salary in India
View more details

IRIS Business Services Software Engineer Reviews and Ratings

based on 21 reviews

3.1/5

Rating in categories

3.2

Skill development

2.9

Work-life balance

3.2

Salary

3.5

Job security

3.2

Company culture

3.0

Promotions

2.3

Work satisfaction

Explore 21 Reviews and Ratings
Software Engineer
57 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
49 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
30 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Analyst
27 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Engineer
20 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare IRIS Business Services with

Karvy Data Management Services

3.8
Compare

CAMS

3.7
Compare

KFintech

3.5
Compare

Central Depository Services (I)

3.3
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent