Filter interviews by
I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.
Top trending discussions
posted on 6 Jan 2025
Aptitude questions on time and distance
Java coding question
I applied via Nextwave and was interviewed in Dec 2023. There were 3 interview rounds.
I got the opportunity through Nextwave. In the coding test I’m supposed to solve few aptitude questions and around 5-6 coding questions. Out of them 2 are of easy level ,2 are medium and 2 are of hard level.
I solved 2 easy, 1 medium and 1 hard problem.
posted on 28 Sep 2023
I applied via Job Portal
Binary search is a divide and conquer algorithm that efficiently finds the target value within a sorted array.
Start by defining the low and high indices of the array.
Calculate the middle index and compare the target value with the middle element.
If the target value is less than the middle element, search the left subarray. If greater, search the right subarray.
Repeat the process until the target value is found or the s
CI/CD flow stands for Continuous Integration/Continuous Deployment flow, which is a software development practice where code changes are automatically built, tested, and deployed.
CI/CD flow involves automating the process of integrating code changes into a shared repository, running automated tests, and deploying the changes to production.
Continuous Integration (CI) focuses on automating the build and testing of code c...
Enums are a feature in programming languages that allow you to define a set of named constants.
Enums can be used to improve code readability by giving meaningful names to values
Enums can be used in switch statements to handle different cases
Enums can have associated values or raw values for more flexibility
Yes, Singleton handles synchronization by ensuring only one instance of a class is created and providing global access to that instance.
Singleton pattern restricts the instantiation of a class to one object.
It provides a global point of access to the instance.
Synchronization can be implemented in the Singleton pattern to ensure thread safety.
Example: Singleton pattern is commonly used in database connections to ensure
External libraries are pre-written code that can be imported and used in a project to provide additional functionality.
External libraries help in reducing development time by providing ready-made solutions for common tasks.
Examples include React for front-end development, NumPy for scientific computing in Python, and Retrofit for making network calls in Android apps.
Java hash map is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values based on keys.
HashMap in Java implements the Map interface and allows null keys and values.
It uses hashing to store and retrieve key-value pairs, providing O(1) time complexity for get() and put() operations.
Example: HashMap
posted on 28 Sep 2023
posted on 5 Dec 2022
I applied via LinkedIn and was interviewed in Nov 2022. There were 3 interview rounds.
I was interviewed in Aug 2022.
To check if a linkedlist is palindrome or not
Traverse the linkedlist and push each element into a stack
Traverse the linkedlist again and compare each element with the popped element from the stack
If all elements match, then the linkedlist is palindrome
Sort employees by salary and department
Create a comparator function to compare salary and department
Use the comparator function with the sort() method on the employee stream
Return the sorted employee stream
Count duplicates in array of strings
Create a dictionary to store the count of each string
Loop through the array and increment the count in dictionary
Loop through the dictionary and count the duplicates
Return the count of duplicates
I applied via Naukri.com and was interviewed in Oct 2022. There were 2 interview rounds.
WAP to count Duplicate String using Java 8
Use Java 8 Stream API to group and count duplicate strings
Create a Map
Filter the map to get only the strings with count > 1
Return the size of the filtered map as the number of duplicate strings
based on 1 interview
Interview experience
Software Engineer
342
salaries
| ₹6 L/yr - ₹20 L/yr |
Senior Software Engineer
212
salaries
| ₹7.8 L/yr - ₹26.2 L/yr |
Softwaretest Engineer
94
salaries
| ₹2 L/yr - ₹6.5 L/yr |
Associate Software Engineer
54
salaries
| ₹5.8 L/yr - ₹11 L/yr |
System Analyst
52
salaries
| ₹12.5 L/yr - ₹24 L/yr |
IBM
Microsoft Corporation
Oracle
SAP