i
10405090xyzabc
Filter interviews by
I appeared for an interview in Mar 2025, where I was asked the following questions.
Java Streams enable parallel processing via ForkJoin, enhancing performance but with potential pitfalls like race conditions.
Parallel streams utilize multiple threads to process data concurrently, improving performance for CPU-intensive tasks.
The ForkJoin framework manages the division of tasks and combines results efficiently.
Performance gains are more noticeable with large datasets; small datasets may incur overhead,...
I appeared for an interview in Mar 2025, where I was asked the following questions.
ArrayList offers fast access and is memory efficient, while LinkedList excels in insertions and deletions.
ArrayList uses a dynamic array, allowing O(1) access time for elements.
LinkedList uses a doubly linked structure, enabling O(1) insertions/deletions at both ends.
Example: Use ArrayList for a list of user IDs where frequent access is needed.
Example: Use LinkedList for a playlist where songs are frequently added or r...
== 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 is different from reference equality.
When overriding equals(), also override hashCode() to maintain consistency.
For cust...
Java's garbage collector reclaims memory from unused objects, optimizing performance and managing memory regions.
Garbage collection 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, while Major GC (Full GC) affects the Old Generation, causing longer pauses.
CMS (Co...
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. For instance, using list.forEach(item -> System.out.println(item)) is clearer...
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 th...
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 allows subclass to redefine parent method behavior.
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()).
O...
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 World").
Functional interfaces can include multiple default or static methods, allowing for added functionality ...
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, enabling concise and readable code.
Example: `List<String> filtered = list.stream().filter(s -> s.startsWith("A")).collect(Collectors.toList());`
Streams are not reusable; once a terminal operation is performed, th...
Immutability in Java ensures objects cannot be changed after creation, enhancing thread safety and consistency.
Immutable objects cannot be modified after creation, e.g., String class.
Thread-safe: Multiple threads can access immutable objects without synchronization issues.
Prevents unintended side effects in multi-threaded applications.
To create an immutable class, use final fields and avoid setters.
Collections can be m...
final, finally, and finalize serve distinct purposes in Java for 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() { /* ...
Singleton pattern ensures a class has only one instance, providing a global access point for shared resources.
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 ...
Java annotations provide metadata for classes, enhancing code readability and reducing boilerplate in frameworks like Spring.
Annotations serve as metadata, providing additional information about classes, methods, and fields.
Common built-in annotations include @Override, @Deprecated, and @SuppressWarnings.
Spring framework uses annotations like @Component and @Service for defining beans and @Autowired for dependency inje...
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 on a stream to enable parallel processing.
Be cautious with order-sensitive operations;...
I appeared for an interview in Mar 2025, where I was asked the following questions.
ArrayList offers fast access and is memory efficient, while LinkedList excels in insertions and deletions.
ArrayList uses a dynamic array, allowing O(1) access time for elements.
LinkedList uses a doubly linked structure, enabling O(1) insertions/deletions at both ends.
Example: Use ArrayList for a list of user IDs where frequent access is needed.
Example: Use LinkedList for a playlist where songs are frequently added or r...
== checks reference equality; .equals() checks value equality. Override equals() for custom comparison in user-defined classes.
== compares memory addresses, while .equals() compares actual content.
Example: new String("hello") == new String("hello") returns false.
"hello".equals("hello") returns true, showing value equality.
Wrapper classes like Integer cache small values, affecting == behavior.
Override equals() when logi...
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 enforce 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.
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 simulta...
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)` and `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 lambda expressions and API evolution without breaking changes.
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.
Method ...
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).
Streams are not reusable; once consumed, they cannot be used again. Example: After a terminal operation, the stream is closed.
Parallel streams can improve performance...
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: Multiple threads can access immutable objects without synchronization issues.
Prevents unintended side effects in multi-threaded applications.
To create an immutable class, use final fields and avoid setters.
Collections can be m...
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...
Singleton pattern restricts class instantiation to one object, useful for shared resources management.
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.
D...
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 help clarify method intentions and improve code readability.
Custom annotations can be created using @interface to encapsulate specific behaviors or configura...
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 objects instead.
For small datasets, prefer sequential streams as overhead may outweigh benefits.
Use the 'parallelism' level to contro...
I appeared for an interview in Mar 2025, where I was asked the following questions.
ArrayList offers fast access and is memory efficient, while LinkedList excels in insertions and deletions.
ArrayList allows O(1) access time, making it ideal for frequent retrievals. Example: Accessing elements in a list of user IDs.
LinkedList provides O(1) insertion/deletion at both ends, suitable for queue implementations. Example: Adding/removing tasks in a task manager.
Memory overhead is higher in LinkedList due to ...
== 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 value equality.
Wrapper classes like Integer cache small values, affecting == behavior.
Override equals() when logical equality is needed, ...
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, use (x) -> x * 2.
Improved Readability: Code becomes more expressive. Example: List<String> names = Arrays.asList('John', 'Jane'); names.forEach(name -> System.out.println(nam...
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 th...
The Java Memory Model defines thread interactions 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 simulta...
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 method defined in its superclass (e.g., class Dog extends Animal and overrides sound()).
Overloading is res...
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 World").
Functional interfaces can include multiple default or static methods, enhancing functionality without b...
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, enabling concise and readable code.
Example: `List<String> filtered = list.stream().filter(s -> s.startsWith("A")).collect(Collectors.toList());`
Streams are not reusable; once a terminal operation is called, the s...
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 { /* code */ } catch (Exception e) { /* handle */ } finally { /* cleanup */ }
finalize(): A method called by the garbage collector. Example: protected void finalize() { /* cl...
The 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 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 blo...
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 improve code clarity by indicating overridden methods.
Custom annotations can be created using @interface to encapsulate specific behaviors or configurations.
...
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 streams are be...
10405090xyzabc interview questions for popular designations
I appeared for an interview in Mar 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 ...
Java's synchronized keyword offers simplicity for thread safety but can lead to performance issues and deadlocks.
Prevents race conditions by allowing only one thread to access a block of code at a time.
Can lead to performance bottlenecks due to thread blocking and context switching.
May cause deadlocks if multiple threads are waiting on each other for locks.
Starvation can occur if a thread is perpetually denied access t...
== checks reference equality; .equals() checks value equality, can be overridden for custom comparison.
== compares memory addresses: new String("hello") == new String("hello") returns false.
"hello".equals("hello") checks content, returning true.
Override equals() when logical equality differs from reference equality.
When overriding equals(), also override hashCode() to maintain consistency.
For classes with mutable field...
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 enforce 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.
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 simulta...
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 it).
Overloading is ...
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 allow for a more concise implementation of functional interfaces.
Functional interfaces can include multiple default or static methods.
The @FunctionalInterface annotation helps prevent accidental addition of abstr...
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, enabling concise and readable code.
Example: stream.filter(x -> x > 10).map(x -> x * 2) processes elements in a pipeline.
Streams are not reusable; once consumed, they cannot be used again, unlike Iterators which c...
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: Multiple threads can access immutable objects without synchronization issues.
Prevents unintended side effects in multi-threaded applications.
To create an immutable class, use final fields and avoid setters.
Collections can be m...
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 for specific use cases, en...
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 better performance.
Use 'parallelStream()' only when the da...
ArrayList offers fast access, while LinkedList excels in insertions/deletions. Choose based on operation needs.
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 structures. Example: Implementing a queue.
Memory overhead: LinkedList has higher memory usage due to node pointers.
ArrayList resizes ...
== 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 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) clea...
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 enforce robust error handling but can clutter code.
Unchecked exceptions indicate programming errors that...
The Java Memory Model defines thread interactions 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 a block simultaneously.
Wi...
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) vs. 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 it).
Overloadi...
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 complexity and potential overhead.
Increased complexity: Parallel streams can complicate code, making it harder to debug.
Overhead: Splitting tasks for parallel execution can introduce overhead, reducing performance for small datasets.
Thread safety: Operations must be stateless and non-interfering to avoid issues in a multi-threaded environment.
Order sens...
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: Multiple threads can access immutable objects without synchronization issues.
Prevents unintended side effects in multi-threaded applications.
To create an immutable class, use final fields and avoid setters.
Collections can be m...
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: Block that executes after try-catch. Example: try { /* code */ } catch (Exception e) { /* handle */ } finally { /* cleanup */ }
finalize(): Method called by the garbage collector. Example: protected void finalize() { /* cleanu...
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 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 improve code clarity by indicating method overrides.
Custom annotations can be created using @interface to encapsulate specific behaviors or configurations.
Re...
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...
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 common behaviors, 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 outweigh benefits.
Be cautious of shared mutable state to prevent race conditions; prefer immutable data structures.
Use forEachOrdered() for orde...
ArrayList offers fast access and is memory efficient, while LinkedList excels in insertions and deletions but has higher memory overhead.
ArrayList provides O(1) access time, ideal for frequent retrievals. Example: Accessing elements in a list of user IDs.
LinkedList allows O(1) insertions/deletions at both ends. Example: Adding/removing elements in a queue implementation.
Memory overhead is higher in LinkedList due to ex...
Java's synchronized keyword ensures thread safety but can lead to performance issues and deadlocks.
Prevents race conditions by allowing only one thread to access a block of code at a time.
Can lead to performance bottlenecks due to thread blocking and context switching.
May cause deadlocks if multiple threads are waiting for each other to release locks.
ReentrantLock offers more control with methods like tryLock() for non...
== checks reference equality; .equals() checks value equality. Override equals() 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.
Override equals() when logical equality differs from reference equality.
When overriding equals(), also override hashCode() to maintain consistency
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.
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 simulta...
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)` and `double add(double a, double b)`)
Method Overriding: Subclass provides specific implementation of a method defined in its superclass (e.g., `void display()` in parent and `void display()` in child)
Overloadi...
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, enhancing their functionality without brea...
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, enabling more concise and readable code.
Example: `List<String> filtered = list.stream().filter(s -> s.startsWith("A")).collect(Collectors.toList());`
Streams are not reusable; once a terminal operation is called, ...
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...
Singleton pattern ensures a class has only one instance, providing a global access point for shared resources.
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 ...
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 improve code clarity by indicating overridden methods.
Custom annotations can be created using @interface to encapsulate specific behaviors or configurations.
...
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 with shared mutable state to prevent race conditions; prefer immutable data structures.
Use forEachOrdered() for or...
Java annotations provide metadata for classes, enhancing code readability and maintainability, especially in frameworks like Spring.
Annotations like @Component and @Service simplify bean management in Spring.
Dependency injection is streamlined with @Autowired, reducing boilerplate code.
Custom annotations can encapsulate common behaviors, improving code clarity.
Annotations like @Transactional manage database transaction...
Java Streams enable parallel processing using ForkJoin framework, but have pitfalls like race conditions and debugging challenges.
Use parallelStream() for parallel processing: List<String> parallelList = list.parallelStream().filter(...).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 st...
I am writing automation and clicking on aptitude test.
I am writing automation and clicking on assignment test.
This is an automation test. I got this task from my senior. I'm doing good.
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