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
3.7

based on 106 Reviews

Filter interviews by

IRIS Business Services Java Developer Interview Questions, Process, and Tips

Updated 23 Oct 2024

IRIS Business Services Java Developer Interview Experiences

1 interview found

Interview experience
4
Good
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 3 interview rounds.

Round 1 - Coding Test 

Have to solve 2 coding questions on coding platform

Round 2 - Technical 

(5 Questions)

  • Q1. Oops concept in java, its significance
  • Ans. 

    Oops concept in Java refers to Object-Oriented Programming principles like inheritance, encapsulation, polymorphism, and abstraction.

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

    • Encapsulation hides the internal state of an object and restricts access to it.

    • Polymorphism allows objects to be treated as instances of their parent class.

    • Abstraction focuses on the essential characteristics

  • Answered by AI
  • Q2. Thread life cycle
  • Q3. How microservices communicates
  • Ans. 

    Microservices communicate through lightweight protocols like HTTP, messaging queues, and RPC.

    • HTTP: RESTful APIs are commonly used for communication between microservices.

    • Messaging queues: Services can communicate asynchronously through message brokers like RabbitMQ or Kafka.

    • RPC (Remote Procedure Call): Services can directly call each other's functions over the network.

  • Answered by AI
  • Q4. Questions about Collection, hashmap
  • Q5. Java 8 features, lambda, stream api coding question
Round 3 - Technical 

(6 Questions)

  • Q1. Project specific questions
  • Q2. @autowired, @qualifier, @primary, @transient, @volatile keyword
  • Q3. Use of static keyword
  • Ans. 

    The static keyword in Java is used to create class-level variables and methods that can be accessed without creating an instance of the class.

    • 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

  • Answered by AI
  • Q4. Dynamic method dispatch
  • Q5. DB connections flow in spring boot
  • Ans. 

    DB connections flow in Spring Boot involves configuring data source, creating connection pool, and managing transactions.

    • Configure data source in application.properties or application.yml

    • Use @EnableJpaRepositories to enable JPA repositories

    • Create connection pool using HikariCP or Tomcat JDBC

    • Manage transactions using @Transactional annotation

  • Answered by AI
  • Q6. Rest vs Soap web services
  • Ans. 

    REST is lightweight, uses standard HTTP methods, and is more flexible. SOAP is more rigid, uses XML, and has built-in security features.

    • REST uses standard HTTP methods like GET, POST, PUT, DELETE for communication.

    • SOAP uses XML for communication and has built-in security features like WS-Security.

    • REST is more lightweight and flexible, making it easier to work with in modern web development.

    • SOAP is more rigid and has a ...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

It was easy test, basic java mcq questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Collection framework
  • Q2. JDBC steps with proper explanation
  • Ans. 

    JDBC steps involve loading the driver, establishing a connection, creating a statement, executing the query, and processing the results.

    • Load the JDBC driver using Class.forName() method

    • Establish a connection to the database using DriverManager.getConnection() method

    • Create a statement object using the connection.createStatement() method

    • Execute the query using statement.executeQuery() method

    • Process the results by iterati

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
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 - One-on-one 

(3 Questions)

  • Q1. Your browser does not have completed the best tttttttt I will be in tttttttt I will be in the It sector and service packages.
  • Q2. What is the meaning of the is a professional like you ?
  • Q3. Is it possible to connect with a professional like.

Interview Preparation Tips

Interview preparation tips for other job seekers - Vvbjmnci. Nhujhcdyi rhbtimn fdbbfdnbvfr dfvhuv. Jytfvbsi th E sabu mane achi na nai moro gote job toh dream of Technology I will be in the It sector and materials engineering and materials
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. About yourself and background only

Interview Preparation Tips

Interview preparation tips for other job seekers - good good
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Atharva College of Engineering, Mumbai and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

I applied in campus placement first round is aptitude test

Round 2 - Technical 

(4 Questions)

  • Q1. Ask question on oops concepts
  • Q2. What ia polymorphism Pointers etc.
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is called with.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: Animal class with methods eat() and sleep(). Dog and Cat classes can inherit from Animal and override

  • Answered by AI
  • Q3. Asked about academic project what is your role on these project
  • Q4. Based on resume asked questions and mostly asked the oops and c++ concept
Round 3 - HR 

(1 Question)

  • Q1. Based on resume and asked weakness ,strength

Interview Preparation Tips

Interview preparation tips for other job seekers - Company is good my friend selected
Prepare for c++ and oops basic concept
Resume based questions

I was interviewed in Jan 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

  • Q1. Cycle Detection in a Singly Linked List

    You have given a Singly Linked List of integers, determine if it forms a cycle or not.

    A cycle occurs when a node's next points back to a previous node in the ...

  • Ans. 

    The task is to determine if a given singly linked list forms a cycle or not.

    • A cycle occurs when a node's next points back to a previous node in the list.

    • To solve this problem, we can use the Floyd's Cycle-Finding Algorithm.

    • The algorithm uses two pointers, one moving at a normal pace and the other moving twice as fast.

    • If there is a cycle, the fast pointer will eventually catch up to the slow pointer.

    • If the fast pointer ...

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

  • Q1. Minimum Depth Of Binary Tree

    You have been given a Binary Tree of integers, find the minimum depth of this Binary Tree. The minimum depth of a Binary Tree is the number of nodes along the shortest path fro...

  • Ans. 

    The minimum depth of a binary tree is the number of nodes along the shortest path from the root node down to the nearest leaf node.

    • The minimum depth can be found by performing a breadth-first search (BFS) traversal of the binary tree

    • During the BFS traversal, keep track of the current level and increment the depth by 1 for each level

    • Stop the BFS traversal when a leaf node is encountered and return the depth as the minim

  • Answered by AI
  • Q2. Intersection Of Two Arrays

    You are given two arrays 'A' and 'B' of size 'N' and 'M' respectively. Both these arrays are sorted in non-decreasing order. You have to find the ...

  • Ans. 

    The problem is to find the intersection of two sorted arrays.

    • Use two pointers to iterate through the arrays.

    • Compare the elements at the current pointers and move the pointers accordingly.

    • If the elements are equal, add it to the intersection array and move both pointers.

    • If the element in the first array is smaller, move the first pointer.

    • If the element in the second array is smaller, move the second pointer.

    • Repeat until...

  • Answered by AI
  • Q3. Operating System Question

    What is the difference between a mutex and a semaphore

  • Ans. 

    A mutex is a binary semaphore used for mutual exclusion, while a semaphore is a generalized synchronization primitive.

    • Mutex is used to protect a critical section of code, allowing only one thread to access it at a time.

    • Semaphore is used to control access to a shared resource, allowing multiple threads to access it simultaneously.

    • Mutex has ownership, meaning the thread that locks it must unlock it.

    • Semaphore does not hav...

  • Answered by AI
Round 3 - HR 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. Technical Questions

    It was a managerial round. The interviewer started by introducing himself and then asked for my introduction. We then had an in-depth discussion on Cloud Computing, its importance and di...

  • Ans. 

    The interviewer asked about Cloud Computing, OSI layers, network security, and security protocols.

    • Discussed the importance of Cloud Computing

    • Talked about the different OSI layers

    • Explored the significance of network security in today's world

    • Discussed various security protocols in place

    • Had a healthy and friendly discussion

  • Answered by AI
Round 4 - HR 

(1 Question)

