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 15 Apr 2025

38 Interview questions

🔥 Asked by recruiter 2 times
A Software Engineer was asked 6mo 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 7mo 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.

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
A Software Engineer was asked 8mo 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...

A Software Engineer was asked 8mo 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.

What people are saying about IBM

View All
a consultant
1w
IBM keeps ghosting my resume!
Hey everyone, My resume's been rejected three times by IBM. Any tips or links on building an ATS-friendly resume that might actually get me shortlisted?
Got a question about IBM?
Ask anonymously on communities.
A Software Engineer was asked 8mo 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 10mo ago
Q. What is SAP Basis?
Ans. 

SAP Basis is the technical foundation for SAP applications, ensuring they run smoothly and efficiently.

  • SAP Basis includes tasks like system administration, monitoring, performance tuning, and managing interfaces.

  • It involves configuring and managing the SAP environment, including servers, databases, and security.

  • SAP Basis professionals are responsible for ensuring the overall health of the SAP system.

  • Examples of SA...

A Software Engineer was asked
Q. What is the use of merge?
Ans. 

Merge is used to combine two or more sets of data into a single set.

  • Merge is commonly used in version control systems to combine different branches of code.

  • It is also used in databases to combine data from multiple tables.

  • Merge can be used in sorting algorithms to combine two sorted arrays into a single sorted array.

Are these interview questions helpful?
A Software Engineer was asked
Q. Find if a string is a palindrome or not.
Ans. 

Check if a string is a palindrome by comparing characters from start and end.

  • Iterate through the string from start and end simultaneously.

  • Compare characters at each position, moving towards the center.

  • If all characters match, the string is a palindrome.

  • Example: 'racecar' is a palindrome, 'hello' is not.

A Software Engineer was asked
Q. What is JWT, and can you describe it in under a minute?
Ans. 

JWT stands for JSON Web Token, a compact and self-contained way to securely transmit information between parties as a JSON object.

  • JWT is commonly used for authentication and information exchange in web applications.

  • It consists of three parts: header, payload, and signature.

  • The header typically consists of the type of token and the signing algorithm.

  • The payload contains the claims, which are statements about an ent...

A Software Engineer was asked
Q. Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree. According to the definition of LCA on Wikipedia: “The lowest common ancestor is defined between two nodes p and q a...
Ans. 

The lowest common ancestor of two nodes in a tree is the node that is the closest ancestor to both nodes.

  • Traverse the tree from the root to find the paths from the root to each node.

  • Compare the paths to find the last common node between the two paths.

  • The last common node is the lowest common ancestor.

IBM Software Engineer Interview Experiences

89 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
-
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
  • 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 applications.

    • Ex...

  • Answered by AI

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?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Find missing number in a set of numbers [1, n]

Skills evaluated in this interview

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 57 interview experiences

Difficulty level

Easy 29%
Moderate 58%
Hard 13%

Duration

Less than 2 weeks 66%
2-4 weeks 19%
4-6 weeks 13%
More than 8 weeks 3%
View more
IBM Software Engineer Salary
based on 5.9k salaries
₹8.3 L/yr - ₹24.9 L/yr
65% more than the average Software Engineer Salary in India
View more details

IBM Software Engineer Reviews and Ratings

based on 405 reviews

3.9/5

Rating in categories

3.8

Skill development

3.9

Work-life balance

3.6

Salary

3.7

Job security

3.9

Company culture

3.3

Promotions

3.6

Work satisfaction

Explore 405 Reviews and Ratings
Software Engineer

Lucknow

1-4 Yrs

Not Disclosed

Software Engineer

Bangalore / Bengaluru

1-4 Yrs

₹ 1.9-35 LPA

Software Engineer

Lucknow

1-4 Yrs

Not Disclosed

Explore more jobs
Application Developer
12.6k salaries
unlock blur

₹5.4 L/yr - ₹26.6 L/yr

Software Engineer
5.9k salaries
unlock blur

₹8.3 L/yr - ₹24.9 L/yr

Software Developer
5.7k salaries
unlock blur

₹13.4 L/yr - ₹39.7 L/yr

Senior Software Engineer
5.3k salaries
unlock blur

₹14.1 L/yr - ₹30 L/yr

Advisory System Analyst
4.5k salaries
unlock blur

₹13.6 L/yr - ₹23 L/yr

Explore more salaries
Compare IBM with

Oracle

3.7
Compare

TCS

3.6
Compare

Cognizant

3.7
Compare

Accenture

3.7
Compare
write
Share an Interview