i
10405090xyzabc
Filter interviews by
ArrayList uses dynamic arrays, while LinkedList uses doubly linked nodes for storage and access.
ArrayList provides fast random access (O(1)) due to its underlying array structure.
LinkedList allows for efficient insertions and deletions (O(1)) at both ends, as it only requires pointer updates.
ArrayList has a fixed size, which can lead to resizing (O(n)) when capacity is exceeded, while LinkedList grows dynamically.
Examp...
In Java, '==' checks reference equality, while '.equals()' checks value equality. Use appropriately to avoid bugs.
== compares object references (memory addresses). Example: String a = new String('test'); String b = new String('test'); a == b is false.
.equals() compares the actual content of objects. Example: a.equals(b) is 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, optimizing performance and resource usage.
Java uses automatic garbage collection to manage memory, freeing developers from manual memory management.
The main garbage collection algorithms in Java include: Serial GC, Parallel GC, Concurrent Mark-Sweep (CMS), and G1 GC.
Serial GC is a simple, single-threaded collector suitable for small app...
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: Facilitates functional-style operations on collections. Example: list.stream().filter(x -> x > 10).collect(Collectors.toList()).
Default Methods: Allow adding new methods to interfaces with...
Checked exceptions must be declared or handled, while unchecked exceptions do not require explicit handling.
Checked exceptions are subclasses of Exception but not RuntimeException.
Example: IOException is a checked exception that must be caught or declared.
Unchecked exceptions are subclasses of RuntimeException.
Example: NullPointerException is an unchecked exception that does not need to be declared.
Checked exceptions e...
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 through memory and what behaviors are allowed.
It ensures visibility of shared variables between threads, preventing stale data issues.
Synchronization mechanisms (like synchronized blocks) enforce mutual exclusion and visibility.
The 'volatile' ...
Method overloading allows multiple methods with the same name but different parameters; overriding replaces a superclass method in a subclass.
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 methods perform similar functions.
Method Overriding: Same method nam...
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.
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.
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, while .equals() checks value equality. Override equals() for custom comparison logic.
== compares memory addresses, while .equals() compares actual 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 equ...
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 GC, each with unique characteristics.
Memory is divided into regions: Young Generation (short-lived objects), Old Generation (long-lived objects),...
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 using...
Checked exceptions require handling, while unchecked exceptions indicate programming errors. Custom exceptions can be either type.
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 exp...
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 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 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 have multiple default or static methods.
The @FunctionalInterface annotation ensures only one abstract method is present.
Method ref...
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, while Iterators use imperative style.
Example: stream.filter(x -> x > 10) filters elements greater than 10, while Iterator requires manual checks.
Streams are not reusable; once consumed, they cannot be used again, un...
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;
final: Prevents method overriding. Example: final void display() {}
final: Prevents inheritance. Example: final class Constants {}
finally: Executes after try-catch for cleanup. Example: try { ... } catch { ... } finally { closeResource...
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 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 and @Deprecated help clarify code intent and maintain compatibility.
Custom annotations can encapsulate repetitive configurations, reducing boilerplate...
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 or...
I appeared for an interview in Jan 2025, where I was asked the following questions.
ArrayList and LinkedList are both implementations of the List interface in Java. ArrayList uses a dynamic array to store elements, while LinkedList uses a doubly linked list.
ArrayList is faster for accessing elements by index, while LinkedList is faster for adding or removing elements in the middle of the list.
ArrayList uses more memory as it needs to allocate space for the entire list upfront, while LinkedList only ne...
Using Java's synchronized keyword for thread synchronization has advantages like simplicity and disadvantages like potential deadlock. ReentrantLock offers more flexibility and control.
Advantages of synchronized keyword: easy to use, built-in support in Java
Disadvantages of synchronized keyword: potential for deadlock, lack of flexibility
ReentrantLock advantages: more control over locking, ability to try and acquire lo...
In Java, == compares memory addresses while .equals() compares values. Improper usage can lead to unexpected results.
Use == to compare primitive data types and object references.
Use .equals() to compare the actual values of objects.
Improper usage of == with objects can lead to comparing memory addresses instead of values.
Improper usage of .equals() can lead to NullPointerException if used with null objects.
The Java garbage collector automatically manages memory by reclaiming unused objects.
Garbage collector runs in the background to reclaim memory from objects no longer in use.
Different types of garbage collection algorithms include Serial, Parallel, CMS, G1, and ZGC.
Serial collector is best for single-threaded applications, while G1 is suitable for large heap sizes.
CMS (Concurrent Mark Sweep) collector minimizes pause t...
Java 8 introduced features like lambdas and Stream API which have revolutionized the way Java applications are written.
Lambdas allow for more concise and readable code by enabling functional programming paradigms.
Stream API provides a way to process collections of objects in a functional style, allowing for easier parallel processing and improved performance.
Java 8 also introduced default methods in interfaces, allowin...
Checked exceptions are checked at compile time, while unchecked exceptions are not. Proper handling involves either catching or declaring the exception.
Checked exceptions must be either caught or declared in the method signature using 'throws'. Example: IOException.
Unchecked exceptions do not need to be caught or declared. Example: NullPointerException.
Proper handling of exceptions involves using try-catch blocks for c...
The Java Memory Model defines how threads interact through memory and how changes made by one thread are visible to others.
Java Memory Model specifies how threads interact with memory, ensuring visibility and consistency.
It defines the rules for reading and writing variables in a multithreaded environment.
Synchronization ensures that only one thread can access a shared resource at a time.
Volatile keyword in Java ensure...
Method overloading involves creating multiple methods in the same class with the same name but different parameters. Method overriding involves creating a method in a subclass that has the same name, return type, and parameters as a method in the superclass.
Method overloading is used to provide different implementations of a method based on the number or type of parameters passed.
Method overriding is used to provide a ...
Functional interfaces in Java are interfaces with a single abstract method. They can be used with lambda expressions for functional programming.
Functional interfaces have only one abstract method, but can have multiple default or static methods.
Lambda expressions can be used to implement the single abstract method of a functional interface concisely.
An example of a custom functional interface is 'Calculator' with a sin
Java Stream is a sequence of elements that supports functional-style operations. It differs from Iterator by allowing for more concise and declarative code.
Streams provide a way to process collections in a functional programming style, allowing for operations like map, filter, and reduce.
Unlike Iterators, Streams do not store elements, making them more memory efficient.
Streams can be parallelized to take advantage of m...
Immutability in Java means that an object's state cannot be changed after it is created. String class achieves immutability by not allowing its value to be modified.
Immutability means that once an object is created, its state cannot be changed.
String class achieves immutability by making its value final and not providing any methods to modify it.
Advantages of immutable objects include thread safety, caching, and easier
final, finally, and finalize have different meanings in Java.
final is a keyword used to declare constants, immutable variables, or prevent method overriding.
finally is a block used in exception handling to execute code after try-catch block.
finalize is a method used for cleanup operations before an object is garbage collected.
Singleton design pattern ensures a class has only one instance and provides a global point of access to it.
Create a private static instance of the class.
Make the constructor private to prevent instantiation from outside the class.
Provide a public static method to access the instance, creating it if necessary.
Use synchronized keyword or double-checked locking to ensure thread safety.
Java annotations are metadata that provide data about a program but do not affect the program itself. They are used in frameworks like Spring to simplify configuration and reduce boilerplate code.
Java annotations are used to provide metadata about classes, methods, fields, etc. They are defined using the @ symbol.
In Spring framework, annotations are used to configure various aspects of the application, such as dependen...
Java Streams can handle parallel processing using parallel streams. Pitfalls include increased complexity and potential for race conditions.
Java Streams can utilize parallel processing by using parallel streams, which automatically divide the data into multiple chunks and process them concurrently.
Potential pitfalls of using parallel streams include increased complexity, potential for race conditions, and overhead of m...
10405090xyzabc interview questions for popular designations
I appeared for an interview in Mar 2025, where I was asked the following questions.
In Java, '==' checks reference equality, while '.equals()' checks value equality. Use them appropriately to avoid bugs.
== compares object references, checking if both refer to the same memory location.
Example: String a = new String('test'); String b = new String('test'); a == b returns false.
.equals() compares the actual content of the objects.
Example: a.equals(b) returns true since both strings have the same value.
Use...
Java 8 introduced lambdas, Stream API, and other features that enhance functional programming and simplify code.
Lambdas: Enable concise representation of functional interfaces. Example: (x, y) -> x + y.
Stream API: Facilitates functional-style operations on collections. Example: list.stream().filter(x -> x > 10).collect(Collectors.toList()).
Default Methods: Allow adding new methods to interfaces without breakin...
Checked exceptions must be declared or handled, while unchecked exceptions do not require explicit handling in Java.
Checked exceptions are subclasses of Exception (excluding RuntimeException). Example: IOException.
Unchecked exceptions are subclasses of RuntimeException. Example: NullPointerException.
Checked exceptions must be either caught using try-catch or declared in the method signature with 'throws'.
Unchecked exce...
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 read and write shared variables.
It ensures visibility of changes made by one thread to others, preventing stale data.
Synchronization mechanisms (like synchronized blocks) enforce mutual exclusion and visibility.
The 'volatile' keyword ensures that a var...
Method overloading allows multiple methods with the same name but different parameters; overriding replaces a superclass method in a subclass.
Method Overloading: Same method name, different parameter lists (type, number, or both).
Example of Overloading: 'int add(int a, int b)' and 'double add(double a, double b)'.
Method Overriding: Redefining a method in a subclass that already exists in the superclass.
Example of Overr...
I appeared for an interview in Mar 2025, where I was asked the following questions.
ArrayList uses dynamic arrays, while LinkedList uses doubly linked nodes for storage and access.
ArrayList provides fast random access (O(1)) but slow insertions/deletions (O(n)). Example: accessing elements by index.
LinkedList allows fast insertions/deletions (O(1) at both ends) but slower random access (O(n)). Example: adding/removing elements from the front.
ArrayList is preferred when you need frequent access to elem...
In Java, '==' checks reference equality, while '.equals()' checks value equality. Use appropriately to avoid bugs.
== compares object references, checking if both refer to the same memory location.
Example: String a = new String('test'); String b = new String('test'); a == b returns false.
.equals() compares the actual content of the objects for equality.
Example: a.equals(b) returns true in the above case.
Use '==' for pri...
Java 8 introduced lambdas, Stream API, and other features that enhance functional programming and improve code readability.
Lambda Expressions: Enable concise representation of functional interfaces. Example: (a, b) -> a + b.
Stream API: Facilitates functional-style operations on collections. Example: list.stream().filter(x -> x > 10).collect(Collectors.toList()).
Default Methods: Allow adding new methods to inte...
Checked exceptions must be handled or declared, while unchecked exceptions do not require explicit handling.
Checked exceptions are subclasses of Exception (excluding RuntimeException). Example: IOException.
Unchecked exceptions are subclasses of RuntimeException. Example: NullPointerException.
Checked exceptions must be either caught using try-catch or declared in the method signature with 'throws'.
Unchecked exceptions c...
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, crucial for multithreading.
Synchronization mechanisms (like synchronized blocks) help prevent data rac...
Method overloading allows multiple methods with the same name but different parameters; overriding replaces a superclass method in a subclass.
Method Overloading: Same method name, different parameter types or counts.
Example of Overloading: 'void add(int a, int b)' and 'void add(double a, double b)'.
Use Overloading for convenience and readability when methods perform similar functions.
Method Overriding: Redefining a met...
I appeared for an interview in Mar 2025, where I was asked the following questions.
ArrayList is dynamic and index-based, while LinkedList is node-based and allows for efficient insertions and deletions.
ArrayList uses a dynamic array to store elements. Example: `ArrayList<String> arrayList = new ArrayList<>();`
LinkedList uses a doubly linked list structure. Example: `LinkedList<String> linkedList = new LinkedList<>();`
ArrayList provides faster random access (O(1)) due to index-...
== checks reference equality, while .equals() checks value equality in Java. Use .equals() for object comparison.
== compares memory addresses (reference equality). Example: String a = new String('test'); String b = new String('test'); a == b returns false.
.equals() compares actual content (value equality). Example: a.equals(b) returns true.
Use == for primitive types (int, char, etc.) and .equals() for objects.
Improper ...
Java's garbage collector automatically manages memory by reclaiming unused objects, enhancing performance and preventing memory leaks.
Java uses automatic memory management, primarily through garbage collection.
The main types of garbage collection algorithms in Java include:
1. Serial Garbage Collector: A simple, single-threaded collector suitable for small applications.
2. Parallel Garbage Collector: Uses multiple threa...
Java 8 introduced lambdas, Stream API, and other features that enhance functional programming and simplify code.
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).
Default Methods: Interfaces can have method implementations, promoting backward...
Checked exceptions must be handled or declared, while 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 caught.
Checked exceptions e...
The Java Memory Model defines how threads interact through memory and ensures visibility and ordering of shared variables.
The Java Memory Model (JMM) specifies how threads interact through memory, ensuring visibility and ordering of operations.
It defines rules for synchronization, which is crucial for avoiding race conditions in multithreaded applications.
Volatile variables ensure that changes made by one thread are vi...
Method overloading allows multiple methods with the same name but different parameters; overriding redefines a method in a subclass.
Method Overloading: Same method name, different parameter lists (type, number, or both).
Example of Overloading: public int add(int a, int b) { return a + b; } public double add(double a, double b) { return a + b; }
Method Overriding: Redefining a method in a subclass that already exists in ...
I appeared for an interview in Mar 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: accessing element at index 5.
LinkedList: Faster for insertions/deletions (O(1)) at both ends. Example: adding/removing elements at the head.
ArrayList: Requires more memory due to resizing and storing elements in contiguous memory.
LinkedList: Uses more memory pe...
In Java, '==' checks reference equality, while '.equals()' checks value equality. Use them appropriately to avoid bugs.
== compares object references, checking if both refer to the same memory location.
Example: String a = new String('test'); String b = new String('test'); a == b returns false.
.equals() compares the actual content of the objects for equality.
Example: a.equals(b) returns true because the content is the sa...
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: Facilitates functional-style operations on collections. Example: list.stream().filter(x -> x > 10).collect(Collectors.toList()).
Default Methods: Allow adding new methods to interfaces with...
Checked exceptions must be handled or declared, while unchecked exceptions do not require explicit handling.
Checked exceptions are subclasses of Exception but not RuntimeException.
Unchecked exceptions are subclasses of RuntimeException.
Example of checked exception: IOException, which must be caught or declared.
Example of unchecked exception: NullPointerException, which can occur at runtime.
Checked exceptions encourage ...
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 data.
It defines rules for visibility, atomicity, and ordering of operations in a multithreaded environment.
Without proper synchronization, threads may see stale or inconsistent data du...
Method overloading allows multiple methods with the same name but different parameters; overriding replaces a superclass method in a subclass.
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 methods perform similar functions.
Method Overriding: Redefining a me...
I appeared for an interview in Mar 2025, where I was asked the following questions.
ArrayList uses dynamic arrays, while LinkedList uses doubly linked nodes for storage, affecting performance and memory usage.
ArrayList is backed by a dynamic array, allowing fast random access (O(1)). Example: accessing element at index 5 is quick.
LinkedList consists of nodes, each containing data and pointers to next/previous nodes, making insertions/removals faster (O(1)).
ArrayList has a fixed size; resizing involves...
Java's synchronized keyword offers thread safety but has limitations compared to ReentrantLock.
Advantages of synchronized: Simple to use and understand.
Disadvantages of synchronized: Can lead to thread contention and is not interruptible.
ReentrantLock allows for more advanced features like tryLock() and timed lock attempts.
ReentrantLock can be more flexible with lock management, allowing for multiple conditions.
In Java, '==' checks reference equality, while '.equals()' checks value equality. Use them appropriately to avoid bugs.
== compares object references (memory addresses). Example: String a = new String('test'); String b = new String('test'); a == b is false.
.equals() compares actual content/values of objects. Example: a.equals(b) is true.
Use '==' for primitive types (int, char, etc.) and .equals() for objects.
Improper us...
Java's garbage collector automatically manages memory by reclaiming unused objects, enhancing performance and preventing memory leaks.
Generational Garbage Collection: Divides memory into Young, Old, and Permanent generations for efficient memory management.
Minor GC: Cleans up the Young generation, where most objects are short-lived, minimizing pause times.
Major GC: Cleans up the Old generation, which can take longer as...
Java 8 introduced lambdas, Stream API, and other features that enhance functional programming and improve code readability.
Lambda Expressions: Allow concise representation of functional interfaces. Example: (x, y) -> x + y.
Stream API: Enables functional-style operations on collections. Example: list.stream().filter(x -> x > 10).collect(Collectors.toList()).
Default Methods: Interfaces can have methods with impl...
Checked exceptions must be handled or declared, while unchecked exceptions do not require explicit handling.
Checked exceptions are subclasses of Exception (excluding RuntimeException). Example: IOException.
Unchecked exceptions are subclasses of RuntimeException. Example: NullPointerException.
Checked exceptions must be either caught using try-catch or declared in the method signature with 'throws'.
Unchecked exceptions c...
The Java Memory Model defines how threads interact through memory, ensuring visibility and ordering in multithreaded environments.
The Java Memory Model (JMM) specifies how variables are read and written in a multithreaded context.
It ensures visibility of shared variables between threads, preventing stale data issues.
Synchronization mechanisms (like synchronized blocks) enforce mutual exclusion and visibility.
The 'volat...
Method overloading allows multiple methods with the same name but different parameters; overriding redefines a method in a subclass.
Method Overloading: Same method name, different parameter lists (type, number, or both).
Example of Overloading: public int add(int a, int b) { return a + b; } public double add(double a, double b) { return a + b; }
Use Case for Overloading: When you want to perform similar operations with d...
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