Filter interviews by
I was interviewed in Feb 2024.
Android life cycle refers to the stages a mobile app goes through from creation to termination.
Android app starts in onCreate() method
Moves to onStart() and onResume() when app becomes visible
Goes to onPause() when app is partially visible
Enters onStop() when app is no longer visible
Finally reaches onDestroy() when app is terminated
Two questions are asked:
Reverse linked list
2 sum (leetcode)
I applied via campus placement at Motilal Nehru Institute National Institute of Technology (NIT), Allahabad and was interviewed before Jun 2023. There were 2 interview rounds.
50 questions 2 coding questions
Top trending discussions
1 hour , dsa, hackerearth, medim to hard
posted on 6 Sep 2024
Comprehensive questions
Java strings programs
posted on 8 May 2024
posted on 9 Jun 2023
I applied via Recruitment Consulltant and was interviewed in May 2023. There were 3 interview rounds.
Find out a string is palindrome or not
ACID properties are a set of properties that guarantee database transactions are processed reliably.
ACID stands for Atomicity, Consistency, Isolation, Durability
Atomicity ensures that all operations in a transaction are completed successfully or none at all
Consistency ensures that the database remains in a consistent state before and after the transaction
Isolation ensures that transactions are executed independently of...
Event loop in Node.js manages asynchronous operations by executing callback functions when certain events occur.
Event loop is responsible for handling I/O operations, timers, and callbacks in Node.js
It allows Node.js to perform non-blocking operations efficiently
Event loop continuously checks the event queue and executes callback functions when events are triggered
Primary key uniquely identifies a record, foreign key links to a primary key in another table, unique key ensures uniqueness of a column or set of columns.
Primary key: uniquely identifies each record in a table (e.g. employee_id in an employees table)
Foreign key: links to a primary key in another table to establish a relationship (e.g. department_id in an employees table linking to department_id in a departments table)
...
Variable hoisting is a behavior in JavaScript where variable declarations are moved to the top of their scope during compilation.
Variable declarations are hoisted to the top of their function or global scope.
Only the declarations are hoisted, not the initializations.
Hoisting allows you to use a variable before it is declared, but it is best practice to declare variables at the top of the scope.
Example: console.log(myV
Function closure in JavaScript allows a function to access variables from its outer scope even after the outer function has finished executing.
Function closures occur when a function is defined within another function and the inner function has access to the outer function's variables.
Closures are commonly used to create private variables and functions in JavaScript.
Example: function outerFunction() { let outerVar = 'I...
Shallow copy creates a new object but references the same nested objects, while deep copy creates a new object with copies of all nested objects.
Shallow copy only copies the top-level object, not the nested objects.
Deep copy creates new copies of all nested objects, ensuring they are independent.
In JavaScript, shallow copy can be achieved using Object.assign or spread operator, while deep copy can be achieved using JSO
I applied via Naukri.com and was interviewed in Dec 2021. There were 5 interview rounds.
Provide two logic-wise code snippets for L2 level software developer position.
Use conditional statements to check for specific conditions and execute code accordingly.
Implement loops to iterate over data and perform operations.
Use functions to modularize code and improve readability.
Implement error handling to prevent unexpected behavior.
Use data structures such as arrays and objects to organize and manipulate data.
Design and implement a Messenger like application
Identify the core features of a messaging app such as sending/receiving messages, creating groups, notifications, etc.
Choose a suitable platform and programming language for development
Implement a user-friendly interface with intuitive design
Ensure data security and privacy by implementing encryption and authentication measures
Test the application thoroughly to ensure it
I was interviewed in Jan 2021.
Round duration - 40 minutes
Round difficulty - Easy
It was in the morning. The 1st round was online coding + MCQ round. It had 3 sections in total to be solved in 40mins.Questions were mainly from Data structure, OS, DBMS, SQL.
Rick has provided Morty with an array 'Arr' of length 'N' and an integer 'K'. Morty needs to split the array into non-empty sub-arrays to achieve the minimum possible cost, subject...
The basic idea is to generate all the possible subarrays and find the cost of every possible split and then returning the minimum cost from all of them.
The steps are as follows:
Imagine Ninja is tackling a puzzle during his long summer vacation. He has two arrays of integers, each with lengths 'N' and 'M'. Ninja's task is to dete...
The simplest idea is to consider all subsequences of arr1[] and check if all numbers in this subsequence are prime and appear in arr2[]. Then find the longest length of these subsequences. But the time complexity for this operation will be O(M * (2 ^ N)) where ‘M’ is the length of the first array and ‘N’ is the length of the second array.
We can think of an efficient solution in which first we c...
Round duration - 60 minutes
Round difficulty - Medium
It was conducted in the evening around 4:30PM-5:30PM. Questions were bit difficult. Questions were mainly from Data Structures and there was total of 3 questions.
You are given an integer array/list arr
of size N
. Your task is to split the array into the maximum number of subarrays such that the first and last occurrence of every disti...
The key idea in this problem is storing the first and last occurrence index of every element. So, we can store the first and last index and then iterate over the array, and in each iteration, we check if the maximum index of the last occurrence of all the previous elements of the current subarray is less than or equal to the current index.
We use array hash to store the last occurrence of an elemen...
Given an integer array arr
of size N
, determine if it is possible to split the array into K
consecutive non-overlapping subarrays of length M
such that e...
We will be solving this problem using a simple array traversal. At each position, we will check if the element at the current index i and (i + M) are the same or not. Moreover, if it is the same, then we will increment the counter, and as soon as our counter becomes equal to K, it means the array can be split, and we will return the answer at that step. If, after all, iterations are still if the count i...
Round duration - 20 minutes
Round difficulty - Easy
It was in the evening. Interviewer first ask simple questions to keep me calm and it was nice interaction with her the environment created by her was very interesting to answer
Tip 1 : Even if you are stuck in the problem, just give a try. The interviewer will help you definitely for sure.
Tip 2 : Prepare Data Structures and Algorithms well. They mostly check our Problem Solving ability to find the solutions for the real world problems.
Tip 3 : Be enough confident, don't be nervous. Maintain atleast 2 projects in your resume
Tip 1 : Mention atleast 2 projects.
Tip 2 : Mention your skills in which you are perfect.
Tip 3 : It should not be too long or too short
I applied via Naukri.com and was interviewed in Sep 2020. There were 4 interview rounds.
based on 3 interviews
Interview experience
based on 2 reviews
Rating in categories
Senior Technical Support Engineer
81
salaries
| ₹8.4 L/yr - ₹22 L/yr |
Technical Support Engineer
57
salaries
| ₹5.9 L/yr - ₹14 L/yr |
Senior Software Engineer 2
46
salaries
| ₹21 L/yr - ₹48 L/yr |
Senior Software Engineer
42
salaries
| ₹16.2 L/yr - ₹44.5 L/yr |
Software Engineer2
35
salaries
| ₹12 L/yr - ₹24 L/yr |
Microsoft Corporation
Oracle
IBM