Filter interviews by
I applied via Indeed and was interviewed before Jan 2023. There were 2 interview rounds.
Top trending discussions
I applied via Company Website and was interviewed in Jul 2024. There was 1 interview round.
I m to get yourlife company to work.
It's like technical round & Hr round , way of language speaking.
Implementation of the Spring security
I applied via Company Website and was interviewed in Sep 2023. There were 2 interview rounds.
HashMap is a data structure in Java that stores key-value pairs and allows fast retrieval of values based on keys.
HashMap implements the Map interface in Java
It allows null keys and values
Keys in a HashMap must be unique
Example: HashMap
HashMap is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values.
HashMap internally uses an array of linked lists to store key-value pairs.
When a key-value pair is added, the key is hashed to determine the index in the array where it will be stored.
If multiple keys hash to the same index, a linked list is used to handle collisions.
HashMap uses the hashCode() method of keys to calc...
Throw is used to explicitly throw an exception in a method, while Throws is used to declare the exceptions that a method may throw.
Throw is used within a method to throw an exception explicitly.
Throws is used in the method signature to declare the exceptions that the method may throw.
Throw is followed by an instance of Throwable class, while Throws is followed by the exception class names separated by commas.
Example: t...
Arrays are fixed in size, while ArrayLists can dynamically resize. ArrayLists provide more flexibility and functionality.
Arrays have a fixed size, while ArrayLists can dynamically resize.
ArrayLists can easily add, remove, or modify elements, while arrays require manual shifting of elements.
Arrays use [] syntax for declaration and initialization, while ArrayLists use the ArrayList class from the Java Collections framewo
ArrayList is resizable array implementation, LinkedList is doubly linked list implementation, Vector is synchronized version of ArrayList.
ArrayList is faster for accessing elements, LinkedList is faster for adding/removing elements in middle.
ArrayList uses less memory than LinkedList due to contiguous memory allocation.
Vector is thread-safe but slower than ArrayList due to synchronization overhead.
Iterate through a hashmap using an iterator in Java
Create an iterator using the entrySet() method of the hashmap
Use a while loop to iterate through the hashmap entries
Access the key and value of each entry using the getKey() and getValue() methods
I applied via Referral and was interviewed in May 2023. There were 3 interview rounds.
Spring Boot provides a simplified way to create stand-alone, production-grade Spring-based Applications.
Rapid application development
Embedded server for easy deployment
Auto-configuration for setting up Spring projects quickly
Microservices support
Actuator for monitoring and managing applications
Microservices architecture in Spring is a way of designing software applications as a collection of loosely coupled services.
Microservices architecture breaks down a large application into smaller, independent services that can be developed, deployed, and scaled independently.
Spring Boot and Spring Cloud are commonly used frameworks for building microservices in Java.
Each microservice typically has its own database and...
I applied via Walk-in and was interviewed in Jun 2023. There were 5 interview rounds.
For freshers there is online aptitude test.
Coding round is done by interviewers on live screen sharing
I applied via LinkedIn and was interviewed in Feb 2023. There were 2 interview rounds.
HashMap is a data structure that stores key-value pairs and uses hashing to retrieve values.
HashMap uses an array of buckets to store key-value pairs
The hash code of the key is used to determine the index of the bucket
If multiple keys have the same hash code, they are stored in a linked list within the bucket
HashMap allows null keys and values
HashMap is not thread-safe and requires synchronization for concurrent access
Program to print even and odd numbers using two threads in Java
Create two threads, one for even numbers and one for odd numbers
Use a loop to generate numbers and check if they are even or odd
Print the numbers using the respective threads
Use synchronization to ensure alternate printing of even and odd numbers
My area of interest for new techniques includes cloud computing, machine learning, and microservices architecture.
Cloud computing: Interested in exploring AWS, Azure, and Google Cloud Platform for scalable and cost-effective solutions.
Machine learning: Excited about implementing algorithms for data analysis and predictive modeling.
Microservices architecture: Looking into breaking down monolithic applications into small...
Candidates joining Wipro should have a strong assurance and willingness to contribute to the company's success.
Candidates should demonstrate a clear understanding of Wipro's values and goals.
They should be enthusiastic about the opportunity to work at Wipro and contribute to its growth.
Candidates should be committed to their role and show a willingness to learn and adapt to new challenges.
They should have a positive at...
I have worked at multiple companies, gaining valuable experience and skills in Java development.
Worked at Company A for 2 years, gained experience in developing web applications using Java Spring framework
Switched to Company B for better growth opportunities and exposure to new technologies like microservices architecture
Currently looking for a new challenge in a Senior Java Developer role to further enhance my skills
I applied via Job Portal and was interviewed in Sep 2021. There were 2 interview rounds.
HashMap is a data structure that stores key-value pairs and uses hashing to retrieve values.
HashMap uses an array of buckets to store key-value pairs
Each bucket contains a linked list of entries
Hashing is used to determine the index of the bucket where the entry should be stored
If multiple entries have the same hash code, they are stored in the same bucket as a linked list
HashMap allows null keys and values
HashMap is n...
Immutable classes cannot be modified after creation. They ensure thread safety and prevent bugs.
Make the class final so it cannot be extended
Make all fields private and final
Do not provide any setters, only getters
If a field is mutable, return a copy of it in the getter
Consider using a builder pattern for complex objects
Singleton class is a class that can only have one instance at a time.
Create a private constructor to prevent instantiation from outside the class.
Create a private static instance of the class.
Create a public static method to get the instance of the class.
Ensure thread safety by using synchronized keyword or static initializer.
Example: public class Singleton { private static Singleton instance = null; private Singleton(...
List allows duplicates and maintains insertion order, Set doesn't allow duplicates and doesn't maintain order.
Use List when duplicates are allowed and order is important
Use Set when duplicates are not allowed and order is not important
List examples: ArrayList, LinkedList
Set examples: HashSet, TreeSet
Implementing Spring security with JWT token involves configuring security filters and authentication providers.
Add dependencies for Spring Security and JWT
Configure security filters to validate JWT tokens
Implement authentication provider to authenticate users
Generate and sign JWT tokens for successful authentication
Example: https://www.baeldung.com/spring-security-jwt
based on 1 interview
Interview experience
based on 1 review
Rating in categories
Electronic Technician
3
salaries
| ₹1.9 L/yr - ₹2.3 L/yr |
TCS
Accenture
Wipro
Cognizant