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
4.0

based on 21.5k Reviews

Filter interviews by

IBM Full Stack Developer Interview Questions, Process, and Tips

Updated 12 May 2024

Top IBM Full Stack Developer Interview Questions and Answers

View all 9 questions

IBM Full Stack Developer Interview Experiences

9 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-

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

Round 1 - Technical 

(6 Questions)

  • Q1. Tell about design pattern
  • Ans. 

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

    • Design patterns help in creating maintainable, scalable, and efficient code.

    • Some common design patterns include Singleton, Factory, Observer, and Strategy.

    • Design patterns can be categorized into three main groups: creational, structural, and behavioral.

  • Answered by AI
  • Q2. Functional Overloading vs function overriding
  • Ans. 

    Functional overloading involves multiple functions with the same name but different parameters, while function overriding involves a subclass providing a specific implementation for a method in its superclass.

    • Functional overloading allows multiple functions with the same name but different parameters.

    • Function overriding occurs in inheritance when a subclass provides a specific implementation for a method in its supercl...

  • Answered by AI
  • Q3. What is hoisting in Java script
  • Ans. 

    Hoisting in JavaScript is a behavior where variable and function declarations are moved to the top of their containing scope during the compilation phase.

    • Variable declarations are hoisted to the top of their scope, but not their initializations.

    • Function declarations are fully hoisted, including their definitions.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI
  • Q4. What is memonisation
  • Ans. 

    Memoization is a technique used in computer science to store the results of expensive function calls and return the cached result when the same inputs occur again.

    • Memoization helps in improving the performance of a program by reducing redundant calculations.

    • It is commonly used in dynamic programming to optimize recursive algorithms.

    • Example: Fibonacci sequence calculation can be optimized using memoization to store prev

  • Answered by AI
  • Q5. What is promise, closure ?
  • Ans. 

    A promise is an object representing the eventual completion or failure of an asynchronous operation. A closure is a function defined within another function that has access to its parent function's scope.

    • Promise is used to handle asynchronous operations in JavaScript.

    • Promises can be in one of three states: pending, fulfilled, or rejected.

    • Closures allow functions to access variables from their parent function even after...

  • Answered by AI
  • Q6. Difference between == && ===
  • Ans. 

    == is used for equality comparison, while === is used for strict equality comparison.

    • == checks for equality of values, while === checks for equality of values and data types.

    • == can perform type coercion, while === does not.

    • == is less strict than ===.

    • Example: 1 == '1' returns true, but 1 === '1' returns false.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Assignment 

Php, java, HTML, SQL, NODE js

Round 2 - Technical 

(3 Questions)

  • Q1. Html, css,javascript
  • Q2. Php, Node.js html, css
  • Q3. Bootstrap 5 , python,
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself
Round 4 - Aptitude Test 

Normal questions aptitude

Interview Preparation Tips

Topics to prepare for IBM Full Stack Developer interview:
  • Oracle 10G

Full Stack Developer Interview Questions Asked at Other Companies

asked in DBS Bank
Q1. Query and Matrix Problem Statement You are given a binary matrix ... read more
asked in Accenture
Q2. Find Duplicates in an Array Given an array ARR of size 'N', where ... read more
Q3. Most Frequent Non-Banned Word Problem Statement Given a paragraph ... read more
asked in CommVault
Q4. Count Substrings with K Distinct Characters Given a lowercase str ... read more
asked in MakeMyTrip
Q5. Tower of Hanoi Problem Statement You have three rods numbered fro ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Java questions n 2 codes

Round 2 - Technical 

(1 Question)

  • Q1. Related to resume n java
Round 3 - Technical 

(1 Question)

  • Q1. In depth Technical from managerial perspective

Full Stack Developer Interview Questions & Answers

user image lakshmi Swathi

posted on 12 May 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 before May 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Mostly related to Project tech which i mentioned
Round 2 - HR 

(1 Question)

  • Q1. Why are you looking for a job change in your early stages

IBM interview questions for designations

 Full Stack Software Developer

 (4)

 Java Full Stack Developer

 (1)

 Developer

 (3)

 Application Developer

 (110)

 Software Developer

 (100)

 Java Developer

 (26)

 Backend Developer

 (16)

 Web Developer

 (7)

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

It was a hackerrank test consists of 3 questions. First was related to Currency convertor using Angular, second was implementing a rest API using spring-boot and the last one was SQL query.

Round 3 - Technical 

(1 Question)

  • Q1. About rest api, coding standards, annotations in spring boot etc.
Round 4 - HR 

(1 Question)

  • Q1. Basic HR round asking about priorities in work, leadership skills, and salary disscussions.

Interview Preparation Tips

Topics to prepare for IBM Full Stack Developer interview:
  • Java
  • Spring Boot
  • Javascript
  • SQL
Interview preparation tips for other job seekers - Have strong tech skills in the area you're applying for. If that is strong then nothing to be worried about.

Get interview-ready with Top IBM Interview Questions

Full Stack Developer Interview Questions & Answers

user image Madhushankar M J

posted on 16 Sep 2021

I applied via Recruitment Consultant and was interviewed in Aug 2021. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. 1.Design patterns
  • Q2. 2.Solid principals
  • Q3. 3.How to make a class immutable
  • Ans. 

    To make a class immutable, we need to ensure that its state cannot be modified after creation.

    • Make all fields private and final

    • Do not provide any setters

    • If mutable objects are used, return copies instead of references

    • Ensure that any methods that modify state return a new instance instead of modifying the existing one

  • Answered by AI
  • Q4. 4.React life cycle methods
  • Ans. 

    React life cycle methods are functions that are called at different stages of a component's life cycle.

    • There are three phases of a component's life cycle: Mounting, Updating, and Unmounting.

    • Mounting phase includes constructor(), getDerivedStateFromProps(), render(), and componentDidMount() methods.

    • Updating phase includes getDerivedStateFromProps(), shouldComponentUpdate(), render(), getSnapshotBeforeUpdate(), and compo...

  • Answered by AI
  • Q5. 5.Springboot annotations
  • Ans. 

    Springboot annotations are used to simplify the development process and provide additional functionality.

    • Annotations are used to configure Springboot applications

    • @RestController - used to define RESTful web services

    • @Autowired - used for dependency injection

    • @RequestMapping - used to map HTTP requests to methods

    • @Service - used to define a service layer

    • @Repository - used to define a data access layer

    • @Component - used to d...

  • Answered by AI
  • Q6. 6.React hooks

Interview Preparation Tips

Interview preparation tips for other job seekers - All questions were very easy , just prepare for standard java ,springboot & react interview questions.

Skills evaluated in this interview

Full Stack Developer Jobs at IBM

View all

I applied via Naukri.com and was interviewed in Oct 2021. There were 3 interview rounds.

Round 1 - Assignment 

Total 3 member panel was there,
they asked about
1 . regarding project
2 . basic java questions
3 . angular frame work related question
4 . spring boot frame work question

Round 2 - Case Study 

This is manageral round ,
the questions are based on scenarios,
and projects

Round 3 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. Tell me about yourself.
  • Q4. Salary expectation and documentation round

Interview Preparation Tips

Topics to prepare for IBM Full Stack Developer interview:
  • Java
  • Spring Boot
  • Angular
Interview preparation tips for other job seekers - IBM is the best company for employees, every one is good in IBM , work culture was excellent,
if you want to join IBM , just be strong and basics , most of the questions will be based on basics

I was interviewed before Feb 2021.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. What are your strengths and weaknesses?
  • Ans. 

    My strengths include problem-solving, adaptability, and teamwork. My weaknesses include time management and public speaking.

    • Strengths: problem-solving

    • Strengths: adaptability

    • Strengths: teamwork

    • Weaknesses: time management

    • Weaknesses: public speaking

  • Answered by AI
Round 3 - Aptitude Test 

Interview Preparation Tips

Interview preparation tips for other job seekers - I am B-Tech in Computer Science Engineer

I applied via Recruitment Consulltant and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Apply for angular ui developer interview is very simple just recap your javascript basic to advanced and angular basic concepts deeply
  • Q2. Router components service angular performance optimization how to scale app, security
  • Ans. 

    Optimizing Angular app performance and security with router components and services

    • Use lazy loading to improve performance

    • Implement caching for frequently accessed data

    • Use Angular Universal for server-side rendering

    • Implement HTTPS and secure authentication for security

    • Use guards and interceptors to protect routes and prevent unauthorized access

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Salary negotiation and work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Just politely and very confident while giving interview and interest

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Do you have an internship opportunity for a Full-stack Developer(Fresher)?
Round 2 - Technical 

(1 Question)

  • Q1. Is the internship for a full-stack developer paid?
Round 3 - Technical 

(1 Question)

  • Q1. How many years is the internship for a full-stack Developer?

IBM Interview FAQs

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

Some of the top questions asked at the IBM Full Stack Developer interview -

  1. Router components service angular performance optimization how to scale app, se...read more
  2. 3.How to make a class immutab...read more
  3. What is hoisting in Java scr...read more

Tell us how to improve this page.

IBM Full Stack Developer Interview Process

based on 6 interviews

2 Interview rounds

  • Technical Round
  • HR Round
View more
IBM Full Stack Developer Salary
based on 441 salaries
₹8 L/yr - ₹23.9 L/yr
80% more than the average Full Stack Developer Salary in India
View more details

IBM Full Stack Developer Reviews and Ratings

based on 32 reviews

4.2/5

Rating in categories

3.9

Skill development

4.5

Work-life balance

3.7

Salary

4.3

Job security

4.5

Company culture

3.5

Promotions

3.9

Work satisfaction

Explore 32 Reviews and Ratings
Full Stack Developer

Kochi

5-10 Yrs

Not Disclosed

Full Stack Developer

Bangalore / Bengaluru

6-11 Yrs

Not Disclosed

Full Stack Developer

Bangalore / Bengaluru

2-6 Yrs

₹ 4.5-33.21617 LPA

Explore more jobs
Application Developer
11.6k salaries
unlock blur

₹5.5 L/yr - ₹23.7 L/yr

Software Engineer
5.6k salaries
unlock blur

₹5.3 L/yr - ₹22.3 L/yr

Advisory System Analyst
5.2k salaries
unlock blur

₹9.3 L/yr - ₹27.5 L/yr

Senior Software Engineer
4.8k salaries
unlock blur

₹8 L/yr - ₹30 L/yr

Senior Systems Engineer
4.6k salaries
unlock blur

₹5.7 L/yr - ₹19.1 L/yr

Explore more salaries
Compare IBM with

Oracle

3.7
Compare

TCS

3.7
Compare

Cognizant

3.8
Compare

Accenture

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview