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

Clear (1)

IBM Full Stack Software Developer Interview Questions, Process, and Tips

Updated 22 Jun 2024

Top IBM Full Stack Software Developer Interview Questions and Answers

View all 6 questions

IBM Full Stack Software Developer Interview Experiences

4 interviews found

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

Good morning sir have a you sir my name is hemant Ramchandra narkhede

Round 2 - Coding Test 

Java script simple frame

Round 3 - HR 

(2 Questions)

  • Q1. What are the different data types present in javascript?
  • Ans. 

    JavaScript has several data types including string, number, boolean, object, function, undefined, and null.

    • String: 'hello', '123'

    • Number: 123, 3.14

    • Boolean: true, false

    • Object: { key: 'value' }

    • Function: function() { }

    • Undefined: undefined

    • Null: null

  • Answered by AI
  • Q2. Difference between var and let keyword in javascript.
  • Ans. 

    var is function-scoped while let is block-scoped in JavaScript.

    • var keyword is function-scoped, meaning it is accessible throughout the function it is declared in.

    • let keyword is block-scoped, meaning it is only accessible within the block it is declared in.

    • Using var can lead to variable hoisting issues, while let provides more predictable behavior.

    • let allows for better variable scoping and reduces the risk of unintended

  • Answered by AI
Round 4 - One-on-one 

(2 Questions)

  • Q1. What are the advantages of pair programming?
  • Ans. 

    Pair programming promotes collaboration, knowledge sharing, and code quality.

    • Enhances code quality through immediate code review and feedback

    • Promotes knowledge sharing and learning from each other

    • Fosters collaboration and teamwork

    • Reduces the likelihood of bugs and errors

    • Increases productivity by leveraging two minds on the same problem

    • Helps in breaking down complex problems into smaller tasks

    • Improves communication skil

  • Answered by AI
  • Q2. How do you handle constructive feedback about your full-stack development projects?
Round 5 - Technical 

(2 Questions)

  • Q1. How do you identify bugs in your code?
  • Ans. 

    I use a combination of manual testing, unit testing, and debugging tools to identify bugs in my code.

    • Perform manual testing by running the code and checking for any unexpected behavior or errors.

    • Write unit tests to verify the functionality of individual components and catch any issues early on.

    • Utilize debugging tools like breakpoints, logging, and stack traces to track down the root cause of bugs.

    • Collaborate with team ...

  • Answered by AI
  • Q2. How long have you been coding primarily in Python?
  • Ans. 

    I have been coding primarily in Python for 5 years.

    • I started learning Python in college and have been using it extensively in my professional career.

    • I have worked on various projects using Python, including web development, data analysis, and automation.

    • I am proficient in Python libraries such as NumPy, Pandas, and Django.

  • Answered by AI
Round 6 - Case Study 

HR round full stack developer experience

Round 7 - Group Discussion 

Best atitude round questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Another source of career guidance is to consult a career counselor or coach. These are trained professionals who can help you with various aspects of your career development, such as exploring your options, setting your goals, making your plans, overcoming your challenges, and enhancing your skills.24 Aug

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

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

Round 1 - Technical 

(2 Questions)

  • Q1. Check whether a given graph is cyclic
  • Ans. 

    To check if a graph is cyclic, use depth-first search to detect back edges.

    • Perform a depth-first search on the graph and keep track of visited nodes and parent nodes.

    • If a visited node is encountered with a parent different from the current node, then the graph contains a cycle.

    • Example: For a graph with edges (A, B), (B, C), (C, A), the graph is cyclic.

  • Answered by AI
  • Q2. Factory design pattern question

Skills evaluated in this interview

Full Stack Software Developer Interview Questions Asked at Other Companies

asked in Synergy
Q1. Oops in Java Patterns in Java JDK,JRE,JVM MVC Array questions str ... read more
asked in UST
Q2. If a application is running slow what process would you follow to ... read more
asked in Cognizant
Q3. Briefly explain the method you will use to execute an array linke ... read more
Q4. How do we link our stylesheet with the HTML?
asked in Cognizant
Q5. What is the difference between primary key, foreign key, candidat ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Company Website

Round 1 - Coding Test 

It was javascript and reactjs. multiple choices and coding test

Round 2 - Technical 

(1 Question)

  • Q1. Mostly advanced javascript questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Apr 2022. There were 5 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 Resume tips
Round 2 - Coding Test 

Main command on JAVA script and python

Round 3 - Assignment 

What assignments and projects you had done before share that experience

Round 4 - Case Study 

Your theories on what topics you had done your best

Round 5 - One-on-one 

(2 Questions)

  • Q1. That some personal questions and their your preference answers that suitable for your job
  • Q2. Give us the reasons why we should not select for the job
  • Ans. 

    Lack of relevant experience and skills

    • Limited experience in full stack development

    • Lack of proficiency in required programming languages and frameworks

    • Inadequate knowledge of database management systems

    • Weak problem-solving and analytical skills

    • Poor communication and collaboration abilities

  • Answered by AI

Interview Preparation Tips

Topics to prepare for IBM Full Stack Software Developer interview:
  • Backend
  • Full Stack
Interview preparation tips for other job seekers - Be confident, honest and value your words

IBM interview questions for designations

 Full Stack Developer

 (9)

 Java Full Stack Developer

 (1)

 Software Developer

 (98)

 Senior Software Developer

 (9)

 Software Developer Intern

 (5)

 Junior Software Developer

 (4)

 Associate Software Developer

 (1)

 .NET Software Developer

 (1)

Interview questions from similar companies

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

(2 Questions)

  • Q1. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Dependency injection helps in achieving loose coupling between classes.

    • It allows for easier testing and swapping of dependencies.

    • There are three types of dependency injection: constructor injection, setter injection, and interface injection.

  • Answered by AI
  • Q2. What is solid principles
  • Ans. 

    SOLID principles are a set of five design principles that help developers create more maintainable and scalable software.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subclasses with...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Since it's a full stack they asked angular , .net , sql , c# questions
What is pipes, Life cycle hooks , dependency injection, routers

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. What is concurrent hashmap
  • Ans. 

    ConcurrentHashMap is a thread-safe implementation of the HashMap class in Java.

    • ConcurrentHashMap allows multiple threads to read and write to the map concurrently without causing any data corruption.

    • It achieves thread-safety by dividing the map into segments, each of which can be locked independently.

    • ConcurrentHashMap is more efficient than using synchronized collections for concurrent access.

    • Example: ConcurrentHashMap

  • Answered by AI
  • Q2. How is dependency injection different from dependency inversion
  • Ans. 

    Dependency injection is a design pattern where dependencies are provided to a class from the outside, while dependency inversion is a principle that states high-level modules should not depend on low-level modules, but both should depend on abstractions.

    • Dependency injection is a technique to achieve dependency inversion.

    • Dependency injection involves providing dependencies to a class from the outside, typically through ...

  • Answered by AI
  • Q3. If I add 2 same attribute values for a object to a set...will I see 2 objects in the set, if yes what changes you make to the code to insert unique objects to a set
  • Ans. 

    No, you will not see 2 objects in the set. To insert unique objects to a set, you can override the equals() and hashCode() methods in the object class.

    • In a set, each element must be unique based on the equals() method. If you add 2 objects with the same attribute values, only one will be stored in the set.

    • To ensure uniqueness, override the equals() and hashCode() methods in the object class. This will define how object...

  • Answered by AI
  • Q4. What is serialisation, externalisation, serializable
  • Ans. 

    Serialisation is the process of converting an object into a format that can be easily stored or transmitted. Externalisation is a way to customize the serialization process. Serializable is an interface in Java that allows objects to be serialized.

    • Serialisation is the process of converting an object into a format that can be easily stored or transmitted

    • Externalisation is a way to customize the serialization process

    • Seri...

  • Answered by AI
  • Q5. Write a Generic method to add string or integer to List or List
  • Ans. 

    Create a generic method to add string or integer to List or List

    • Create a generic method that takes a List and an element as input

    • Use Java generics to specify the type of List and element

    • Check the type of List and element, then add the element to the List

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Preparation of core Java is needed...not even a single minute is used to tell any of your project experience

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Abstract class vs interface, cte vs temp table, dependency injection , delete and truncate, action filters , primary , unique key , foreign key , oops concepts.

Interview Preparation Tips

Interview preparation tips for other job seekers - It is easy process.

I applied via Naukri.com

Round 1 - Technical 

(2 Questions)

  • Q1. I applied online for the post of software developer, interview was conducted by First IPO on behalf of Mindtree.
  • Q2. Basics of OOPs, program o find out prime number, basic coding problem asks for output, closure, arrays in JavaScript

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic of oops like static and instance member, polymorphism, inheritance.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jul 2023. 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 Resume tips
Round 2 - Aptitude Test 

Quantitive aptitude, reasoning

Round 3 - HR 

(3 Questions)

  • Q1. Tell me about yourself
  • Q2. What is your weakness and strength?
  • Q3. Why should I hire you
Round 4 - Technical 

(1 Question)

  • Q1. Programming related questions

I applied via Naukri.com and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Oops concept, basic javascript and react js coding question

Round 2 - One-on-one 

(1 Question)

  • Q1. React js and asp.net basic interview questions

Interview Preparation Tips

Interview preparation tips for other job seekers - React js, asp.net
Prepare basic, oops concept, coding practice
Contribute & help others!
anonymous
You can choose to be anonymous

IBM Interview FAQs

How many rounds are there in IBM Full Stack Software Developer interview?
IBM interview process usually has 3-4 rounds. The most common rounds in the IBM interview process are Coding Test, Technical and Case Study.
How to prepare for IBM Full Stack Software 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 SQL, Front End, Automation, Linux and Backend.
What are the top questions asked in IBM Full Stack Software Developer interview?

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

  1. What are the different data types present in javascri...read more
  2. What are the advantages of pair programmi...read more
  3. How long have you been coding primarily in Pyth...read more

Recently Viewed

SALARIES

London Stock Exchange Group

INTERVIEWS

Siemens

No Interviews

INTERVIEWS

Wipro PARI

No Interviews

LIST OF COMPANIES

Toyota Industries Engine India

Overview

LIST OF COMPANIES

Discover companies

Find best workplace

SALARIES

Toyota Industries Engine India

INTERVIEWS

Xoriant

No Interviews

SALARIES

Hexaware Technologies

SALARIES

Schneider Electric

SALARIES

Toyota Industries Engine India

Tell us how to improve this page.

IBM Full Stack Software Developer Interview Process

based on 7 interviews

Interview experience

4.3
  
Good
View more
IBM Full Stack Software Developer Salary
based on 108 salaries
₹6.5 L/yr - ₹21.7 L/yr
58% more than the average Full Stack Software Developer Salary in India
View more details

IBM Full Stack Software Developer Reviews and Ratings

based on 6 reviews

4.3/5

Rating in categories

4.1

Skill development

4.5

Work-life balance

4.3

Salary

4.3

Job security

4.5

Company culture

3.8

Promotions

4.2

Work satisfaction

Explore 6 Reviews and Ratings
Application Developer
11.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
5.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Advisory System Analyst
5.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Systems Engineer
4.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare IBM with

Oracle

3.7
Compare

TCS

3.7
Compare

Cognizant

3.7
Compare

Accenture

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent