i
10405090xyzabc
Filter interviews by
I appeared for an interview in Feb 2025, where I was asked the following questions.
Java annotations provide metadata for classes and methods, enhancing code readability and reducing boilerplate in frameworks like Spring.
Annotations like @Component and @Service simplify bean creation in Spring.
Dependency injection is streamlined with @Autowired, reducing manual wiring.
Custom annotations can encapsulate common behaviors, improving code clarity.
Annotations reduce the need for XML configuration, making t...
Java Streams enable parallel processing using ForkJoin framework, but have pitfalls like race conditions and performance issues with small datasets.
Use parallel streams for CPU-intensive tasks to leverage multiple cores effectively.
Avoid using parallel streams for small datasets as overhead may outweigh benefits.
Be cautious of shared mutable state to prevent race conditions; prefer immutable data structures.
Use operati...
I appeared for an interview in Feb 2025, where I was asked the following questions.
Java annotations provide metadata for classes and methods, enhancing code readability and reducing boilerplate in frameworks like Spring.
Annotations like @Component and @Service simplify bean creation in Spring, reducing XML configuration.
Using @Autowired allows for automatic dependency injection, improving code clarity.
Built-in annotations like @Override help indicate method overriding, enhancing code understanding.
Cu...
Java Streams enable parallel processing using ForkJoin framework, but have pitfalls like race conditions and debugging challenges.
Use parallel streams for CPU-intensive tasks to leverage multiple cores effectively.
Avoid using parallel streams for small datasets as overhead may outweigh benefits.
Be cautious of shared mutable state to prevent race conditions; prefer immutable data structures.
Use forEachOrdered() for orde...
I appeared for an interview in Feb 2025, where I was asked the following questions.
ArrayList offers fast access and is memory efficient, while LinkedList excels in insertions and deletions.
ArrayList: Dynamic array, fast random access (O(1)). Example: Accessing an element by index.
LinkedList: Doubly linked list, fast insertions/deletions (O(1) at ends). Example: Adding/removing elements at the head.
ArrayList: Resizes when full, may cause performance hit during resizing.
LinkedList: Higher memory overhe...
== checks reference equality; .equals() checks value equality, can be overridden for custom comparison.
== compares memory addresses: new String("hello") == new String("hello") returns false.
.equals() compares actual content: "hello".equals("hello") returns true.
Override equals() when logical equality differs from reference equality, e.g., in custom classes.
When overriding equals(), also override hashCode() to maintain ...
Lambda expressions enhance Java code readability and maintainability by simplifying syntax and promoting functional programming.
Concise Syntax: Lambda expressions reduce boilerplate code. Example: Instead of writing an anonymous class for Runnable, use () -> System.out.println("Hello").
Improved Readability: Code becomes more expressive. Example: list.forEach(item -> System.out.println(item)); is clearer than usin...
Checked exceptions require handling; unchecked exceptions do not. Custom exceptions can be either based on use case.
Checked exceptions must be caught or declared (e.g., IOException, SQLException).
Unchecked exceptions do not require explicit handling (e.g., NullPointerException, ArithmeticException).
Checked exceptions enforce robust error handling but can clutter code.
Unchecked exceptions indicate programming errors tha...
The Java Memory Model defines thread interactions with memory, ensuring visibility and ordering in multithreaded environments.
The JMM specifies how variables are read and written in a multithreaded context.
Volatile variables ensure visibility; changes are immediately visible to all threads.
Synchronized blocks provide mutual exclusion, preventing concurrent access to critical sections.
Without synchronization, threads ma...
Method overloading allows same method names with different parameters; overriding changes method behavior in subclasses.
Method Overloading: Same method name, different parameters (e.g., `void add(int a, int b)` and `void add(double a, double b)`)
Method Overriding: Subclass provides specific implementation of a superclass method (e.g., `void sound()` in `Animal` class overridden in `Dog` class)
Overloading is resolved at...
Functional interfaces in Java enable lambda expressions for concise implementation of single abstract methods.
A functional interface has exactly one abstract method, e.g., Runnable, Callable.
Lambda expressions provide a shorthand way to implement functional interfaces, e.g., () -> System.out.println("Hello").
Functional interfaces can include multiple default or static methods, enhancing functionality without breakin...
Parallel streams enhance performance but come with trade-offs like overhead and thread contention.
Performance Gain: Parallel streams can significantly speed up processing for large datasets by utilizing multiple CPU cores.
Overhead: The overhead of managing multiple threads can negate performance benefits for smaller datasets.
Thread Contention: Multiple threads accessing shared resources can lead to contention, reducing...
Immutability in Java ensures objects cannot be modified after creation, enhancing thread safety and consistency.
Immutable objects cannot be changed after creation, e.g., String class.
Thread-safe by nature, as they prevent concurrent modifications.
Prevent unintended side effects in multi-threaded applications.
To create an immutable class, use final fields and avoid setters.
Collections can be made immutable using Collect...
final, finally, and finalize serve different purposes in Java: constants, cleanup, and garbage collection respectively.
final: Used to declare constants. Example: final int MAX_VALUE = 100;
finally: A block that executes after try-catch. Example: try { ... } catch (Exception e) { ... } finally { cleanup(); }
finalize(): A method called by the garbage collector. Example: protected void finalize() { ... }
final variable cann...
The Singleton pattern ensures a class has only one instance and provides a global point of access to it.
Singleton pattern restricts instantiation of a class to one object.
Useful for managing shared resources like database connections.
Lazy initialization creates the instance when it's first needed.
Eager initialization creates the instance at class loading time.
Thread safety can be achieved using synchronized methods or ...
Java annotations provide metadata for classes, enhancing code readability and reducing boilerplate in frameworks like Spring.
Annotations like @Component and @Service in Spring simplify bean management and dependency injection.
Built-in annotations such as @Override and @Deprecated improve code clarity by indicating method behavior.
Custom annotations can be created using @interface, allowing for tailored metadata for spe...
Java Streams enable parallel processing using ForkJoin framework, but have pitfalls like race conditions and performance issues with small datasets.
Use parallel streams for CPU-intensive tasks to leverage multiple cores.
Avoid shared mutable state to prevent race conditions; prefer immutable data structures.
Use the 'parallel()' method to convert a sequential stream to a parallel stream.
Be cautious with order-sensitive o...
I appeared for an interview in Feb 2025, where I was asked the following questions.
ArrayList offers fast access and is memory efficient, while LinkedList excels in insertions/deletions but has higher memory overhead.
ArrayList: Fast random access (O(1)), ideal for frequent retrievals. Example: Storing user data for quick lookups.
LinkedList: Fast insertions/deletions (O(1) at head/tail), suitable for dynamic data structures. Example: Implementing a queue.
Memory overhead: LinkedList has higher memory us...
== checks reference equality; .equals() checks value equality, can be overridden for custom comparison.
== compares memory addresses, while .equals() compares actual content.
Example: new String("hello") == new String("hello") returns false.
"hello".equals("hello") returns true.
Wrapper classes like Integer cache values from -128 to 127, affecting == behavior.
Override equals() when logical equality is needed, especially in...
Java's garbage collector reclaims memory from unused objects, optimizing performance through various algorithms.
Garbage collection in Java is automatic, freeing developers from manual memory management.
The heap is divided into Young Generation (short-lived objects) and Old Generation (long-lived objects).
Minor GC occurs in the Young Generation, quickly reclaiming memory from short-lived objects.
Major GC (Full GC) clean...
Lambda expressions enhance Java code by improving readability and maintainability through concise syntax and functional programming.
Concise Syntax: Lambda expressions reduce boilerplate code, making it easier to read. Example: (x, y) -> x + y instead of creating a full class.
Functional Programming: Encourages a functional style, allowing developers to focus on 'what' to do rather than 'how' to do it.
Improved Readabi...
Checked exceptions require handling; unchecked exceptions do not. Custom exceptions can be either, based on use case.
Checked exceptions must be caught or declared (e.g., IOException, SQLException).
Unchecked exceptions do not require explicit handling (e.g., NullPointerException, ArithmeticException).
Checked exceptions promote robust error handling but can clutter code.
Unchecked exceptions indicate programming errors th...
The Java Memory Model defines thread interactions with memory, ensuring visibility and ordering in multithreaded environments.
The JMM specifies how threads read and write shared variables, ensuring visibility and ordering.
Volatile variables guarantee visibility; changes made by one thread are immediately visible to others.
Synchronized blocks provide mutual exclusion, preventing multiple threads from executing critical ...
Method overloading allows same method name with different parameters; overriding allows subclass to redefine parent method.
Method Overloading: Same method name, different parameters (e.g., int add(int a, int b), double add(double a, double b)).
Method Overriding: Subclass provides specific implementation of a method defined in its superclass (e.g., class Animal has method sound(), class Dog overrides sound()).
Overloadin...
Functional interfaces in Java enable lambda expressions for concise implementation of single abstract methods.
A functional interface has exactly one abstract method, e.g., Runnable, Callable.
Lambda expressions provide a shorthand way to implement functional interfaces, e.g., () -> System.out.println("Hello").
Functional interfaces can have multiple default or static methods, allowing for added functionality without b...
Parallel streams enhance performance but come with trade-offs like overhead and thread contention.
Increased overhead: Parallel streams may introduce overhead due to thread management.
Thread contention: Multiple threads may compete for shared resources, leading to performance degradation.
Data splitting: Effective parallelism depends on how well data can be split; uneven splits can lead to inefficiencies.
Order sensitivit...
Immutability in Java ensures objects cannot be modified after creation, enhancing thread safety and consistency.
Immutable objects cannot be changed once created, e.g., String class.
Thread-safe as they prevent modifications, reducing concurrency issues.
To create an immutable class, use final fields and avoid setters.
Collections can be made immutable using Collections.unmodifiableList().
Useful for caching and maintaining...
final, finally, and finalize serve different purposes in Java: constants, cleanup, and garbage collection respectively.
final: Used to declare constants. Example: final int MAX_VALUE = 100;
finally: Ensures code execution after try-catch. Example: try { ... } catch { ... } finally { cleanup(); }
finalize(): Method called by GC before object deletion. Example: protected void finalize() { ... }
final variable: Cannot be reas...
Singleton pattern restricts a class to a single instance, useful for shared resources like database connections.
Private constructor prevents instantiation from outside the class.
Static instance variable holds the single instance of the class.
Lazy initialization creates the instance only when needed.
Eager initialization creates the instance at class loading time.
Thread safety can be achieved using synchronized methods o...
Java annotations provide metadata for classes and methods, enhancing code readability and reducing boilerplate in frameworks like Spring.
Annotations like @Component and @Service in Spring simplify bean management and dependency injection.
Built-in annotations such as @Override and @Deprecated improve code clarity by indicating method behavior and deprecation status.
Custom annotations can be created using @interface to e...
Java Streams enable parallel processing via ForkJoin framework, but have pitfalls like race conditions and performance issues with small datasets.
Use parallelStream() for parallel processing: Example: list.parallelStream().map(...).collect(Collectors.toList());
Avoid shared mutable state to prevent race conditions: Use immutable objects or thread-safe collections.
Consider the size of the dataset: Parallel processing is ...
10405090xyzabc interview questions for popular designations
I appeared for an interview in Feb 2025, where I was asked the following questions.
Java annotations provide metadata for classes and methods, enhancing code readability and reducing boilerplate in frameworks like Spring.
Annotations like @Component and @Service simplify bean management in Spring.
Dependency injection is streamlined with @Autowired, reducing manual wiring.
Custom annotations can encapsulate repetitive configurations, improving code clarity.
Annotations reduce the need for XML configuratio...
Java Streams enable parallel processing using ForkJoin framework, but have pitfalls like race conditions and performance issues with small datasets.
Use parallel streams for CPU-intensive tasks to leverage multiple cores.
Avoid shared mutable state to prevent race conditions; prefer immutable objects.
Use the 'parallel()' method to convert a sequential stream to a parallel stream.
Be cautious with order-sensitive operation...
I appeared for an interview in Feb 2025, where I was asked the following questions.
ArrayList is a resizable array, while LinkedList is a doubly linked list. Choose based on performance needs.
ArrayList: Faster for random access (O(1)). Example: list.get(5);
LinkedList: Faster for insertions/deletions (O(1)) at both ends. Example: list.addFirst('A');
ArrayList: Uses less memory overhead compared to LinkedList.
LinkedList: Better for frequent insertions/deletions in the middle of the list.
ArrayList: Requir...
Java's synchronized keyword provides thread safety but has limitations compared to ReentrantLock.
Advantages of synchronized: Simple to use, built-in language feature.
Disadvantages of synchronized: Can lead to thread contention, no timeout options.
ReentrantLock allows more flexibility: supports tryLock(), lockInterruptibly().
ReentrantLock can be more efficient in high contention scenarios.
Example of synchronized: synchr...
== checks reference equality, while .equals() checks value equality in Java. Use .equals() for content comparison.
== compares object references (memory addresses). Example: String a = new String('test'); String b = new String('test'); a == b returns false.
.equals() compares actual content of objects. Example: a.equals(b) returns true.
Use == for primitive types (int, char, etc.) and .equals() for objects.
Improper use of...
Java's garbage collector automatically manages memory by reclaiming unused objects, improving performance and preventing memory leaks.
Garbage Collection (GC) is the process of automatically identifying and disposing of objects that are no longer needed.
Java uses several GC algorithms, including Serial, Parallel, CMS (Concurrent Mark-Sweep), and G1 (Garbage-First).
The Serial GC is a simple, single-threaded collector sui...
Java 8 introduced lambdas, Stream API, and other features that enhance functional programming and improve code readability.
Lambdas: Enable concise representation of functional interfaces. Example: (x, y) -> x + y.
Stream API: Allows processing sequences of elements (collections) in a functional style. Example: list.stream().filter(x -> x > 10).collect(Collectors.toList()).
Default Methods: Interfaces can have me...
Checked exceptions must be declared or handled; unchecked exceptions do not require explicit handling.
Checked exceptions are subclasses of Exception but not of RuntimeException.
Example of checked exception: IOException, which must be caught or declared.
Unchecked exceptions are subclasses of RuntimeException.
Example of unchecked exception: NullPointerException, which does not need to be declared.
Checked exceptions are t...
The Java Memory Model defines how threads interact through memory, ensuring visibility and ordering of shared variables.
The Java Memory Model (JMM) specifies how threads interact with memory, ensuring consistency and visibility of shared variables.
It defines rules for visibility, atomicity, and ordering of operations in a multithreaded environment.
Without proper synchronization, threads may see stale or inconsistent da...
Method overloading allows multiple methods with the same name but different parameters; overriding allows subclass methods to replace superclass methods.
Method Overloading: Same method name, different parameter types or counts.
Example of Overloading: 'int add(int a, int b)' and 'double add(double a, double b)'.
Use Overloading for convenience and readability when performing similar operations.
Method Overriding: Same met...
Functional interfaces in Java are interfaces with a single abstract method, enabling lambda expressions for concise code.
A functional interface has exactly one abstract method.
They can have multiple default or static methods.
Common examples include Runnable, Callable, and Comparator.
Lambda expressions provide a clear and concise way to implement functional interfaces.
Example of a custom functional interface: @Functiona...
Java Streams provide a functional approach to processing sequences of elements, unlike Iterators which are imperative.
Streams are part of the Java 8+ API, enabling functional-style operations on collections.
Unlike Iterators, Streams do not store data; they process data on-the-fly.
Streams support operations like map, filter, and reduce, allowing for concise and readable code.
Example: List<String> names = Arrays.as...
Immutability in Java means objects cannot be modified after creation, enhancing security and performance.
1. Immutability: Once created, an object's state cannot be changed.
2. String Class: Strings in Java are immutable; any modification creates a new String object.
3. Example: String s1 = "Hello"; s1 = s1 + " World!"; // s1 now points to a new String object.
4. Advantages: Thread-safe, easier to cache, and can be used as...
final, finally, and finalize serve different purposes in Java: variable declaration, exception handling, and garbage collection respectively.
final: Used to declare constants. Example: final int MAX_VALUE = 100;
finally: Block that executes after try-catch, regardless of exceptions. Example: try { ... } catch { ... } finally { ... }
finalize: Method called by the garbage collector before an object is removed. Example: pro
The Singleton pattern restricts instantiation of a class to one object, ensuring controlled access to that instance.
1. The Singleton pattern ensures a class has only one instance and provides a global point of access to it.
2. Common implementations include lazy initialization, eager initialization, and double-checked locking.
3. Lazy initialization: Create the instance when it is needed, using synchronized method for th...
Java annotations provide metadata for classes, methods, and fields, enhancing functionality in frameworks like Spring.
Annotations are metadata that provide information about the program but are not part of the program itself.
In Spring, annotations like @Component, @Service, and @Controller are used for defining beans and their roles.
Built-in annotations include @Override, @Deprecated, and @SuppressWarnings, which serve...
Java Streams enable parallel processing for efficient data handling but come with potential pitfalls that need careful management.
Java Streams can be processed in parallel using the 'parallelStream()' method, which divides the workload across multiple threads.
Parallel streams utilize the Fork/Join framework, allowing tasks to be split and executed concurrently, improving performance for large datasets.
Potential pitfall...
ArrayList offers fast access and is memory efficient, while LinkedList excels in insertions and deletions.
ArrayList provides O(1) access time, making it ideal for frequent retrievals.
LinkedList allows O(1) insertions/deletions at both ends, suitable for dynamic data structures.
Example: Use ArrayList for a list of user names where retrieval is frequent.
Example: Use LinkedList for a playlist where songs are frequently ad...
== checks reference equality; .equals() checks value equality, can be overridden for custom comparison.
== compares memory addresses: new String("hello") == new String("hello") returns false.
.equals() compares actual content: "hello".equals("hello") returns true.
Override equals() when logical equality differs from reference equality, e.g., in custom classes.
When overriding equals(), also override hashCode() to maintain ...
Java's garbage collector automatically manages memory, reclaiming space from unused objects through various algorithms.
Garbage collection in Java is automatic, freeing developers from manual memory management.
The JVM uses different GC algorithms: Serial, Parallel, CMS, and G1, each with unique characteristics.
Memory is divided into Young Generation (short-lived objects) and Old Generation (long-lived objects).
Minor GC ...
Lambda expressions enhance Java code readability and maintainability by simplifying syntax and promoting functional programming.
Concise Syntax: Lambda expressions reduce boilerplate code. For example, instead of writing an anonymous class for a Runnable, you can use: `Runnable r = () -> System.out.println("Hello");`
Improved Readability: Code becomes more expressive. For instance, using `list.forEach(item -> Syste...
I appeared for an interview in Feb 2025, where I was asked the following questions.
ArrayList offers fast access and is memory efficient, while LinkedList excels in insertions and deletions.
ArrayList: O(1) access time, ideal for frequent retrievals. Example: Storing user data for quick lookups.
LinkedList: O(1) insertions/deletions at ends, suitable for dynamic data. Example: Implementing a playlist where songs can be added/removed.
Memory overhead: LinkedList has higher memory usage due to node pointer...
== checks reference equality; .equals() checks value equality, can be overridden for custom comparison.
== compares memory addresses, while .equals() compares actual content.
Example: new String("hello") == new String("hello") returns false.
"hello".equals("hello") returns true.
Wrapper classes like Integer cache small values, affecting == behavior.
Override equals() when logical equality is needed, e.g., in custom classes.
...
Java's garbage collector reclaims memory from unused objects, optimizing performance and managing memory regions.
Garbage collection in Java is automatic, freeing developers from manual memory management.
The JVM uses various GC algorithms: Serial, Parallel, CMS, and G1, each suited for different scenarios.
Memory is divided into Young Generation (short-lived objects) and Old Generation (long-lived objects).
Minor GC occur...
Lambda expressions enhance Java code by making it more concise, readable, and easier to maintain through functional programming.
Conciseness: Lambda expressions reduce boilerplate code. For example, instead of creating an anonymous class for a Runnable, you can use: `Runnable r = () -> System.out.println("Hello");`
Readability: They allow developers to express actions more clearly. For instance, using `list.forEach(it...
Checked exceptions require handling; unchecked exceptions do not. Custom exceptions can be either based on use case.
Checked exceptions must be caught or declared (e.g., IOException, SQLException).
Unchecked exceptions do not require explicit handling (e.g., NullPointerException, ArithmeticException).
Checked exceptions promote robust error handling but can clutter code.
Unchecked exceptions indicate programming errors tha...
The Java Memory Model defines thread interaction with memory, ensuring visibility and ordering in multithreaded environments.
JMM specifies how threads interact with shared variables, ensuring visibility and ordering.
Volatile keyword ensures that changes to a variable are visible to all threads immediately.
Synchronized blocks provide mutual exclusion, preventing multiple threads from accessing critical sections simultan...
Method overloading allows same method name with different parameters; overriding changes parent method behavior in subclasses.
Method Overloading: Same method name, different parameters (e.g., `int add(int a, int b)` and `double add(double a, double b)`)
Method Overriding: Subclass provides specific implementation of a parent method (e.g., `void sound()` in `Animal` class overridden in `Dog` class)
Overloading is resolved...
Functional interfaces in Java enable concise lambda expressions and support API evolution through default methods.
A functional interface has exactly one abstract method, e.g., Runnable, Callable.
Lambda expressions provide a shorthand way to implement functional interfaces.
Functional interfaces can include multiple default or static methods.
The @FunctionalInterface annotation ensures only one abstract method is present.
...
Java Streams enable functional operations on collections with lazy evaluation, differing from Iterators in several key aspects.
Streams support functional-style operations like filter(), map(), and reduce().
Example: list.stream().filter(x -> x > 10).collect(Collectors.toList());
Streams are not reusable; once consumed, they cannot be used again.
Iterators can be reset and reused, allowing for multiple traversals.
Par...
Immutability in Java ensures objects cannot be changed after creation, enhancing thread safety and preventing unintended side effects.
Immutable objects cannot be modified after creation, e.g., String class.
Thread-safe by nature, as they prevent concurrent modification issues.
Useful in multi-threaded applications to avoid unintended side effects.
To create an immutable class, use final fields and avoid setters.
Collection...
final, finally, and finalize serve different purposes in Java: constants, cleanup, and garbage collection respectively.
final: Used to declare constants. Example: final int MAX_VALUE = 100;
finally: A block that executes after try-catch. Example: try { ... } catch { ... } finally { cleanup(); }
finalize(): A method called by the garbage collector. Example: protected void finalize() { ... }
final variable: Cannot be reassig...
Singleton pattern restricts class instantiation to one object, useful for shared resources like database connections.
Private constructor prevents instantiation from outside the class.
Static instance variable holds the single instance of the class.
Lazy initialization creates the instance only when needed.
Eager initialization creates the instance at class loading time.
Thread safety can be achieved using synchronized meth...
Java annotations provide metadata for classes, enhancing code readability and maintainability, especially in frameworks like Spring.
Annotations like @Component and @Service in Spring simplify bean management and dependency injection.
Built-in annotations such as @Override improve code clarity by indicating overridden methods.
Custom annotations can encapsulate repetitive configurations, reducing boilerplate code.
Retentio...
Java Streams enable parallel processing using ForkJoin framework, but have pitfalls like race conditions and performance issues with small datasets.
Use parallel streams for CPU-intensive tasks to leverage multiple cores.
Avoid shared mutable state to prevent race conditions; use immutable data structures.
Consider using 'collect()' with a concurrent collector for thread-safe operations.
Use 'forEachOrdered()' for order-se...
I appeared for an interview in Feb 2025, where I was asked the following questions.
final, finally, and finalize serve different purposes in Java: constants, cleanup, and garbage collection respectively.
final: Used to declare constants. Example: final int MAX_VALUE = 100;
finally: A block that executes after try-catch. Example: try { /* code */ } catch (Exception e) { /* handle */ } finally { /* cleanup */ }
finalize(): A method called by the garbage collector. Example: protected void finalize() { /* cl...
Java annotations provide metadata for classes and methods, enhancing code readability and reducing boilerplate in frameworks like Spring.
Annotations like @Component and @Service in Spring simplify bean configuration and management.
Using @Autowired allows for automatic dependency injection, reducing manual wiring of components.
Custom annotations can be created to encapsulate common behaviors, improving code organization...
Java Streams enable parallel processing using ForkJoin framework, but have pitfalls like race conditions and debugging challenges.
Parallel streams use ForkJoinPool to divide tasks among multiple threads for efficient processing.
Best suited for CPU-intensive tasks; may not yield performance gains for small datasets.
Race conditions can occur due to shared mutable state; use immutable data structures to avoid this.
Order-s...
I appeared for an interview in Feb 2025, where I was asked the following questions.
Java annotations provide metadata for classes and methods, enhancing code readability and reducing boilerplate in frameworks like Spring.
Annotations like @Component and @Service simplify bean management in Spring.
Dependency injection is streamlined with @Autowired, reducing manual wiring.
Custom annotations can encapsulate repetitive logic, improving code clarity.
Annotations reduce the need for XML configuration, making...
Java Streams enable parallel processing using ForkJoin framework, but have pitfalls like race conditions and debugging challenges.
Use parallel streams for CPU-intensive tasks to leverage multiple cores effectively.
Avoid using parallel streams for small datasets as overhead may negate performance benefits.
Be cautious with shared mutable state to prevent race conditions; prefer immutable data structures.
Use forEachOrdere...
I appeared for an interview in Feb 2025, where I was asked the following questions.
ArrayList offers fast access and is memory efficient, while LinkedList excels in insertions and deletions.
ArrayList: Fast random access (O(1)), ideal for frequent retrievals. Example: Accessing elements in a list of user IDs.
LinkedList: Fast insertions/deletions (O(1) at head/tail), suitable for dynamic data structures. Example: Implementing a queue.
Memory overhead: LinkedList has higher memory usage due to additional ...
== checks reference equality; .equals() checks value equality, can be overridden for custom comparison.
== compares memory addresses, while .equals() compares actual content.
Example: new String("hello") == new String("hello") returns false.
"hello".equals("hello") returns true, showing content comparison.
Wrapper classes like Integer cache values from -128 to 127, affecting == behavior.
Override equals() when logical equal...
Lambda expressions enhance Java code readability and maintainability by simplifying syntax and promoting functional programming.
Concise Syntax: Lambda expressions reduce boilerplate code. For example, instead of writing an anonymous class for a Runnable, you can use: `Runnable r = () -> System.out.println("Hello");`
Improved Readability: Code becomes more expressive. For instance, using `list.forEach(item -> Syste...
Checked exceptions require handling; unchecked exceptions do not. Custom exceptions can be either, based on use case.
Checked exceptions must be caught or declared (e.g., IOException, SQLException).
Unchecked exceptions do not require explicit handling (e.g., NullPointerException, ArithmeticException).
Checked exceptions promote robust error handling but can lead to verbose code.
Unchecked exceptions indicate programming e...
The Java Memory Model defines thread interactions with memory, ensuring visibility and ordering in multithreaded environments.
JMM specifies how threads see shared variables, ensuring visibility and ordering.
Volatile keyword ensures that changes to a variable are visible to all threads immediately.
Synchronized blocks provide mutual exclusion, preventing multiple threads from accessing critical sections simultaneously.
Wi...
Method overloading allows same method name with different parameters; overriding allows subclass to redefine parent method.
Method Overloading: Same method name, different parameters (e.g., `int add(int a, int b)` vs `double add(double a, double b)`)
Method Overriding: Subclass provides specific implementation of a method defined in its superclass (e.g., `void sound()` in `Animal` class overridden in `Dog` class).
Overloa...
Functional interfaces in Java enable concise implementation of single-method interfaces using lambda expressions.
A functional interface has exactly one abstract method, e.g., Runnable, Callable.
Lambda expressions provide a shorthand way to implement functional interfaces, e.g., () -> System.out.println("Hello").
Functional interfaces can have multiple default or static methods, allowing for added functionality withou...
Parallel streams enhance performance but come with trade-offs like complexity and overhead in multi-threaded environments.
Increased complexity: Debugging parallel streams can be more challenging than sequential streams.
Overhead: Parallel streams introduce overhead due to thread management and context switching.
Data contention: Shared mutable data can lead to race conditions and inconsistent results.
Performance gains: F...
Immutability in Java ensures objects cannot be modified after creation, enhancing thread safety and preventing unintended side effects.
Immutable objects cannot be changed after creation, e.g., String class.
Thread-safe by nature, as they prevent concurrent modifications.
Prevent unintended side effects in multi-threaded applications.
To create an immutable class, use final fields and avoid setters.
Collections can be made ...
final, finally, and finalize serve different purposes in Java: constants, cleanup, and garbage collection respectively.
final: Used to declare constants. Example: final int MAX_VALUE = 100;
finally: A block that executes after try-catch. Example: try { // code } catch { // handle } finally { // cleanup; }
finalize(): A method called by the garbage collector. Example: protected void finalize() { // cleanup code; }
final var...
Singleton pattern ensures a class has only one instance and provides a global point of access to it.
Private constructor prevents instantiation from outside the class.
Static instance variable holds the single instance of the class.
Lazy initialization creates the instance only when needed.
Eager initialization creates the instance at class loading time.
Thread safety can be achieved using synchronized methods or blocks.
Dou...
Java annotations provide metadata for classes, enhancing readability and reducing boilerplate in frameworks like Spring.
Annotations like @Component and @Service simplify bean management in Spring.
Dependency injection is streamlined with @Autowired, reducing manual wiring.
Built-in annotations like @Override improve code clarity by indicating overridden methods.
Custom annotations can be created using @interface to encaps...
Java Streams enable parallel processing using ForkJoin framework, but have pitfalls like race conditions and performance issues with small datasets.
Use parallel streams for CPU-intensive tasks to leverage multiple cores effectively.
Avoid shared mutable state to prevent race conditions; prefer immutable objects.
Use the 'parallel()' method to convert a sequential stream to a parallel stream.
Consider using 'collect()' wit...
Top trending discussions
Some of the top questions asked at the 10405090xyzabc interview -
The duration of 10405090xyzabc interview process can vary, but typically it takes about 2-4 weeks to complete.
based on 1.4k interviews
Interview experience
based on 22 reviews
Rating in categories
Software Developer
16.7k
salaries
| ₹1.5 L/yr - ₹8.5 L/yr |
Software Engineer
10k
salaries
| ₹1 L/yr - ₹5.4 L/yr |
Sales Officer
784
salaries
| ₹5.3 L/yr - ₹5.7 L/yr |
Softwaretest Engineer
25
salaries
| ₹1 L/yr - ₹1.9 L/yr |
Test Engineer
12
salaries
| ₹1.8 L/yr - ₹7.3 L/yr |
Amazon
Mahindra & Mahindra
Delhivery
Siemens