i
10405090xyzabc
Filter interviews by
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 allows O(1) access time, making it ideal for frequent retrievals. Example: Accessing elements in a list of user IDs.
LinkedList provides O(1) time for insertions/deletions at both ends. Example: Implementing a queue where elements are frequently added/removed.
Memory overhead in LinkedList is higher 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.
Wrapper classes like Integer cache small values, affecting == behavior.
Override equals() when logical equality is needed, e.g., in custom classes.
...
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 writing an anonymous class for a Runnable, you can use: `Runnable r = () -> System.out.println("Hello");`
Readability: They allow for clearer expression of intent. For instance, using `list.forEach(item -> Sy...
Checked exceptions require handling; unchecked exceptions do not. Custom exceptions can be either, based on use case.
Checked exceptions must be handled with try-catch or declared with throws.
Examples of checked exceptions: IOException, SQLException.
Unchecked exceptions do not require explicit handling.
Examples of unchecked exceptions: NullPointerException, ArithmeticException.
Use checked exceptions for recoverable cond...
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.
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, allowing for added 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() for cleaner code.
Example: list.stream().filter(x -> x > 10).collect(Collectors.toList()) filters elements greater than 10.
Streams are not reusable; once consumed, they cannot be used again.
Iterators can be rese...
Immutability in Java ensures objects cannot be modified after creation, enhancing thread safety and reducing side effects.
Immutable objects cannot be changed once created, e.g., String class in Java.
Thread-safe: Since they cannot be modified, they prevent issues in multi-threaded environments.
Prevent unintended side effects, making code easier to understand and maintain.
To create an immutable class, use final fields an...
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 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 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 like @Transactional manage database transactions decl...
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 forEach...
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 uses a dynamic array, allowing O(1) access time for elements. Example: accessing the 5th element is quick.
LinkedList uses a doubly linked structure, enabling O(1) insertions/deletions at both ends. Example: adding/removing elements at the head.
ArrayList is preferred for scenarios with frequent retrievals,...
== checks reference equality; .equals() checks value equality. Override equals() for custom comparison logic.
== compares memory addresses, while .equals() compares actual object content.
Example: new String("hello") == new String("hello") returns false, but "hello".equals("hello") returns true.
For wrapper classes like Integer, small values (-128 to 127) are cached, affecting == behavior.
Override equals() when logical eq...
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 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, while unchecked exceptions indicate programming errors. Custom exceptions can be either type.
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 signal programming ...
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) 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 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, differing from Iterators in performance and usage.
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.
Parallel streams can i...
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 by nature, as they prevent concurrent modifications.
Help avoid unintended side effects in multi-threaded applications.
To create an immutable class, use final fields and no setters.
Collections can be made immutable using Collectio...
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: Can...
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 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 metho...
Java annotations provide metadata for classes, enhancing code readability and reducing boilerplate in frameworks like Spring.
Annotations like @Component and @Service simplify Spring's dependency injection.
Built-in annotations such as @Override help clarify method intentions.
Custom annotations can be created using @interface for specific needs.
Retention policies (e.g., @Retention(RetentionPolicy.RUNTIME)) determine anno...
Java Streams enable parallel processing via ForkJoin framework, enhancing performance but with potential pitfalls.
Use parallel streams for CPU-intensive tasks to leverage multiple cores.
Avoid using parallel streams for small datasets as overhead may outweigh benefits.
Be cautious of shared mutable state to prevent race conditions.
Use forEachOrdered() for order-sensitive operations, but be aware of performance trade-offs...
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 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, e.g., processing large collections.
Avoid using parallel streams for small datasets as overhead may outweigh benefits.
Be cautious with shared mutable state to prevent race conditions.
Use forEachOrdered() for order-sensitive operations, but be awar...
I appeared for an interview in Feb 2025, where I was asked the following questions.
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 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 metho...
Java annotations provide metadata for classes, 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 the codebas...
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...
10405090xyzabc interview questions for popular designations
I appeared for an interview in Feb 2025, where I was asked the following questions.
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 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 metho...
Java annotations provide metadata for classes, 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 configuration files, mak...
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...
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 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 ...
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 efficiently.
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...
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. 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.
Wrapper classes like Integer cache small values (-128 to 127), affecting == behavior.
Override equals() when logical equali...
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: Using lambdas with Collections: list.forEach(item -> System.out.prin...
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 error handling, improving robustness but can clutter code.
Unchecked exceptions indicate progra...
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 multiple methods with the same name but different parameters, while overriding changes a parent's method in a subclass.
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 a specific implementation of a method defined in its superclass (e.g., class Animal has method sound(), class Dog ov...
Functional interfaces in Java enable concise lambda expressions, enhancing code readability and maintainability.
A functional interface has exactly one abstract method, e.g., Runnable (run()).
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...
Java Streams enable functional operations on collections with lazy evaluation, differing from Iterators in several key aspects.
Parallel streams can improve performance by utilizing multiple CPU cores, e.g., processing a large list of numbers in parallel.
They can lead to reduced latency in data processing tasks, especially with large datasets.
However, parallel streams introduce overhead due to thread management and cont...
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 in Java.
Thread-safe: Since they cannot be changed, they prevent issues in multi-threaded environments.
Prevent unintended side effects, making debugging easier.
To create an immutable class, use final fields and avoid ...
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 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.
For small datasets, prefer sequential streams as parallel overhead may outweigh benefits.
Use 'forEachOrdered()' for o...
I appeared for an interview in Feb 2025, where I was asked the following questions.
Singleton pattern ensures a class has only one instance, providing 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.
Doubl...
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 eliminate the need for extensive XML configur...
Java Streams enable parallel processing via ForkJoin framework, enhancing performance but with potential pitfalls.
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 order-sensitive oper...
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 common behaviors, improving code clarity.
Annotations reduce the need for XML configuration, making...
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 ends), suitable for dynamic data. Example: Managing a playlist where songs are frequently added/removed.
Memory Overhead: LinkedList has higher memory ...
== 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 (-128 to 127), affecting == behavior.
Override equals() when logical equality is needed, especially...
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 tha...
The Java Memory Model defines thread interactions with memory, ensuring visibility and ordering in multithreaded environments.
JMM specifies how threads read and write 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 executing critical sections simult...
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., class Animal has method sound(), class Dog overrides it).
Overloading ...
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 safety concerns.
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 Safety: Care must be taken with shared mutable data, as parallel streams can lead t...
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 ...
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 when first accessed.
Eager initialization creates the instance at class loading time.
Thread safety can be achieved using synchronized method...
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 objects instead.
For small datasets, prefer sequential streams as parallel overhead may outweigh benefits.
Use the 'parallelism' level ...
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