Filter interviews by
I applied via Job Portal and was interviewed before Apr 2023. There were 4 interview rounds.
Coding round on D2C - codehers
Move all 0s to the end of the array while maintaining the order of other elements.
Iterate through the array and keep track of the index to place non-zero elements.
After iterating, fill the remaining positions with 0s.
Top trending discussions
Hackerrank was used for test
Implement BFS algorithm to find the nearest neighbour
Create a queue to store nodes to be visited
Start with the initial node and add it to the queue
While the queue is not empty, dequeue a node, visit its neighbours, and add them to the queue
Repeat until the nearest neighbour is found
Priority queue can be implemented using a heap data structure.
Create a min heap or max heap based on the priority order needed.
Insert elements into the heap based on their priority level.
Remove elements from the heap based on their priority level.
Heapify the heap after each insertion or deletion operation.
Example: Implementing a min heap for a priority queue where lower values have higher priority.
I applied via Naukri.com and was interviewed in Jan 2022. There were 3 interview rounds.
They just asked about my previous experience and questions from my resume
I appeared for an interview before Jun 2024, where I was asked the following questions.
I successfully convinced my team to adopt Agile methodologies for improved collaboration and efficiency in our software development process.
Identified inefficiencies in our current waterfall approach, such as long feedback loops.
Presented data showing how Agile could reduce development time by 30%.
Organized a workshop to demonstrate Agile principles and practices.
Facilitated a pilot project using Agile, which resulted ...
Design a queuing system to manage requests efficiently and ensure fair processing.
Define the purpose: e.g., handling customer service requests.
Choose a queuing model: FIFO (First In, First Out) is common.
Implement priority levels: e.g., urgent requests processed first.
Consider scalability: ensure the system can handle increased load.
Use data structures: e.g., linked lists or arrays for queue management.
Incorporate time...
Streams in Java are sequences of data elements supporting sequential and parallel aggregate operations.
Streams are part of the java.util.stream package introduced in Java 8.
They allow functional-style operations on collections, such as map, filter, and reduce.
Example: List<String> names = Arrays.asList("Alice", "Bob"); names.stream().filter(name -> name.startsWith("A")).forEach(System.out::println);
Streams can...
I applied via Naukri.com and was interviewed before Mar 2023. There were 2 interview rounds.
String manipulation using loops and conditionals for software engineering
Use loops to iterate through each character in the string
Use conditional statements to check for specific conditions and manipulate the string accordingly
Examples: reversing a string, counting occurrences of a specific character, removing whitespace
Basic aptitude questions based on profit and loss
Coding test based on c language and python programming
Communication assignment based on English
Real-time operating systems are designed to provide guaranteed response times for critical tasks.
Real-time operating systems prioritize tasks based on their urgency and importance.
They are commonly used in industries such as aerospace, automotive, and industrial automation.
Examples include VxWorks, QNX, and FreeRTOS.
I applied via Walk-in and was interviewed in Aug 2024. There was 1 interview round.
Daemon thread is a low priority thread that runs in the background and does not prevent the JVM from exiting.
Daemon threads are used for tasks that do not require user interaction or continuous execution.
They are automatically terminated when all non-daemon threads have finished.
Set a thread as daemon using setDaemon(true) method before starting it.
Example: Thread t = new Thread(); t.setDaemon(true); t.start();
I applied via Naukri.com and was interviewed before Aug 2020. There were 4 interview rounds.
based on 1 interview experience
Difficulty level
Duration
Senior Software Engineer
46
salaries
| ₹30.6 L/yr - ₹56.8 L/yr |
Software Developer
20
salaries
| ₹10 L/yr - ₹35 L/yr |
Principal Engineer
19
salaries
| ₹34.5 L/yr - ₹70 L/yr |
Software Engineer III
19
salaries
| ₹15 L/yr - ₹60 L/yr |
Software Development Engineer 3
17
salaries
| ₹16 L/yr - ₹40 L/yr |
TCS
Accenture
Wipro
Cognizant