Round duration - 25 minutes
Round difficulty - Easy

  • Q1. Basic HR questions

    The interviewer introduced himself and then asked for my introduction. He then asked me why I wanted to join F5 networks and why they should hire me. He then told me in-depth about the co...

  • Ans. 

    I wanted to join F5 networks because of their strong reputation in the industry and their commitment to innovation and customer satisfaction.

    • I am impressed by F5 networks' track record of delivering cutting-edge solutions to their clients.

    • I believe my skills and experience align well with the company's goals and values.

    • F5 networks' focus on customer satisfaction resonates with my own commitment to providing excellent s...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteriaMinimum CGPA Required: 7.0F5 Networks interview preparation:Topics to prepare for the interview - Data Structure and Algorithms, Operating Systems, Object-Oriented Programming, Computer Networks, System DesignTime required to prepare for the interview - 12 monthsInterview preparation tips for other job seekers

Tip 1 : Practice a lot of DSA questions on various online platforms. 
Tip 2 : Regularly go back to some of the typical DSA questions.
Tip 3 : Give equal importance to OS, OOPS, and CN subjects.

Application resume tips for other job seekers

Tip 1 : Be thorough with your resume to answer anything and everything from your resume.
Tip 2 : Do not put false information on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

It was easy test, basic java mcq questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Collection framework
  • Q2. JDBC steps with proper explanation
  • Ans. 

    JDBC steps involve loading the driver, establishing a connection, creating a statement, executing the query, and processing the results.

    • Load the JDBC driver using Class.forName() method

    • Establish a connection to the database using DriverManager.getConnection() method

    • Create a statement object using the connection.createStatement() method

    • Execute the query using statement.executeQuery() method

    • Process the results by iterati

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a software developer with 5 years of experience in Java, Python, and SQL.

    • 5 years of experience in Java, Python, and SQL

    • Strong problem-solving skills

    • Experience working in Agile development environment

  • Answered by AI
  • Q2. What is React and react native
  • Ans. 

    React is a JavaScript library for building user interfaces, while React Native is a framework for building mobile applications using React.

    • React is a JavaScript library developed by Facebook for building interactive user interfaces.

    • React Native is a framework that allows developers to build mobile applications using React.

    • React uses a virtual DOM to improve performance by updating only the necessary components.

    • React Na...

  • Answered by AI

Skills evaluated in this interview

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

Aptitude test was based on real world scenario

Round 2 - Coding Test 

In 50 minutes 3 questions were asked to be solved.
Difficulty from moderate to hard

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

I applied via Walk-in

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

Microsoft technologies

Round 3 - Technical 

(1 Question)

  • Q1. Session management

IRIS Business Services Interview FAQs

How many rounds are there in IRIS Business Services Java Developer interview?
IRIS Business Services interview process usually has 3 rounds. The most common rounds in the IRIS Business Services interview process are Technical and Coding Test.
How to prepare for IRIS Business Services Java Developer 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 Development, Requirement Gathering, System Design, Test Cases and Client Interaction.
What are the top questions asked in IRIS Business Services Java Developer interview?

Some of the top questions asked at the IRIS Business Services Java Developer interview -

  1. Oops concept in java, its significa...read more
  2. DB connections flow in spring b...read more
  3. How microservices communica...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 IRIS Business Services interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

NTT Data Interview Questions
3.9
 • 596 Interviews
3i Infotech Interview Questions
3.5
 • 139 Interviews
KFintech Interview Questions
3.5
 • 129 Interviews
Microland Interview Questions
3.5
 • 124 Interviews
NSE.IT Interview Questions
3.6
 • 122 Interviews
CAMS Interview Questions
3.7
 • 109 Interviews
View all

Fast track your campus placements

View all
IRIS Business Services Java Developer Salary
based on 13 salaries
₹3 L/yr - ₹9.6 L/yr
19% less than the average Java Developer Salary in India
View more details
Software Engineer
69 salaries
unlock blur

₹2.5 L/yr - ₹9 L/yr

Software Developer
45 salaries
unlock blur

₹2 L/yr - ₹11.6 L/yr

Senior Software Engineer
30 salaries
unlock blur

₹4.9 L/yr - ₹12.1 L/yr

Business Analyst
25 salaries
unlock blur

₹3.2 L/yr - ₹11 L/yr

QA Engineer
21 salaries
unlock blur

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

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview