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.1

based on 21.2k Reviews

Filter interviews by

IBM Java Application Developer Interview Questions and Answers

Updated 7 Nov 2023

IBM Java Application Developer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in Oct 2023. There were 2 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 - Technical 

(2 Questions)

  • Q1. Basics of Java, use of javac, define System.out.println, method overloaoding, constructor overloading, main method overloading, Exception handling scenarios, static method,
  • Q2. Statement vs prepared statements(whats the use of pstmts over stmts), why microservice when the same can happen in monolithic(Not normal differences expected something else), how Rest API will work (intern...
  • Ans. 

    Prepared statements are precompiled SQL statements that can improve performance and security. Microservices offer scalability and flexibility over monolithic architecture. REST API works by using HTTP methods to interact with resources.

    • Prepared statements are precompiled SQL statements that can be reused multiple times, improving performance by reducing database load and preventing SQL injection attacks.

    • Microservices a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Preapre strong on basics even the simpler things can be digged deeply. why, how, where.

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Job Portal and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Coding Test 

Interfaces vs abstract classes, solid principles, program for factorial using recursive approach, multithreading

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well all the best.

Interview Questionnaire 

6 Questions

  • Q1. 1.What is Overloading, Overriding, different types of Comstructors . Why do we need it?
  • Ans. 

    Overloading is when multiple methods have the same name but different parameters. Overriding is when a subclass provides a different implementation of a method from its superclass. Constructors are special methods used to initialize objects.

    • Overloading allows us to have multiple methods with the same name but different parameters, providing flexibility and code reusability.

    • Overriding allows a subclass to provide its ow...

  • Answered by AI
  • Q2. Can we overload the main method or constructor?
  • Ans. 

    Yes, we can overload the main method and constructor in Java.

    • Overloading means having multiple methods or constructors with the same name but different parameters.

    • In the case of the main method, we can have multiple main methods with different parameter lists.

    • For example, we can have a main method with the signature 'public static void main(String[] args)' and another with 'public static void main(String arg)'

    • Similarly...

  • Answered by AI
  • Q3. Can we override the static method?
  • Ans. 

    No, we cannot override static methods.

    • Static methods belong to the class and not to the instance of the class.

    • Overriding is a concept of polymorphism which is not applicable to static methods.

    • However, we can have a static method with the same name in the subclass which is called method hiding.

  • Answered by AI
  • Q4. Interface, abstraction , static and final keyword, Hibernate , JDBC Connectivity, Web application
  • Q5. Which is the biggest challenge you have ever faced and how you overcome it.
  • Q6. Any escalation you faced in. a recent project and how you handled the pressure.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(9 Questions)

  • Q1. Transactions in springboot
  • Ans. 

    Transactions in Spring Boot manage database operations as a single unit of work to ensure data integrity.

    • Spring Boot provides support for declarative transaction management using @Transactional annotation.

    • Transactions can be configured at class or method level.

    • Transactions can be rolled back in case of exceptions to maintain data consistency.

    • Example: @Transactional annotation on a service method ensures that all databa...

  • Answered by AI
  • Q2. Difference between arraylist and linked list
  • Ans. 

    ArrayList is resizable array implementation, LinkedList is doubly linked list implementation.

    • ArrayList uses dynamic array to store elements, LinkedList uses doubly linked list.

    • ArrayList is faster for accessing elements by index, LinkedList is faster for adding/removing elements.

    • Example: ArrayList arrList = new ArrayList<>(); LinkedList linkedList = new LinkedList<>();

Answered by AI
  • Q3. How REST API used
  • Ans. 

    REST API is used to communicate between client and server using HTTP methods like GET, POST, PUT, DELETE.

    • REST API allows clients to access and manipulate resources on a server using standard HTTP methods.

    • It uses URLs to identify resources and HTTP methods to perform actions on those resources.

    • Common HTTP methods used in REST API are GET (retrieve data), POST (create data), PUT (update data), DELETE (remove data).

    • REST A...

  • Answered by AI
  • Q4. Annotations in springboot
  • Ans. 

    Annotations in Spring Boot are used to provide metadata about the application and its components.

    • Annotations are used to configure Spring Boot applications, define beans, handle requests, etc.

    • Examples include @SpringBootApplication, @RestController, @Autowired, @RequestMapping, etc.

  • Answered by AI
  • Q5. Features of java 8
  • Ans. 

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

    • Lambda expressions allow for more concise code and enable functional programming.

    • Functional interfaces are interfaces with a single abstract method, used for lambda expressions.

    • Streams provide a way to work with collections of objects in a functional style.

    • Default methods in interfaces ...

  • Answered by AI
  • Q6. How interface is implemented in java
  • Ans. 

    Interfaces in Java are implemented using the 'implements' keyword, allowing classes to provide specific implementations for methods defined in the interface.

    • Interfaces in Java define a contract for classes to implement, specifying method signatures without implementations.

    • A class can implement multiple interfaces by separating them with commas.

    • Classes implementing an interface must provide concrete implementations for ...

  • Answered by AI
  • Q7. How stream API works
  • Ans. 

    Stream API in Java provides a way to process collections of objects in a functional style.

    • Stream API allows for functional-style operations on collections like map, filter, reduce, etc.

    • It supports lazy evaluation, meaning operations are only performed when needed.

    • Streams can be sequential or parallel, depending on the source and operations used.

  • Answered by AI
  • Q8. Benefits of springboot over spring
  • Ans. 

    Spring Boot simplifies the setup and development of Spring applications by providing a convention-over-configuration approach.

    • Spring Boot eliminates the need for XML configuration by using annotations and sensible defaults.

    • It includes embedded servers like Tomcat, Jetty, or Undertow, making it easy to deploy standalone applications.

    • Auto-configuration feature reduces the amount of boilerplate code needed to set up a Spr...

  • Answered by AI
  • Q9. Difference between throw and throwable
  • Ans. 

    throw is a keyword used to explicitly throw an exception, while Throwable is a class that serves as the base class for all exceptions in Java.

    • throw is used to throw an exception in a method, while Throwable is the superclass of all exceptions in Java.

    • throw is followed by an instance of Throwable class or its subclasses, while Throwable is a class that provides common methods for handling exceptions.

    • Example: throw new N...

  • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Try to speak about one topic of more time it will increase the time of interview.

    Skills evaluated in this interview

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

    I applied via Naukri.com and was interviewed in Jul 2024. There were 2 interview rounds.

    Round 1 - Group Discussion 

    They asked question about myself

    Round 2 - Coding Test 

    Gave codeing in advance java concepts

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

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

    Round 1 - Coding Test 

    1. Basic Java
    2. Code Snippet
    3. Microservices

    Interview experience
    3
    Average
    Difficulty level
    Easy
    Process Duration
    2-4 weeks
    Result
    No response

    I was interviewed in Mar 2024.

    Round 1 - Technical 

    (1 Question)

    • Q1. What are oops concept?
    • Ans. 

      Object-oriented programming concepts that focus on data encapsulation, inheritance, polymorphism, and abstraction.

      • Encapsulation: Bundling data and methods that operate on the data into a single unit.

      • Inheritance: Ability of a class to inherit properties and behavior from another class.

      • Polymorphism: Ability to present the same interface for different data types.

      • Abstraction: Hiding the complex implementation details and s

    • Answered by AI

    I applied via LinkedIn and was interviewed in Aug 2022. There were 2 interview rounds.

    Round 1 - Technical 

    (4 Questions)

    • Q1. How do you allocate memory to 2D array dynamically? How and why does that work?
    • Ans. 

      Dynamic allocation of memory to 2D array is done using double pointer and malloc function.

      • Declare a double pointer to hold the 2D array.

      • Allocate memory to the first dimension using malloc function.

      • Allocate memory to the second dimension using a loop and malloc function.

      • Free the memory after use to avoid memory leaks.

      • Example: int **arr; arr = (int **)malloc(rows * sizeof(int *));

      • Example: for(int i=0; i

    • Answered by AI
    • Q2. Given string 'aabbdbdges', write a function to return a string in which there would be the letter followed by it's count of occurrence. (the output from the function for the given string should be a2b3d2g2...
    • Q3. Questions regarding memory allocation layout in C
    • Q4. Questions on Code lifecycle. Like, what is assembly code? what are macros?
    Round 2 - Manegerial round 

    (2 Questions)

    • Q1. Detailed questions regarding what is sprint, what is iteration? what is a story? what is a scrum? what is the role of scrum master?
    • Q2. Explain waterfall model
    • Ans. 

      Waterfall model is a linear sequential approach to software development.

      • It follows a sequential process where each phase must be completed before moving to the next one.

      • It is a rigid model and changes cannot be made easily once a phase is completed.

      • It is suitable for projects with well-defined requirements and a clear understanding of the end product.

      • Phases include requirements gathering, design, implementation, testin...

    • Answered by AI

    Interview Preparation Tips

    Topics to prepare for DXC Technology Application Developer interview:
    • C
    Interview preparation tips for other job seekers - Prepare how the memory layout works in C.
    And have hands on practice writing small small C codes.

    Skills evaluated in this interview

    Interview Questionnaire 

    11 Questions

    • Q1. Interview process
    • Q2. What type of interview process is there online or offline
    • Q3. Plz mail me interview date and time
    • Q4. I am fresher know the core java subject need a java developer job is there sir
    • Q5. I did not attend any interviews
    • Q6. Still waiting for your call
    • Q7. B tech in EEE
    • Ans. 

      The question seems unrelated to the job position.

      • I have a Bachelor's degree in Electrical and Electronics Engineering, but my expertise is in Java development.

      • While my degree has given me a strong foundation in electrical systems, I have chosen to pursue a career in software development.

      • I have taken relevant courses and gained experience in Java development through internships and personal projects.

    • Answered by AI
    • Q8. Aggrigated with 71 GPA
    • Ans. 

      The question seems to be incomplete or incorrect.

      • Please provide more context or clarify the question.

      • It is unclear what is being asked or what is meant by 'aggrigated with 71 GPA'.

      • Without more information, it is impossible to provide a meaningful answer.

    • Answered by AI
    • Q9. Plzz contact me soon sir
    • Q10. Waiting for your responce sir
    • Q11. Thabk

    Interview Preparation Tips

    Interview preparation tips for other job seekers - i did not any attend your company interviews

    I applied via Naukri.com and was interviewed in May 2021. There were 4 interview rounds.

    Interview Questionnaire 

    3 Questions

    • Q1. Explain the oops concepts
    • Ans. 

      OOPs concepts are the fundamental principles of object-oriented programming.

      • Abstraction: hiding implementation details

      • Encapsulation: binding data and methods together

      • Inheritance: creating new classes from existing ones

      • Polymorphism: using a single interface to represent multiple entities

      • Objects: instances of classes with their own state and behavior

    • Answered by AI
    • Q2. What tool you have used
    • Ans. 

      I have used various tools including Eclipse, IntelliJ IDEA, Maven, Git, JIRA, and Jenkins.

      • Eclipse - for Java development and debugging

      • IntelliJ IDEA - for Java development and debugging

      • Maven - for project management and build automation

      • Git - for version control and collaboration

      • JIRA - for issue tracking and project management

      • Jenkins - for continuous integration and deployment

    • Answered by AI
    • Q3. Given a scenerio and asked the logic

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Hi All,
    I started my career at 2017 then got placed in AMAZON I think most of the peoples dream company too 2 years I was there,
    I really wanted to share my experience in clearing the capgemini interview before that i have failed to crack nearly 10MNCs don't get deppressed it helps you lot. Capggemini interview was quite tough but make sure for what role your are applying for and thoroughly learn all the concepts and don't explain them by definition have the habbit of explaining your points practally really it will make a good impact to them and don't be panic stay calm and greet them Casually, it would really help you, attend more interviews Collect the questions if you are rejected also don't worry really it will help you to crack before attending the any interview make sure you know each and every concepts if you are really dont know the answer please be open to them
    HR TEAM IS REALLY NICE I would Rate them 5

    ALL THE BEST

    IBM Interview FAQs

    How many rounds are there in IBM Java Application Developer interview?
    IBM interview process usually has 2 rounds. The most common rounds in the IBM interview process are Resume Shortlist and Technical.
    How to prepare for IBM Java Application 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 Application Development, Java, Design Patterns, J2Ee and Multithreading.
    What are the top questions asked in IBM Java Application Developer interview?

    Some of the top questions asked at the IBM Java Application Developer interview -

    1. Statement vs prepared statements(whats the use of pstmts over stmts), why micro...read more
    2. Basics of Java, use of javac, define System.out.println, method overloaoding, c...read more

    Tell us how to improve this page.

    People are getting interviews through

    based on 1 IBM interview
    Job Portal
    100%
    Low Confidence
    ?
    Low Confidence means the data is based on a small number of responses received from the candidates.

    Interview Questions from Similar Companies

    TCS Interview Questions
    3.7
     • 10.1k Interviews
    Accenture Interview Questions
    3.9
     • 7.9k Interviews
    Infosys Interview Questions
    3.7
     • 7.4k Interviews
    Wipro Interview Questions
    3.7
     • 5.5k Interviews
    Cognizant Interview Questions
    3.8
     • 5.5k Interviews
    Capgemini Interview Questions
    3.8
     • 4.7k Interviews
    Tech Mahindra Interview Questions
    3.6
     • 3.7k Interviews
    HCLTech Interview Questions
    3.5
     • 3.7k Interviews
    Genpact Interview Questions
    3.9
     • 3k Interviews
    LTIMindtree Interview Questions
    3.9
     • 2.8k Interviews
    View all
    IBM Java Application Developer Salary
    based on 139 salaries
    ₹3.8 L/yr - ₹15.4 L/yr
    8% more than the average Java Application Developer Salary in India
    View more details

    IBM Java Application Developer Reviews and Ratings

    based on 13 reviews

    4.9/5

    Rating in categories

    4.6

    Skill development

    4.9

    Work-Life balance

    4.2

    Salary & Benefits

    4.8

    Job Security

    4.8

    Company culture

    4.5

    Promotions/Appraisal

    4.5

    Work Satisfaction

    Explore 13 Reviews and Ratings
    Application Developer
    11.5k salaries
    unlock blur

    ₹5.5 L/yr - ₹23.5 L/yr

    Software Engineer
    5.5k salaries
    unlock blur

    ₹4.7 L/yr - ₹22.2 L/yr

    Advisory System Analyst
    5.3k salaries
    unlock blur

    ₹9.2 L/yr - ₹27 L/yr

    Senior Software Engineer
    5k salaries
    unlock blur

    ₹8 L/yr - ₹30 L/yr

    Senior Systems Engineer
    4.6k salaries
    unlock blur

    ₹5.6 L/yr - ₹18.5 L/yr

    Explore more salaries
    Compare IBM with

    Oracle

    3.7
    Compare

    TCS

    3.7
    Compare

    Cognizant

    3.8
    Compare

    Accenture

    3.9
    Compare

    Calculate your in-hand salary

    Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
    Did you find this page helpful?
    Yes No
    write
    Share an Interview