Filter interviews by
I applied via Campus Placement and was interviewed before Aug 2022. There were 3 interview rounds.
Oops concepts, basics of c++ , array manipulation, numbers dsa, copy constructor, inheritance, virtual function
Top trending discussions
I applied via Approached by Company and was interviewed in Aug 2023. There was 1 interview round.
RecyclerView is a flexible view for providing a limited window into a large data set.
RecyclerView recycles views to improve performance and memory usage.
It uses LayoutManager to organize items in a grid, list, or staggered grid layout.
Adapter provides data to be displayed in RecyclerView.
ItemDecoration can be used to add spacing between items or decorations to items.
ItemAnimator can be used to animate item changes in t
posted on 14 Mar 2025
I appeared for an interview before Mar 2024, where I was asked the following questions.
posted on 20 Aug 2023
I applied via Referral and was interviewed in Jul 2023. There were 4 interview rounds.
Aptitude Question on various standard topics .
Stacks are used in real life for managing undo operations in text editors, backtracking in maze solving, and managing function calls in programming.
Undo operations in text editors - allows users to go back to previous states of a document
Backtracking in maze solving - helps in keeping track of visited paths and backtracking when necessary
Managing function calls in programming - helps in keeping track of function calls
i++ and ++i are both increment operators in C++ but have different behaviors.
i++ is a post-increment operator which increments the value of i after using it in an expression.
++i is a pre-increment operator which increments the value of i before using it in an expression.
Example: int i = 5; int a = i++; // a = 5, i = 6; int b = ++i; // b = 7, i = 7;
posted on 19 Jun 2024
I applied via LinkedIn and was interviewed before Jun 2023. There was 1 interview round.
It was quite easy, all the questions were from leetcode
posted on 31 May 2022
I appeared for an interview in Jul 2021.
Round duration - 60 minutes
Round difficulty - Medium
This round had questions related to aptitude and coding
You are provided with an array/list ARR
of size 'N', containing integers ranging from 0 to N - 1. Some elements in this array might be repeating. Your task is...
Identify duplicate elements in an array of integers ranging from 0 to N-1.
Iterate through the array and keep track of seen elements using a hash set.
If an element is already in the set, it is a duplicate and can be added to the result.
Return the list of duplicate elements found in the array.
Round duration - 60 minutes
Round difficulty - Medium
This round had some questions from OOPS and some from DBMS
Compile-time polymorphism is achieved through function overloading and operator overloading, while runtime polymorphism is achieved through virtual functions and inheritance.
Compile-time polymorphism is resolved during compile-time based on the number and types of arguments passed to a function.
Examples of compile-time polymorphism include function overloading, where multiple functions with the same name but different ...
ACID properties in DBMS ensure data integrity and consistency.
Atomicity: All transactions are either completed in full or not at all.
Consistency: Data must be in a valid state before and after a transaction.
Isolation: Transactions should be isolated from each other until they are completed.
Durability: Once a transaction is committed, changes are permanent and cannot be lost.
Example: If a bank transfer fails midway, the...
The various types of inheritance in Object-Oriented Programming include single inheritance, multiple inheritance, multilevel inheritance, hierarchical inheritance, and hybrid inheritance.
Single inheritance: A class inherits from only one base class.
Multiple inheritance: A class inherits from more than one base class.
Multilevel inheritance: A class inherits from a class, which in turn inherits from another class.
Hierarc...
Round duration - 30 minutes
Round difficulty - Easy
This was my last round and I hoped it to go good just like the other rounds. The interviewer was very straight to the point and professional. The interview lasted for 30 minutes.
Tip 1 : Prepare for DSA
Tip 2 : Good communication skills and confidence
Tip 3 : Proper knowledge of computer-related subjects
Tip 1 : Just mention your area of interest in your resume
Tip 2 : Mention only those things which you have a proper knowledge. Also mention about the final year project
I applied via LinkedIn and was interviewed in Aug 2024. There were 3 interview rounds.
It was an online assessment. Some coding questions. Some cs fundamental mcqs. SQL query, Rest Api question.
An assignment to create a game using nodejs/ go lang/ java.
posted on 23 Feb 2022
I applied via Campus Placement and was interviewed before Feb 2021. There were 2 interview rounds.
posted on 15 Mar 2022
I appeared for an interview in Sep 2021.
Round duration - 90 minutes
Round difficulty - Medium
It was an MCQ + coding based round consisting of multiple choice questions from topics like Aptitude, Logical reasoning, English, Programming ,etc. and 2 coding problems
Given an integer N, determine and print all the prime numbers between 2 and N, inclusive.
Integer N
Prime numbers printed on separate lines
Generate and print all prime numbers between 2 and N, inclusive.
Iterate from 2 to N and check if each number is prime
A prime number is only divisible by 1 and itself
Print each prime number on a new line
Given an input string STR
, generate and print all possible permutations of the string.
str
All permutations of the input string, each on a new line.
Generate and print all possible permutations of a given input string.
Use recursion to generate all permutations by swapping characters in the string.
Maintain a visited array to keep track of characters already used in a particular permutation.
Print each permutation as it is generated.
Handle duplicate characters by skipping swapping if the character is already in the current position.
Round duration - 75 minutes
Round difficulty - Medium
There were 2 interviewers. Firstly, they asked me to give my introduction. Then they asked me to explain any one of my projects in detail along with its demonstration. After this, they began with the DSA and computer fundamentals part.
Given an array of integers ARR
of length N
and an integer Target
, your task is to return all pairs of elements such that they add up to the Target
.
The first line ...
Given an array of integers and a target, find all pairs of elements that add up to the target.
Iterate through the array and for each element, check if the difference between the target and the element exists in a hashmap.
If it exists, add the pair to the result. If not, add the element to the hashmap.
Handle cases where the same element is used twice in a pair.
Return the pairs found or (-1, -1) if no pair is found.
Design a queue data structure following the FIFO (First In First Out) principle using only stack instances.
Your task is to complete predefined functions t...
Implement a queue using stacks with enQueue, deQueue, peek, and isEmpty operations.
Use two stacks to simulate a queue - one for enqueueing and one for dequeueing.
For enQueue operation, push elements onto the enqueue stack.
For deQueue operation, if the dequeue stack is empty, transfer elements from enqueue stack to dequeue stack.
For peek operation, return the top element of the dequeue stack.
For isEmpty operation, check...
Given an array ARR
of size N
, perform the operation to swap the Kth element from the beginning with the Kth element from the end of the array.
N = 5, K = 2
...
Swap Kth elements in an array with given constraints.
Create a temporary variable to store the Kth element from the start
Swap the Kth element from the start with the Kth element from the end
Return the modified array
Tip 1 : Focus on solving good quality DSA problems rather than quantity
Tip 2 : Study computer science fundamental subjects like OOPS, DBMS and Operating systems thoroughly
Tip 1 : Mention at least 1 good development project
Tip 2 : Don't put unnecessary or non technical details in your resume
posted on 13 May 2022
I applied via Campus Placement and was interviewed before May 2021. There were 4 interview rounds.
An online test was taken on Aspiring Minds platform. The test duration was of 1 hour and test consists of questions related to aptitude, english and coding.
Java is platform independent because it uses the concept of bytecode and virtual machine.
Java code is compiled into bytecode, which is a platform-independent representation of the code.
The bytecode is then executed by the Java Virtual Machine (JVM), which is specific to each platform.
This allows Java programs to run on any platform that has a compatible JVM.
The JVM acts as an interpreter, translating the bytecode into ...
Exception handling is a mechanism to handle runtime errors and prevent program crashes.
Exception handling is used to catch and handle errors that occur during program execution.
It involves the use of try-catch blocks to catch exceptions and handle them gracefully.
The try block contains the code that might throw an exception, and the catch block handles the exception.
Multiple catch blocks can be used to handle different...
Sort a list of custom class objects based on one of its properties.
Use a sorting algorithm like bubble sort, insertion sort, or merge sort.
Implement a comparison function to compare the desired property of the objects.
Apply the sorting algorithm to the list of objects using the comparison function.
A SQL query to count the number of rows in a table.
Use the COUNT() function in SQL to count the number of rows in a table.
Specify the table name in the FROM clause.
Use the result of the COUNT() function to print the number of rows.
The fundamental pillars of OOPS programming are encapsulation, inheritance, and polymorphism.
Encapsulation: It is the process of hiding the internal details of an object and providing a public interface for interacting with it.
Inheritance: It allows creating new classes by inheriting properties and behaviors from existing classes, promoting code reuse.
Polymorphism: It enables objects of different classes to be treated ...
based on 1 interview
Interview experience
based on 1 review
Rating in categories
Software Developer
15
salaries
| ₹3.6 L/yr - ₹5.8 L/yr |
Softwaretest Engineer
15
salaries
| ₹2.8 L/yr - ₹9 L/yr |
Graphic Designer
9
salaries
| ₹2.4 L/yr - ₹7.8 L/yr |
Senior Application Software Engineer
7
salaries
| ₹8 L/yr - ₹11 L/yr |
Software Engineer
6
salaries
| ₹4.5 L/yr - ₹10 L/yr |
Amazon
Flipkart
Amazon Development Centre India
Udaan