Upload Button Icon Add office photos
Engaged Employer

i

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

IBS Software Services Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

IBS Software Services Interview Questions, Process, and Tips

Updated 5 Feb 2025

Top IBS Software Services Interview Questions and Answers

View all 65 questions

IBS Software Services Interview Experiences

Popular Designations

107 interviews found

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

I applied via Approached by Company and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Java springboot basic to intermediate question
  • Q2. Java stream questions
Round 2 - Technical 

(2 Questions)

  • Q1. Easy level DSA questions
  • Q2. Project based questions

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
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 Aug 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Fancy string problem

Round 2 - Technical 

(4 Questions)

  • Q1. You are given 2 tables, customer and orders, you have to write an SQL query to fetch the total order placed by each customer and also give the total order amount.
  • Q2. Java Streams question to find the total number of employees that have salary greater than 50000
  • Ans. 

    Use Java Streams to find total employees with salary > 50000

    • Filter employees with salary > 50000 using stream.filter()

    • Count the number of employees using stream.count()

  • Answered by AI
  • Q3. The various annotations used in Springboot @Entity, @RestController etc
  • Ans. 

    Annotations in Springboot like @Entity, @RestController are used for defining classes and endpoints respectively.

    • Annotations like @Entity are used to define JPA entities in Springboot.

    • Annotations like @RestController are used to define RESTful web services endpoints.

    • Annotations like @Autowired are used for dependency injection in Springboot.

  • Answered by AI
  • Q4. AWS services used in my previous project
  • Ans. 

    In my previous project, I used AWS services such as EC2, S3, and RDS for hosting, storage, and database management.

    • EC2 for hosting application servers

    • S3 for storing and retrieving files

    • RDS for managing relational databases

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. All questions were asked based on my resume. So prepare well from your resume.
Round 4 - One-on-one 

(1 Question)

  • Q1. 4th round was a one on one with the manager, asked me general questions about why I was looking for a job change.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basics strong.

Skills evaluated in this interview

Product Engineer Interview Questions asked at other Companies

Q1. Left View Of Binary TreeGiven a binary tree. Print the Left View of the Tree. Example : If the input tree is as depicted in the picture: The Left View of the tree will be: 2 35 2 Input format : Elements in the level order form. The input... read more
View answer (3)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

The problem was to check whether an int matrix is magic matrix ( where sum of elements in row = sum of elements in column = sum of elements in diagonal)

Round 2 - Technical 

(2 Questions)

  • Q1. Problem on hashmap
  • Q2. Questions about spring boot, projects
Round 3 - Technical 

(1 Question)

  • Q1. More questions on spring boot

Senior Product Engineer Interview Questions asked at other Companies

Q1. Imagine an attack and guide through all steps involved to determine a Risk value. What is Feasibility ? What is impact and how risk is related to these factors ?
View answer (1)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. String Question based on hashmap
  • Q2. Palindorme -Reverse a string
  • Ans. 

    Reverse a string to check if it is a palindrome.

    • Create a function that takes a string as input

    • Reverse the string using built-in functions or manually

    • Compare the reversed string with the original string to check if it is a palindrome

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Basic Personal Questions, salary expectations
  • Q2. Agile, docker,kunernetes

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

IBS Software Services interview questions for popular designations

 Software Developer

 (10)

 Software Engineer

 (9)

 Solution Engineer

 (9)

 Java Developer

 (6)

 Senior Software Engineer

 (6)

 Senior Solution Engineer

 (4)

 Technical Lead

 (4)

 Finance Executive

 (3)

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

Easy Programming problem

Round 2 - Technical 

(2 Questions)

  • Q1. What is probability of the ceiling fan falling?
  • Q2. Tell me briefly about the OOP concepts.

Interview Preparation Tips

Interview preparation tips for other job seekers - Enjoy every interview process. Be professional and be passionate.

Solution Engineer Interview Questions asked at other Companies

Q1. 1. What is triggers and where we use triggers in xamarin? 2. Oops concepts with example 3. What is data binding? 4. Xamarin Page life cycle 5. Layouts in xamarin 6. Find gretest number from list of array (coding)
View answer (1)

Get interview-ready with Top IBS Software Services Interview Questions

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Spring IOC containers explain
  • Ans. 

    Spring IOC containers are responsible for managing the instantiation of objects and their dependencies in a Spring application.

    • IOC stands for Inversion of Control, which means that the control of object creation is inverted from the application code to the Spring framework.

    • There are two main types of Spring IOC containers: BeanFactory and ApplicationContext.

    • BeanFactory is the simplest container, providing basic support...

  • Answered by AI
  • Q2. Metaspace in java
  • Ans. 

    Metaspace is a part of the Java HotSpot VM memory where class metadata is stored.

    • Metaspace replaces the permanent generation (PermGen) in Java 8 and later versions.

    • It is used to store class metadata such as class names, method names, field names, annotations, etc.

    • Metaspace is dynamically resized by the JVM based on the application's demand.

    • You can monitor Metaspace usage using tools like JConsole or VisualVM.

  • Answered by AI
  • Q3. Difference between prdicate & consumer?
  • Ans. 

    Predicate is a functional interface that represents a boolean-valued function, while Consumer is a functional interface that represents an operation that accepts a single input argument and returns no result.

    • Predicate is used for filtering elements based on a condition, while Consumer is used for performing actions on elements.

    • Predicate has a test() method to evaluate a condition, while Consumer has an accept() method ...

  • Answered by AI
Round 2 - Coding Test 

Java 8 stream based question

Skills evaluated in this interview

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)

Jobs at IBS Software Services

View all
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Referral and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Find min ,max and second largest (avoid duplicates)using streams

Round 2 - Technical 

(4 Questions)

  • Q1. Multiple inheritance , encapsulation, Collections-Hashmap,Set,list etc with coding questions, substrings,
  • Q2. Checked and unchecked expections with example
  • Ans. 

    Checked exceptions are checked at compile time, while unchecked exceptions are not.

    • Checked exceptions must be either caught or declared in the method signature using 'throws'

    • Unchecked exceptions do not need to be caught or declared

    • Example of checked exception: IOException

    • Example of unchecked exception: NullPointerException

  • Answered by AI
  • Q3. Spring boot annotations
  • Q4. Java 8 features,stream api,lambda with coding

Skills evaluated in this interview

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Rest api end to end flow
  • Q2. Hash map vs hash set

Senior Solution Engineer Interview Questions asked at other Companies

Q1. What are the different methods to save cost in an Azure environment?
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Approached by Company and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Difference between ISO 27001 and SOC2 Type 2 audit
  • Ans. 

    ISO 27001 focuses on information security management system while SOC2 Type 2 audit focuses on controls related to security, availability, processing integrity, confidentiality, and privacy.

    • ISO 27001 is an international standard that focuses on establishing, implementing, maintaining, and continually improving an information security management system (ISMS).

    • SOC2 Type 2 audit is a report based on the Trust Services Cri...

  • Answered by AI
  • Q2. How the BCMS is implemented
  • Ans. 

    BCMS is implemented through a structured approach involving planning, implementation, monitoring, and continual improvement.

    • Develop a BCMS policy outlining objectives and scope

    • Conduct a risk assessment to identify threats and vulnerabilities

    • Implement controls to mitigate risks

    • Train employees on BCMS procedures and protocols

    • Regularly test and evaluate the effectiveness of the BCMS

    • Review and update the BCMS as needed bas...

  • Answered by AI
  • Q3. Business Impact Analysis and Risk Assessment
  • Q4. Analyze a SOC2 Report
  • Ans. 

    A SOC2 report is an audit report that attests to the controls in place at a service organization relevant to security, availability, processing integrity, confidentiality, and privacy.

    • Review the scope of the report to understand the services covered

    • Examine the auditor's opinion on the effectiveness of controls

    • Look for any exceptions or deficiencies noted in the report

    • Check the date of the report to ensure it is current

    • ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for IBS Software Services Compliance Specialist interview:
  • ISO 27001 audit
  • SOC2 audit prepartion
  • Risk Ananlysis

Compliance Specialist Interview Questions asked at other Companies

Q1. How well can you manage Excel application
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Clustering in cassendra
  • Ans. 

    Clustering in Cassandra involves grouping together multiple nodes to improve performance, scalability, and fault tolerance.

    • Clustering is used to distribute data across multiple nodes in a Cassandra cluster.

    • It helps in achieving high availability and fault tolerance by replicating data across nodes.

    • Cassandra uses consistent hashing to determine which node will store a particular piece of data.

    • Data is partitioned into sm...

  • Answered by AI
  • Q2. Cloud Deployment strategies

Technical Architect Interview Questions asked at other Companies

Q1. How to manage clients, how to handle critical issues with example
View answer (3)

IBS Software Services Interview FAQs

How many rounds are there in IBS Software Services interview?
IBS Software Services interview process usually has 2-3 rounds. The most common rounds in the IBS Software Services interview process are Technical, Resume Shortlist and HR.
How to prepare for IBS Software Services 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 IBS Software Services. The most common topics and skills that interviewers at IBS Software Services expect are Logistics, SAAS, SQL, Spring Boot and Javascript.
What are the top questions asked in IBS Software Services interview?

Some of the top questions asked at the IBS Software Services interview -

  1. How would you create the user stories for an app that tracks expens...read more
  2. There are 10 apples in my hand ,from these apples ,2 of them are much smaller t...read more
  3. How will you develop an application which shows all airports in the country in ...read more
How long is the IBS Software Services interview process?

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

Tell us how to improve this page.

IBS Software Services Interview Process

based on 82 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 805 Interviews
Globant Interview Questions
3.8
 • 171 Interviews
View all

IBS Software Services Reviews and Ratings

based on 626 reviews

3.6/5

Rating in categories

3.5

Skill development

3.4

Work-life balance

3.0

Salary

3.9

Job security

3.4

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 626 Reviews and Ratings
Implementation Manager (APS)

Kolkata,

Mumbai

+5

12-15 Yrs

Not Disclosed

Senior Java Product Engineer - LMS

Kolkata,

Mumbai

+5

2-5 Yrs

Not Disclosed

SAP ABAP consultant - TRQ25

Kolkata,

Mumbai

+5

8-10 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
595 salaries
unlock blur

₹3.4 L/yr - ₹14 L/yr

Software Engineer
389 salaries
unlock blur

₹2.4 L/yr - ₹11 L/yr

Technical Lead
266 salaries
unlock blur

₹5.4 L/yr - ₹20 L/yr

Solution Architect
207 salaries
unlock blur

₹8 L/yr - ₹30.6 L/yr

Solution Engineer
190 salaries
unlock blur

₹3 L/yr - ₹6.2 L/yr

Explore more salaries
Compare IBS Software Services 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