Upload Button Icon Add office photos
Engaged Employer

i

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

IBM Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

IBM Software Engineer Interview Questions and Answers

Updated 10 Jul 2025

47 Interview questions

A Software Engineer was asked 7mo ago
Q. What are your expectations regarding IBM?
Ans. 

I expect IBM to provide a challenging work environment, opportunities for growth, and cutting-edge technology to work with.

  • Opportunities for career advancement

  • Access to cutting-edge technology

  • Challenging work assignments

  • Supportive work culture

  • Training and development programs

A Software Engineer was asked 7mo ago
Q. Given a set of numbers from 1 to n, find the missing number.
Ans. 

Identify the missing number in a sequence from 1 to n using mathematical formulas or array manipulation.

  • Use the formula for the sum of the first n natural numbers: sum = n * (n + 1) / 2.

  • Calculate the expected sum and subtract the actual sum of the array to find the missing number.

  • Example: For n = 5 and array = [1, 2, 4, 5], expected sum = 15, actual sum = 12, missing number = 15 - 12 = 3.

  • Alternatively, use a boole...

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
🔥 Asked by recruiter 2 times
A Software Engineer was asked 8mo ago
Q. Given the head of a singly linked list, reverse the list, and return the reversed list.
Ans. 

Reversing a linked list involves changing the direction of the pointers between nodes.

  • 1. Start with three pointers: previous (null), current (head), and next (null).

  • 2. Iterate through the list: set next to current's next, current's next to previous, then move previous and current forward.

  • 3. Continue until current is null, then set head to previous.

  • Example: For list 1 -> 2 -> 3, after reversal it becomes 3 -&...

🔥 Asked by recruiter 2 times
A Software Engineer was asked 8mo ago
Q. Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree.
Ans. 

LCA (Lowest Common Ancestor) of given nodes in a tree is the node that is the lowest common ancestor of the given nodes.

  • Traverse the tree to find the paths from the root to each of the given nodes.

  • Compare the paths to find the last common node, which is the LCA.

  • If one of the given nodes is the ancestor of the other, return the ancestor node as the LCA.

What people are saying about IBM

View All
rjdj4d
Verified Icon
3d
works at
IBM
Left IBM, now diving into Data Analytics!
Hey folks, I resigned/was laid off from IBM two months ago because of project issues. Before that, I actually asked to leave my project because of a toxic environment and boring work (no growth). Now, I'm transitioning to a Data Analyst role from being an SCM Consultant (10 LPA). I'm currently learning SQL, Excel, Power BI, and Python. Any advice on additional courses, tips for cracking interviews, job referrals, or salary expectations would be greatly appreciated!
Got a question about IBM?
Ask anonymously on communities.
🔥 Asked by recruiter 2 times
A Software Engineer was asked 8mo ago
Q. Design a stack that supports push, pop, top, and retrieving the minimum element in constant time. Implement the MinStack class: MinStack() initializes the stack object. void push(int val) pushes the element...
Ans. 

Implement a stack that supports finding the minimum element in constant time.

  • Use two stacks - one to store the actual elements and another to store the minimum values at each level.

  • When pushing an element, compare it with the current minimum and push the smaller value onto the minimum stack.

  • When popping an element, also pop from the minimum stack if the popped element is the current minimum.

A Software Engineer was asked 9mo ago
Q. Given an array of non-negative integers arr, you are initially positioned at start index of the array. When you are at index i, you can jump to i + arr[i] or i - arr[i], check if you can reach to any index ...
Ans. 

Jump Game III involves determining if you can reach a specific index in an array by jumping based on its values.

  • The array represents positions, and the value at each index indicates the maximum jump length.

  • You can jump left or right from the current index.

  • The goal is to determine if you can reach an index with a value of 0.

  • Example: For array [4, 2, 3, 0, 3, 1, 2], starting at index 5, you can reach index 3 (value ...

IBM HR Interview Questions

279 questions and answers

Q. What tasks did you work on in your last project?
Q. Tell me about gravitation.
Q. What is your role?
A Software Engineer was asked 9mo ago
Q. What are the differences between SQL and NoSQL databases?
Ans. 

SQL is a relational database management system, while NoSQL is a non-relational database management system.

  • SQL databases are table-based and have a predefined schema, while NoSQL databases are document-based, key-value pairs, graph databases, or wide-column stores.

  • SQL databases are good for complex queries and transactions, while NoSQL databases are better for hierarchical data storage and real-time web applicatio...

Are these interview questions helpful?
A Software Engineer was asked 9mo ago
Q. Explain design patterns.
Ans. 

Design patterns are reusable solutions to common problems in software design.

  • Design patterns provide a way to create flexible and maintainable software systems.

  • They help in organizing code, improving code readability, and promoting code reusability.

  • Examples of design patterns include Singleton, Factory, Observer, and Strategy patterns.

A Software Engineer was asked 9mo ago
Q. Given a number, determine if it is prime or not.
Ans. 

To determine if a number is prime, check if it is divisible by any number other than 1 and itself.

  • Check if the number is less than 2, if so it is not prime

  • Loop through numbers from 2 to the square root of the number and check for divisibility

  • If the number is only divisible by 1 and itself, it is prime

A Software Engineer was asked 9mo ago
Q. Implement a linked list.
Ans. 

A linked list is a linear data structure where elements are stored in nodes, each pointing to the next node.

  • A linked list consists of nodes, where each node contains data and a reference to the next node.

  • Example of a node structure in Python: class Node: def __init__(self, data): self.data = data; self.next = None.

  • To create a linked list, initialize a head node and add subsequent nodes by updating the 'next' refer...

IBM Software Engineer Interview Experiences

90 interviews found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Dominations of coins it was a dp question

Round 2 - Technical 

(2 Questions)

  • Q1. Implement min stack
  • Q2. Lca of given nodes in the tree

Interview Preparation Tips

Interview preparation tips for other job seekers - just prepare for the resume in the interview

Skills evaluated in this interview

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

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. Improve the efficient the power?
  • Q2. Who is owner of this software
  • Ans. 

    Software ownership typically lies with the developer or company that created it, but can vary based on contracts and licenses.

    • Ownership can be held by individuals, companies, or organizations.

    • For example, Microsoft owns Windows OS, while open-source software like Linux is owned by the community.

    • Licensing agreements can dictate ownership rights, such as proprietary vs. open-source licenses.

    • In cases of freelance work, ow...

  • Answered by AI
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Reverse a linked list
  • Q2. Questions related to Binary Tree

Skills evaluated in this interview

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

Pretty decent and thoughtful questions asked

Round 2 - Technical 

(2 Questions)

  • Q1. Does not remember exactly
  • Q2. Simple dp question Jump Game III
  • Ans. 

    Jump Game III involves determining if you can reach a specific index in an array by jumping based on its values.

    • The array represents positions, and the value at each index indicates the maximum jump length.

    • You can jump left or right from the current index.

    • The goal is to determine if you can reach an index with a value of 0.

    • Example: For array [4, 2, 3, 0, 3, 1, 2], starting at index 5, you can reach index 3 (value 0).

    • Us...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding questions were easy based on string and array

Round 2 - One-on-one 

(2 Questions)

  • Q1. Given a number tell me wheather its prime or not
  • Q2. Create a linked list

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

2 medium-hard level questions.

Round 2 - One-on-one 

(3 Questions)

  • Q1. Python deep dive
  • Q2. Database postgres related questions
  • Q3. Django related questions
Round 3 - HR 

(2 Questions)

  • Q1. Behavioural based
  • Q2. Project based questions

Software Engineer Interview Questions & Answers

user image MOhamed Ahmed

posted on 10 Oct 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - HR 

(1 Question)

  • Q1. What the difference between sql vs nosql

Skills evaluated in this interview

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

(1 Question)

  • Q1. Explain design patterns
Round 2 - HR 

(1 Question)

  • Q1. Micro front end architecture

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

user image Dishank Goyal

posted on 2 Oct 2024

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. House robber 2 leetcode question
  • Q2. Cs fundamentals
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Tell me about yourself.
  • Q2. Why are you interested in this role /company
  • Q3. What are your salary expectations?
  • Q4. What are your strength and weeknesses?

IBM Interview FAQs

How many rounds are there in IBM Software Engineer interview?
IBM interview process usually has 2-3 rounds. The most common rounds in the IBM interview process are Technical, Coding Test and HR.
How to prepare for IBM 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 IBM. The most common topics and skills that interviewers at IBM expect are Python, Java, Linux, Javascript and Software Development.
What are the top questions asked in IBM Software Engineer interview?

Some of the top questions asked at the IBM Software Engineer interview -

  1. what is comp & comp 3 differance ...read more
  2. we have 2 files eliminate duplicates and send to duplicate files in to another ...read more
  3. how to check file is empty or no...read more
What are the most common questions asked in IBM Software Engineer HR round?

The most common HR questions asked in IBM Software Engineer interview are -

  1. What are your salary expectatio...read more
  2. What are your strengths and weakness...read more
  3. What is your family backgrou...read more
How long is the IBM Software Engineer interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 58 interview experiences

Difficulty level

Easy 28%
Moderate 59%
Hard 13%

Duration

Less than 2 weeks 67%
2-4 weeks 18%
4-6 weeks 12%
More than 8 weeks 3%
View more

Interview Questions from Similar Companies

TCS Software Engineer Interview Questions
3.6
 • 11.2k Interviews
View all
IBM Software Engineer Salary
based on 5.9k salaries
₹8.4 L/yr - ₹25.3 L/yr
65% more than the average Software Engineer Salary in India
View more details

IBM Software Engineer Reviews and Ratings

based on 407 reviews

3.7/5

Rating in categories

3.7

Skill development

3.8

Work-life balance

3.6

Salary

3.6

Job security

3.8

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 407 Reviews and Ratings
Senior Storage Software Engineer - C:C++, Cloud

Bangalore / Bengaluru

4-8 Yrs

₹ 2.5-39 LPA

Software Engineer - Cloduability

Bangalore / Bengaluru

1-4 Yrs

₹ 1.9-35 LPA

Software Engineer - DB Drivers

Bangalore / Bengaluru

4-6 Yrs

₹ 2.5-38 LPA

Explore more jobs
Application Developer
12.7k salaries
unlock blur

₹5.2 L/yr - ₹27.1 L/yr

Software Developer
6k salaries
unlock blur

₹13.5 L/yr - ₹34.8 L/yr

Software Engineer
5.9k salaries
unlock blur

₹8.4 L/yr - ₹25.3 L/yr

Senior Software Engineer
5.5k salaries
unlock blur

₹13.1 L/yr - ₹31.7 L/yr

Advisory System Analyst
4.5k salaries
unlock blur

₹13.7 L/yr - ₹23.5 L/yr

Explore more salaries
Compare IBM with

Oracle

3.7
Compare

TCS

3.5
Compare

Cognizant

3.7
Compare

Accenture

3.7
Compare
write
Share an Interview