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

Updated 19 Jul 2024

IBM Backend Java Developer Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. What is profile in springboot
  • Ans. 

    Profile in Spring Boot is a set of configurations that can be used to customize the behavior of an application.

    • Profiles allow developers to define different configurations for different environments (e.g. development, testing, production).

    • Profiles can be activated using the 'spring.profiles.active' property in the application.properties file.

    • Profiles can be used to specify different database connections, logging levels...

  • Answered by AI
  • Q2. How will you create custom exception
  • Ans. 

    Custom exceptions can be created by extending the Exception class in Java.

    • Create a new class that extends the Exception class

    • Override the constructors to provide custom messages and error codes

    • Throw the custom exception using the 'throw' keyword

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Jul 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. What is idempotent term in patch and put?
  • Ans. 

    Idempotent term in patch and put means that multiple identical requests have the same effect as a single request.

    • Idempotent means that the result of a successful request is the same regardless of how many times it is repeated.

    • In PATCH and PUT requests, idempotent means that sending the same request multiple times will not have any additional side effects.

    • For example, if a PATCH request updates a resource with specific ...

  • Answered by AI
  • Q2. Java memory types and which object stores where?
  • Ans. 

    Java memory types and where objects are stored

    • Java memory consists of stack and heap

    • Primitive data types are stored in stack

    • Objects and arrays are stored in heap

    • References to objects are stored in stack

    • Example: int num = 5; // num is stored in stack, value 5 is stored in stack

    • Example: String str = new String(); // str reference is stored in stack, actual String object is stored in heap

  • Answered by AI
  • Q3. Hash map store unique name?
  • Ans. 

    Yes, hash map stores unique keys.

    • Hash map in Java does not allow duplicate keys. If you try to insert a duplicate key, it will replace the existing value with the new one.

    • However, hash map allows duplicate values.

    • Example: HashMap map = new HashMap<>(); map.put("John", 25); map.put("Jane", 30); map.put("John", 35); // 'John' key will now have value 35.

  • Answered by AI
  • Q4. Hashmap java 7 and java 8 difference?
  • Ans. 

    Java 8 introduced new methods for HashMap such as forEach, compute, merge, etc.

    • Java 8 introduced new methods like forEach, compute, merge for HashMap operations

    • Java 8 allows using lambda expressions for iterating over HashMap entries

    • Java 8 introduced default methods in Map interface for HashMap

  • Answered by AI
  • Q5. Can we create static method or variable inside static main()
  • Ans. 

    No, static methods or variables cannot be created inside static main() method.

    • Static methods or variables cannot be created inside another static method.

    • Static methods or variables can only be created at the class level, outside of any method.

    • Example: public class MyClass { static int myVariable = 10; }

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer was unprofessional behavior, they don't know even what to ask from experience person.
They have their own answer, they don't accept your answer even though if it is correct.
5 years experienced person they ask just java basic, not springboot, no Microservices, no any advanced questions.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is StreamsAPI
  • Ans. 

    StreamsAPI is a feature in Java that allows for processing sequences of elements in a functional style.

    • StreamsAPI provides a way to work with collections of objects in a more concise and declarative manner.

    • It supports operations like filter, map, reduce, and collect.

    • Example: List names = Arrays.asList("Alice", "Bob", "Charlie"); names.stream().filter(name -> name.startsWith("A")).forEach(System.out::println);

Answered by AI
  • Q2. What is exception in Java
  • Ans. 

    An exception in Java is an event that disrupts the normal flow of a program's instructions.

    • Exceptions are objects that are thrown when an abnormal condition occurs during the execution of a program.

    • They can be caught and handled using try-catch blocks.

    • Unchecked exceptions do not need to be declared in a method's throws clause, while checked exceptions do.

    • Examples of exceptions in Java include NullPointerException, Arra

  • Answered by AI

    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
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (2 Questions)

    • Q1. Chvvvv vvbbbbb isush shjshs jdudjdj
    • Q2. Vvvhjjjc hhhjVv hsudjsj hsudjsh hdhdh

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Vvbh
    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
    1
    Bad
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Coding Test 

    Good coding questions related array and string

    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
    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 - Aptitude Test 

    Test duration = 30 minutes, Topics = numbers, HCF, LCM, Time and distance, Ages, Average and reasoning

    Round 3 - Coding Test 

    Duration = 30 minutes, Topics = array, string, athematic operation, prime number etc.

    Round 4 - One-on-one 

    (2 Questions)

    • Q1. Tell me about yourself?
    • Q2. Are you team player?

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Know yourself and what you want.
    Pump yourself up and stay positive.

    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

    IBM Interview FAQs

    How many rounds are there in IBM Backend Java Developer interview?
    IBM interview process usually has 1 rounds. The most common rounds in the IBM interview process are Technical.
    How to prepare for IBM Backend Java 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 Debugging, JDBC, JPA, MVC and Maven.
    What are the top questions asked in IBM Backend Java Developer interview?

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

    1. How will you create custom except...read more
    2. What is profile in springb...read more

    Tell us how to improve this page.

    IBM Backend Java Developer Interview Process

    based on 1 interview

    Interview experience

    5
      
    Excellent
    View more

    Interview Questions from Similar Companies

    TCS Interview Questions
    3.7
     • 10.5k Interviews
    Accenture Interview Questions
    3.8
     • 8.2k Interviews
    Infosys Interview Questions
    3.6
     • 7.6k Interviews
    Wipro Interview Questions
    3.7
     • 5.7k Interviews
    Cognizant Interview Questions
    3.8
     • 5.6k Interviews
    Capgemini Interview Questions
    3.7
     • 4.8k Interviews
    Tech Mahindra Interview Questions
    3.5
     • 3.9k Interviews
    HCLTech Interview Questions
    3.5
     • 3.8k Interviews
    Genpact Interview Questions
    3.8
     • 3.1k Interviews
    LTIMindtree Interview Questions
    3.8
     • 3k Interviews
    View all
    IBM Backend Java Developer Salary
    based on 21 salaries
    ₹8.8 L/yr - ₹28.9 L/yr
    165% more than the average Backend Java Developer Salary in India
    View more details

    IBM Backend Java Developer Reviews and Ratings

    based on 5 reviews

    4.2/5

    Rating in categories

    3.9

    Skill development

    4.6

    Work-life balance

    3.9

    Salary

    4.2

    Job security

    4.2

    Company culture

    4.2

    Promotions

    4.3

    Work satisfaction

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

    ₹5.5 L/yr - ₹26.1 L/yr

    Software Engineer
    5.5k salaries
    unlock blur

    ₹5.3 L/yr - ₹22.3 L/yr

    Advisory System Analyst
    5.2k salaries
    unlock blur

    ₹9.4 L/yr - ₹28 L/yr

    Senior Software Engineer
    4.8k salaries
    unlock blur

    ₹8 L/yr - ₹30 L/yr

    Senior Systems Engineer
    4.4k salaries
    unlock blur

    ₹5.6 L/yr - ₹20 L/yr

    Explore more salaries
    Compare IBM with

    Oracle

    3.7
    Compare

    TCS

    3.7
    Compare

    Cognizant

    3.8
    Compare

    Accenture

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