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 Interview Questions and Answers

Updated 30 Jul 2025
Popular Designations

1.3k Interview questions

A Senior Associate was asked 1w ago
Q. What are your professional achievements?
Ans. 

I have successfully led projects, improved processes, and contributed to team growth in my previous roles.

  • Led a cross-functional team to implement a new CRM system, resulting in a 30% increase in sales efficiency.

  • Developed a training program that improved onboarding time for new hires by 25%, enhancing team productivity.

  • Spearheaded a cost-reduction initiative that saved the company $100,000 annually without compro...

View all Senior Associate interview questions
A Multi-Cloud FinOps was asked 1w ago
Q. Are you familiar with Cloudability?
Ans. 

Cloudability is a cloud financial management platform that helps organizations optimize their cloud spending and usage.

  • Provides visibility into cloud costs across multiple providers like AWS, Azure, and Google Cloud.

  • Offers budgeting and forecasting tools to help manage cloud expenses effectively.

  • Includes cost allocation features to assign cloud costs to specific teams or projects.

  • Enables users to identify and elim...

A Multi-Cloud FinOps was asked 1w ago
Q. Are you familiar with the FinOps framework?
Ans. 

The FinOps framework optimizes cloud financial management through collaboration, visibility, and accountability across teams.

  • Collaboration: Encourages finance, engineering, and product teams to work together on cloud spending.

  • Visibility: Provides tools and dashboards to track cloud costs in real-time, such as AWS Cost Explorer.

  • Accountability: Establishes ownership of cloud costs, ensuring teams are responsible for...

A Data Scientist was asked 1w ago
Q. What are the various embedding techniques that you used in your project?
Ans. 

Embedding techniques transform data into numerical vectors for machine learning, enhancing model performance and interpretability.

  • Word2Vec: Used for natural language processing to create word embeddings based on context.

  • GloVe: Global Vectors for Word Representation, capturing global word co-occurrence statistics.

  • FastText: Extends Word2Vec by considering subword information, useful for morphologically rich language...

View all Data Scientist interview questions

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.
A Data Scientist was asked 1w ago
Q. What are the advantages of using transformer models compared to traditional machine learning models?
Ans. 

Transformers excel in handling sequential data, capturing long-range dependencies, and outperforming traditional models in various tasks.

  • Self-attention mechanism allows transformers to weigh the importance of different words in a sentence, improving context understanding.

  • Transformers can process entire sequences simultaneously, unlike traditional models that often rely on sequential processing, enhancing efficienc...

View all Data Scientist interview questions
A Data Scientist was asked 1w ago
Q. What were the most effective strategies for addressing hallucinations?
Ans. 

Effective strategies to mitigate hallucinations include data validation, model fine-tuning, and user feedback integration.

  • Implement data validation techniques to ensure input data quality, e.g., using cross-validation.

  • Fine-tune models with domain-specific datasets to improve accuracy, such as using medical literature for healthcare applications.

  • Incorporate user feedback loops to continuously improve model outputs,...

View all Data Scientist interview questions

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 Data Scientist was asked 1w ago
Q. What PEFT techniques, other than the ones we discussed, can be used?
Ans. 

PEFT techniques enhance model performance with minimal data. Other techniques include transfer learning and data augmentation.

  • Transfer Learning: Utilizing pre-trained models like BERT for NLP tasks.

  • Data Augmentation: Techniques like rotation and flipping in image datasets.

  • Feature Engineering: Creating new features from existing data to improve model accuracy.

  • Ensemble Methods: Combining multiple models to enhance p...

View all Data Scientist interview questions
Are these interview questions helpful?
A Data Scientist was asked 1w ago
Q. What is a rag?
Ans. 

A rag is a piece of old cloth used for cleaning or wiping surfaces, often associated with low-cost materials.

  • Rags can be made from various materials like cotton, linen, or synthetic fibers.

  • Commonly used in households for cleaning tasks, such as dusting or mopping.

  • In industrial settings, rags are used for wiping machinery or absorbing spills.

  • Rags can be repurposed from old clothing or textiles, promoting sustainabi...

View all Data Scientist interview questions
A Data Scientist was asked 1w ago
Q. How can you create a list that is reversed, with the first letter and the third letter of each item capitalized?
Ans. 

Create a reversed list with specific letters capitalized using Python.

  • Use a list comprehension to iterate through the original list.

  • Reverse the list using slicing: list[::-1].

  • Capitalize the first and third letters of each string using string indexing.

  • Example: For 'apple', it becomes 'ApPle' after processing.

View all Data Scientist interview questions
An Application Developer was asked 1w ago
Q. What tools have you worked with?
Ans. 

I have experience with various development tools, including IDEs, version control systems, and frameworks for application development.

  • Integrated Development Environments (IDEs) like Visual Studio and IntelliJ IDEA for coding and debugging.

  • Version control systems such as Git and GitHub for managing code repositories and collaboration.

  • Frameworks like React and Angular for building dynamic web applications.

  • Database m...

View all Application Developer interview questions

IBM Interview Experiences

2.5k interviews found

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 28 Jul 2021

Interview Questionnaire 

5 Questions

  • Q1. 1) How to handle data skewness in spark.
  • Q2. 2) Difference between partitioning and Bucketing
  • Q3. 3) Difference between cache and persistent storage
  • Q4. 4) How to read json data using spark
  • Q5. 5) How to create a kafka topic with replication factor 2

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 20 May 2025

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

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

  • Q1. What is SQL?
  • Ans. 

    SQL (Structured Query Language) is a standard programming language for managing and manipulating relational databases.

    • SQL is used to query, insert, update, and delete data in databases.

    • Common SQL commands include SELECT, INSERT, UPDATE, DELETE.

    • Example: SELECT * FROM employees WHERE department = 'Sales';

    • SQL supports data definition, data manipulation, and data control.

    • It is widely used in various applications, from smal...

  • Answered by AI
  • Q2. What is SQL, and what are its primary functions?
  • Ans. 

    SQL (Structured Query Language) is a standard programming language for managing and manipulating relational databases.

    • Data Retrieval: SQL allows users to query databases to retrieve specific data. Example: SELECT * FROM patients WHERE age > 30;

    • Data Manipulation: SQL can insert, update, or delete records in a database. Example: UPDATE patients SET diagnosis = 'Flu' WHERE id = 1;

    • Database Creation: SQL can create new d...

  • Answered by AI
  • Q3. What are the different types of SQL commands?
  • Ans. 

    SQL commands are categorized into five main types: DDL, DML, DCL, TCL, and SELECT statements for database management.

    • DDL (Data Definition Language): Used to define and manage database structures. Example: CREATE TABLE, ALTER TABLE.

    • DML (Data Manipulation Language): Used for data manipulation. Example: INSERT, UPDATE, DELETE.

    • DCL (Data Control Language): Used to control access to data. Example: GRANT, REVOKE.

    • TCL (Transact...

  • Answered by AI
  • Q4. Uses of DML command
  • Q5. Uses of DDL command

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Tailor Your Resume and Cover Letter Customize your resume for each job application. Highlight relevant skills, experience, and accomplishments using keywords from the job description. 2. Strengthen Your Online Presence Keep your LinkedIn profile updated with a professional photo, compelling headline, and detailed work experience. Share insights or projects to showcase your expertise. 3. Network Strategically Reach out to people in your industry through LinkedIn, alumni networks, or events. Ask for informational interviews rather than directly asking for jobs. 4. Prepare for Interviews Practice common and role-specific interview questions. Use the STAR method (Situation, Task, Action, Result) for behavioral questions. 5. Upskill and Stay Current Take short courses or certifications to stay competitive. Learn tools or skills in demand for your field (e.g., Excel, SQL, Python for data roles). 6. Stay Organized Keep track of where you've applied, follow up after interviews, and schedule regular job search sessions. 7. Be Resilient Job hunting can be tough. Rejection is part of the process—learn from it and keep going. Celebrate small wins like landing an interview or improving your resume.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(4 Questions)

  • Q1. My office my tyipe ms c+c java htmal
  • Q2. I can when join this companey my email krishna12345@gmail,com link place accept my email my pn XXXXX place sceond to cab i can rach to ibm companey i can stay in ecil hyd
  • Q3. My office my tyipe ms c+c java net work in oneline
  • Q4. Thanku place accept my email krishna12345@gmail com link my email

Interview Preparation Tips

Interview preparation tips for other job seekers - process assisrent i can working to this companey ibm place give one opparntes
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(7 Questions)

  • Q1. Tell me about yourself.
  • Q2. What do you know about DITA XML, which tags have you used in your documents, what are keywords, and what is DITA mapping, have you ever created graphics or illustrations, types of DITA topics, benefits of ...
  • Ans. 

    DITA XML is a structured content standard used for creating technical documentation.

    • DITA XML is a structured content standard for technical documentation

    • Commonly used tags include <topic>, <title>, <body>, <section>

    • Keywords are used to categorize content for easy retrieval

    • DITA mapping is the process of linking topics together in a hierarchy

    • Graphics and illustrations can be created and included i...

  • Answered by AI
  • Q3. What do you know of Agile Methodology and Scrum?
  • Ans. 

    Agile Methodology and Scrum are popular project management frameworks used in software development.

    • Agile Methodology is a flexible approach to software development that emphasizes incremental delivery, collaboration, and continuous improvement.

    • Scrum is a specific Agile framework that divides work into sprints, with daily stand-up meetings and regular reviews.

    • Scrum roles include Product Owner, Scrum Master, and Developm...

  • Answered by AI
  • Q4. What do you do in case of conflict with SMEs, have you worked with any global audience, what kind of documents have you created, how do you estimate time needed for your document.
  • Ans. 

    In case of conflict with SMEs, I prioritize clear communication and collaboration. I have experience working with global audiences, creating various types of documents, and estimating time needed for each project.

    • In case of conflict with SMEs, I prioritize clear communication and collaboration to find a resolution that meets both our needs.

    • I have worked with global audiences by adapting my writing style to suit differe...

  • Answered by AI
  • Q5. How do you receive input, what are DDLC and SDLC, what style guides have you used for creating documents, how do you ensure accuracy in your document.
  • Ans. 

    I receive input through meetings and emails, DDLC is Document Development Life Cycle, SDLC is Software Development Life Cycle, I use APA and Chicago style guides, I ensure accuracy through thorough research and review.

    • Receive input through meetings with subject matter experts and stakeholders

    • DDLC (Document Development Life Cycle) is the process of creating, editing, and publishing documents

    • SDLC (Software Development Li...

  • Answered by AI
  • Q6. What is design thinking, have you ever communicated with developers, what do you do when you do not have enough information but the deadline is already near?
  • Ans. 

    Design thinking is a problem-solving approach that focuses on understanding the user's needs and creating innovative solutions.

    • Design thinking involves empathizing with users, defining the problem, ideating solutions, prototyping, and testing.

    • Yes, I have communicated with developers to understand technical aspects and constraints of the project.

    • When lacking information near a deadline, I prioritize the most critical as...

  • Answered by AI
  • Q7. Have you worked with any version control systems?
  • Ans. 

    Yes, I have experience working with version control systems.

    • I have used Git for version control in my previous roles.

    • I am familiar with branching, merging, and resolving conflicts in Git.

    • I have also worked with SVN (Subversion) in the past.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for IBM Senior Technical Writer interview:
  • DITA XML
  • Agile Methodology
  • DDLC
  • SDLC
  • VCS
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. What is the wan
  • Ans. 

    WAN (Wide Area Network) connects multiple local networks over large distances, enabling communication and data sharing.

    • WANs cover large geographical areas, such as cities, countries, or even continents.

    • They use various transmission technologies, including leased lines, satellite links, and VPNs.

    • Examples of WANs include the Internet, corporate networks connecting multiple offices, and telecommunications networks.

  • Answered by AI
  • Q2. What is the lan
  • Q3. What is the error 001
  • Ans. 

    Error 001 typically indicates a generic or unspecified error in a system, often requiring further investigation to diagnose.

    • Generic Error Code: Error 001 is often used as a placeholder for an unspecified error, indicating that something went wrong without specific details.

    • Troubleshooting Steps: To resolve Error 001, check system logs, review recent changes, and ensure all dependencies are correctly configured.

    • Common Co...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is the system 32
  • Ans. 

    System32 is a critical Windows operating system directory containing essential system files and drivers.

    • Contains core system files necessary for Windows to operate.

    • Includes drivers for hardware components like printers and graphics cards.

    • Accessing System32 can lead to system configuration changes.

    • Deleting or modifying files in System32 can cause system instability.

    • Commonly referenced in jokes and memes about computer i...

  • Answered by AI
  • Q2. What isthe bit locker
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
No response

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

Round 1 - Technical 

(11 Questions)

  • Q1. Item category and shipping point determination
  • Q2. Shipping conditions controls
  • Q3. Give example of how high level item category is used st document level
  • Ans. 

    High level item category is used at document level to group similar items together for easier tracking and reporting.

    • High level item category can be used to classify items based on their type, purpose, or department.

    • It helps in organizing and grouping items for better visibility and analysis.

    • For example, in a procurement document, high level item category can be used to group all office supplies together for easier tra...

  • Answered by AI
  • Q4. What is the 17th step in pricing procedure
  • Ans. 

    The 17th step in pricing procedure is determining the final price based on all previous calculations and adjustments.

    • The 17th step involves taking into account all previous steps in the pricing procedure

    • It may involve applying discounts, taxes, and any other adjustments to arrive at the final price

    • This step is crucial in ensuring that the final price is accurate and competitive

  • Answered by AI
  • Q5. Basic configuration steps of output determination
  • Ans. 

    Output determination involves configuring condition records, access sequences, and output types in SAP ERP system.

    • Define condition tables for output determination

    • Create access sequences to determine the sequence of condition tables

    • Assign condition records to access sequences

    • Configure output types and assign them to access sequences

    • Test output determination by creating sales orders or invoices

  • Answered by AI
  • Q6. Master data tables for customer and material master
  • Ans. 

    Master data tables for customer and material master are essential for storing detailed information about customers and materials.

    • Customer master table stores information about customers such as name, address, contact details, etc.

    • Material master table stores information about materials such as description, unit of measure, price, etc.

    • These tables are crucial for efficient data management and retrieval in a business sys...

  • Answered by AI
  • Q7. Multiple invoice, delivery and idocs processing tcodes
  • Q8. Item categories for return orders, consignment processes and their schedule lines
  • Ans. 

    Item categories for return orders, consignment processes, and their schedule lines

    • Return orders typically fall under categories like damaged goods, wrong item received, or change of mind

    • Consignment processes may involve categories such as delivery scheduling, inventory management, and payment terms

    • Schedule lines for return orders and consignment processes help track timelines for actions and deliveries

  • Answered by AI
  • Q9. Golden rule of access sequence
  • Ans. 

    The golden rule of access sequence determines the order in which system accesses condition records in SAP.

    • Access sequences are used in SAP to determine the order in which condition records are accessed during pricing determination

    • The golden rule states that the system will access condition records in the order they are defined in the access sequence

    • If a condition record is found in an earlier step of the access sequenc...

  • Answered by AI
  • Q10. Placement of tax configuration in pricing procedure
  • Ans. 

    Tax configuration should be placed at the end of the pricing procedure to ensure accurate calculations.

    • Tax configuration should be placed after all other conditions and calculations in the pricing procedure.

    • This ensures that taxes are calculated on the final price after all discounts and surcharges have been applied.

    • Placing tax configuration at the end helps in avoiding any discrepancies in tax calculations.

    • Example: Co...

  • Answered by AI
  • Q11. Difference between standard order and rush order? How the delivery is created immediately in rush order, where are the controls?
  • Ans. 

    Standard orders have regular delivery times while rush orders require immediate delivery. Controls for rush orders are typically set in the system.

    • Standard orders have regular delivery times based on the company's standard processing and shipping times.

    • Rush orders are prioritized for immediate delivery, often with expedited processing and shipping.

    • Controls for rush orders are usually set in the system, such as flagging...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Thorough with your resume. And clear with your fundamentals

Skills evaluated in this interview

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

It involves 3 rounds
1. Coding round where they asked to build a framework in selenium
2. Technical round for 45 minutes- , JAVA oops concept, Date picker, simple coding questions
3. HR discussion

Round 2 - Technical 

(2 Questions)

  • Q1. Selenium date picker
  • Ans. 

    Selenium can automate date pickers by interacting with the calendar UI elements to select dates.

    • Identify the date picker element using locators like ID, class, or XPath.

    • Click on the date picker to open the calendar view.

    • Select the desired month and year, if applicable, by navigating through the calendar.

    • Click on the specific date to select it.

    • Example: Use driver.findElement(By.id('datepicker')).click(); to open the dat...

  • Answered by AI
  • Q2. How to use excel into java
Round 3 - HR 

(1 Question)

  • Q1. Package discussion
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(5 Questions)

  • Q1. List down Java 8 features and use case
  • Ans. 

    Java 8 introduced several new features including lambda expressions, streams, and functional interfaces.

    • Lambda expressions: Allow for more concise and readable code by enabling functional programming.

    • Streams: Provide a way to work with collections of objects in a more functional style.

    • Functional interfaces: Interfaces with a single abstract method, used to enable lambda expressions.

    • Optional class: Helps to avoid null p...

  • Answered by AI
  • Q2. List down Spring boot annotation used
  • Ans. 

    Spring boot annotations are used to simplify the development process by providing metadata to the Spring framework.

    • 1. @SpringBootApplication - Main annotation to indicate the main class of a Spring Boot application.

    • 2. @RestController - Annotation for RESTful web services.

    • 3. @Autowired - Dependency injection annotation.

    • 4. @GetMapping, @PostMapping, @PutMapping, @DeleteMapping - Annotations for mapping HTTP requests to c...

  • Answered by AI
  • Q3. Difference between String builder and String Buffer
  • Q4. What is String pool
  • Q5. Number of memory type have. like heap memory , stack

Interview Preparation Tips

Topics to prepare for IBM Senior Software Engineer interview:
  • Collections
  • java 8
  • Spring Boot
  • tsl
  • SSL
  • OOPS
  • String pool
  • Heap memory
  • Strig builder
  • String buffer

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Dec 2024.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Introduction about me any question
  • Ans. 

    I am chandana i am bca graduated

  • Answered Anonymously
  • Q2. About job bases
  • Ans. 

    How to developed a skill to improve over skills

  • Answered Anonymously
  • Q3. Salary based question
  • Ans. 

    I am fresher to 2 to 4

  • Answered Anonymously
  • Q4. How to completed
  • Ans. 

    To complete a task in Python, follow structured steps including planning, coding, testing, and refining your solution.

    • Define the problem clearly before starting to code.

    • Break the task into smaller, manageable functions or classes.

    • Write clean, readable code with comments for clarity.

    • Test your code with various inputs to ensure it works as expected.

    • Refactor your code to improve efficiency and readability.

  • Answered by AI
  • Q5. Job description

Interview Preparation Tips

Interview preparation tips for other job seekers - No i am fresher to search the job
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Tec discussion and issue handeling
Round 2 - Technical 

(1 Question)

  • Q1. Tec discussion and issue resolution

Interview Questions & Answers

user image Anonymous

posted on 14 Oct 2024

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 Sep 2024. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Merge N sorted Linked List
  • Ans. 

    Merge N sorted linked lists efficiently using a priority queue or divide and conquer approach.

    • Use a priority queue to merge the lists efficiently

    • Alternatively, use a divide and conquer approach to merge the lists

    • Ensure the final merged list is also sorted

  • Answered by AI
  • Q2. What are you looking for? What do you expect? What challenges and conflicts you faced? How did you handle them? Cultural fit question as well
  • Ans. 

    I am looking for a challenging role in MongoDB Specialist, Cloud where I can utilize my expertise and skills to drive innovation and efficiency.

    • Looking for a role that allows me to work with cutting-edge technology like MongoDB in a cloud environment

    • Expecting opportunities for growth and development in my career as a MongoDB Specialist

    • Have faced challenges in optimizing database performance and resolving complex data m...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Proper software development process questions. Digging into your project and tech stack. Giving you scenarios to come up with technical solutions.
Round 3 - Technical 

(1 Question)

  • Q1. System Design like interview - eventually going down to low level design.
Round 4 - PDM Round 

(1 Question)

  • Q1. What is the most challenging problem you solved? Why was it challenging? How did you solve it? Challenges & conflicts and how to handle them?
  • Ans. 

    Migrating a large database to MongoDB in a cloud environment

    • Challenging due to the size of the database and ensuring data integrity during migration

    • Handled conflicts by thoroughly planning the migration process, testing in a staging environment, and monitoring closely during the actual migration

    • Used tools like MongoDB Atlas for cloud deployment and data migration

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You need to know your project development and tech stack really well to crack the interviews. Since I interviewed for a mid-senior role, they also focused on cultural fit heavily.

Skills evaluated in this interview

IBM Interview FAQs

How many rounds are there in IBM interview?
IBM interview process usually has 2-3 rounds. The most common rounds in the IBM interview process are Technical, HR and Resume Shortlist.
How to prepare for IBM 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 Agile, SQL, Python, Javascript and Java.
What are the top questions asked in IBM interview?

Some of the top questions asked at the IBM interview -

  1. 1. Abstraction vs Inheritance 2. What is Garbage collector? 3. What is class lo...read more
  2. How to check that all port are connected to your computers and power supply or ...read more
  3. what is comp & comp 3 differance ...read more
What are the most common questions asked in IBM HR round?

The most common HR questions asked in IBM interview are -

  1. Why should we hire y...read more
  2. Why are you looking for a chan...read more
  3. What is your family backgrou...read more
How long is the IBM interview process?

The duration of IBM 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.2/5

based on 1.9k interview experiences

Difficulty level

Easy 24%
Moderate 69%
Hard 7%

Duration

Less than 2 weeks 64%
2-4 weeks 26%
4-6 weeks 5%
6-8 weeks 3%
More than 8 weeks 3%
View more

Explore Interview Questions and Answers for Top Skills at IBM

Interview Questions from Similar Companies

TCS Interview Questions
3.5
 • 11.2k Interviews
Accenture Interview Questions
3.7
 • 8.7k Interviews
Infosys Interview Questions
3.6
 • 8k Interviews
Wipro Interview Questions
3.7
 • 6.2k Interviews
Cognizant Interview Questions
3.7
 • 6k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.2k Interviews
HCLTech Interview Questions
3.5
 • 4.2k Interviews
Genpact Interview Questions
3.7
 • 3.5k Interviews
DXC Technology Interview Questions
3.6
 • 848 Interviews
View all

IBM Reviews and Ratings

based on 23.9k reviews

3.9/5

Rating in categories

3.9

Skill development

4.0

Work-life balance

3.5

Salary

3.9

Job security

3.9

Company culture

3.1

Promotions

3.7

Work satisfaction

Explore 23.9k Reviews and Ratings
Data Analyst/Senior Data Analyst

Bangalore / Bengaluru,

Delhi/Ncr

3-8 Yrs

₹ 4.5-9 LPA

IBM Hiring- RTR Transformation -Gurgaon/Bangalore

Gurgaon / Gurugram,

Bangalore / Bengaluru

14-22 Yrs

₹ 1-101 LPA

Explore more jobs
Application Developer
12.7k salaries
unlock blur

₹5.2 L/yr - ₹26.8 L/yr

Software Developer
6k salaries
unlock blur

₹13.8 L/yr - ₹34.6 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