Filter interviews by
Hacker rank and programming and oops mcq and sql
Hashmap is a data structure that stores key-value pairs and provides constant time complexity for insertion, deletion, and retrieval.
Hashmap uses a hash function to map keys to their corresponding values in an array.
Collisions can occur when two keys map to the same index, which can be resolved using techniques like chaining or open addressing.
Java's HashMap class is an implementation of the hashmap data structure.
Exam...
I appeared for an interview in Feb 2025, where I was asked the following questions.
Flattening a nested object array involves converting a multi-level array into a single-level array.
Use recursion to traverse each level of the array. Example: flatten([1, [2, [3, 4]], 5]) results in [1, 2, 3, 4, 5].
Utilize the Array.prototype.flat() method in JavaScript. Example: [1, [2, 3]].flat() returns [1, 2, 3].
Implement a stack or queue to iteratively process elements. Example: Using a stack to handle nested arra...
Algorithms basic question of array manipulations and strings basics, like find longest substring with even length.
Dsa, java oops was the main focus of the round , and core java knowledge
Wissen interview questions for popular designations
I applied via Naukri.com and was interviewed in Feb 2024. There was 1 interview round.
Average coding question to convert a number series into camel string
I applied via Approached by Company and was interviewed before Sep 2023. There were 3 interview rounds.
Stacks, Trees, Arrays
HashMap is a data structure that stores key-value pairs and allows fast retrieval of values based on keys.
HashMap implements the Map interface and uses hashing to store and retrieve data.
It allows null values and null keys.
HashMap is not thread-safe and requires external synchronization if used in a multi-threaded environment.
Example: HashMap<String, Integer> map = new HashMap<>(); map.put("apple", 1); map....
To add a customized object in HashMap, create an instance of the object and use put() method of HashMap.
Create an instance of the customized object
Use put() method of HashMap to add the object with a key
Retrieve the object using get() method by passing the key
posted on 7 Jan 2022
I applied via Naukri.com and was interviewed in Dec 2021. There were 5 interview rounds.
Top trending discussions
I applied via Company Website and was interviewed in Jul 2020. There were 5 interview rounds.
JDK is a development kit, JRE is a runtime environment, and JVM is a virtual machine for executing Java code.
JDK includes JRE and development tools like compiler and debugger
JRE includes JVM and necessary libraries to run Java applications
JVM is responsible for interpreting Java bytecode and executing it
JDK is used for developing Java applications, JRE is used for running them
Example: JDK 8 includes JRE 8 and tools lik...
Yes, Java is platform-independent because of its 'write once, run anywhere' principle.
Java programs are compiled into bytecode, which can be executed on any platform with a Java Virtual Machine (JVM).
The JVM acts as an interpreter, translating the bytecode into machine code specific to the underlying platform.
This allows Java programs to run on different operating systems and hardware architectures without modification...
Constructors are special methods used to initialize objects in Java.
Constructors have the same name as the class they belong to.
They are called automatically when an object is created.
They can be overloaded to accept different parameters.
Example: public class Car { public Car(String make, String model) { ... } }
Example: Car myCar = new Car("Toyota", "Camry");
The final keyword in Java is used to declare a constant variable or to prevent method overriding and class inheritance.
Final variables cannot be reassigned once initialized
Final methods cannot be overridden by subclasses
Final classes cannot be inherited by other classes
Example: final int MAX_VALUE = 100;
Example: final void printMessage() { System.out.println("Hello World!"); }
Example: final class MyClass { ... }
Java String Pool is a cache of String objects stored in heap memory.
String literals are automatically added to the pool.
String objects created using the 'new' keyword are not added to the pool.
String.intern() method can be used to add a String object to the pool.
String pool helps in saving memory by reusing common String literals.
Java Strings are immutable to ensure data integrity and security.
Immutable strings prevent accidental modification of data.
String pooling optimizes memory usage by reusing existing strings.
Immutable strings are thread-safe, simplifying concurrent programming.
String immutability allows for efficient caching and hashing.
Immutable strings enable safe sharing of string references.
Java Developer interview questions covering array list, linkedlist, hashmap, synchronization, abstract vs interface, singleton class, Spring framework, database configuration, and Java 8 features.
ArrayList and LinkedList differ in terms of implementation, performance, and usage
HashMap uses hashing to store and retrieve key-value pairs
Synchronized is used to ensure thread safety and prevent race conditions
Abstract class...
based on 8 interviews
Interview experience
Software Engineer
8
salaries
| ₹4.8 L/yr - ₹17 L/yr |
Senior Software Engineer
4
salaries
| ₹8.2 L/yr - ₹10.6 L/yr |
Principal Architect
4
salaries
| ₹21 L/yr - ₹49 L/yr |
Technical Lead
3
salaries
| ₹15 L/yr - ₹60 L/yr |
Principal Engineer
3
salaries
| ₹19.8 L/yr - ₹37 L/yr |
TCS
Accenture
Wipro
Cognizant