i
Iris Software
Filter interviews by
SQL join tables to combine data from multiple tables based on a related column
Use JOIN keyword to combine tables based on a related column
Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN
Specify the columns to join on using ON clause
Example: SELECT * FROM table1 INNER JOIN table2 ON table1.id = table2.id
Multithreading in Java allows multiple threads to execute concurrently, improving performance and responsiveness.
Multithreading is achieved by extending the Thread class or implementing the Runnable interface.
Threads share the same memory space but have their own program counter, stack, and local variables.
Java provides synchronized keyword and locks to prevent data corruption in multithreaded environments.
Example: Cre...
Lambdas in Java are anonymous functions that allow you to pass behavior as an argument to a method.
Lambdas are used to implement functional interfaces with a single abstract method.
They provide a concise way to write code by reducing boilerplate.
Syntax: (parameters) -> expression or statement block
Example: (int a, int b) -> a + b
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...
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.
What people are saying about Iris Software
I was interviewed in Apr 2024.
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 involves bundling data and methods that operate on the data into a single unit.
Polymorphism allows objects to be treated as instances of their parent class.
Abstraction hides the implementation d...
Iris Software interview questions for popular designations
Reasoning techinical and coding based ques
Get interview-ready with Top Iris Software Interview Questions
About 30 questions were asked
I applied via Naukri.com and was interviewed in Oct 2023. There were 2 interview rounds.
Business Analysts analyze business processes and systems to provide solutions for improvement. SQL knowledge is often required.
Business Analysts gather and analyze data to understand business needs and requirements
They work with stakeholders to define project scope and objectives
BA create detailed documentation of requirements and solutions
SQL knowledge is beneficial for querying databases and analyzing data
A Business Analyst (BA) analyzes business processes, identifies needs, and recommends solutions. SQL is a programming language used for managing and querying databases.
BA analyzes business processes to identify needs and recommend solutions
BA works closely with stakeholders to gather requirements and define project scope
SQL is a programming language used for managing and querying databases
SQL allows users to retrieve a...
30 Min Coding test face to face interview, solve one question
Deep dive into .NET Core and Angular
NET Core is a cross-platform, open-source framework for building modern, cloud-based, internet-connected applications.
Angular is a popular front-end framework for building dynamic web applications.
Understanding the architecture, features, and best practices of both .NET Core and Angular is essential for developing robust and scalable applications.
Integration of .NET Core backend with...
I applied via LinkedIn and was interviewed in Jun 2023. There were 4 interview rounds.
Use lambda function to print greater number
Define a lambda function that takes two parameters
Use the max() function inside the lambda to compare the two numbers
Call the lambda function with two numbers to print the greater one
OOPs concepts 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 to present the same interface for different data types.
Abstraction: Hiding the complex implementation detail
Fibonacci series code in iterative and recursive methods
Iterative method: Use a loop to calculate Fibonacci numbers
Recursive method: Define a function that calls itself to calculate Fibonacci numbers
Example for iterative method: int fib(int n) { int a = 0, b = 1, c; for(int i = 2; i <= n; i++) { c = a + b; a = b; b = c; } return b; }
Example for recursive method: int fib(int n) { if(n <= 1) return n; return fib(n-1) + f
Use two threads to print numbers 1-10 in correct order
Create two threads, one for printing odd numbers and one for printing even numbers
Use synchronization mechanisms like mutex or semaphore to ensure correct order
Example: Thread 1 prints 1, 3, 5, 7, 9 and Thread 2 prints 2, 4, 6, 8, 10
Unit testing in C++ involves writing test cases for individual units of code to ensure they work as expected.
Use a unit testing framework like Google Test or Catch2 to write and run test cases
Create separate test files for each unit of code being tested
Use assertions to check the expected behavior of the code under test
Mock dependencies or use dependency injection to isolate units for testing
Run tests regularly to catc
Some of the top questions asked at the Iris Software interview -
The duration of Iris Software interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 141 interviews
Interview experience
based on 1.5k reviews
Rating in categories
Technical Lead
578
salaries
| ₹0 L/yr - ₹0 L/yr |
Senior Software Engineer
576
salaries
| ₹0 L/yr - ₹0 L/yr |
Senior Engineer
403
salaries
| ₹0 L/yr - ₹0 L/yr |
Senior Technical Consultant
367
salaries
| ₹0 L/yr - ₹0 L/yr |
Senior Technology Engineer
331
salaries
| ₹0 L/yr - ₹0 L/yr |
TCS
Infosys
Wipro
HCLTech