Filter interviews by
Be the first one to contribute and help others!
I applied via Approached by Company and was interviewed in Apr 2024. There was 1 interview round.
I applied via LinkedIn and was interviewed before Nov 2023. There were 2 interview rounds.
Apti+ coding round as a single test in a day
Stack and queue are data structures used to store and retrieve data in a specific order.
Stack is a Last In First Out (LIFO) data structure where elements are added and removed from the same end.
Queue is a First In First Out (FIFO) data structure where elements are added at the rear and removed from the front.
Example of stack: Undo feature in text editors.
Example of queue: Print job queue in a printer.
Data structures like stack and queue have real-life applications in various fields.
Stack: browser history, undo functionality in text editors
Queue: waiting in line at a grocery store, printer queue
Linked List: train cars linked together, playlist in music apps
I applied via LinkedIn and was interviewed in Aug 2022. There were 2 interview rounds.
An abstract class is a class that cannot be instantiated and is meant to be subclassed.
An abstract class can have abstract and non-abstract methods.
Abstract methods have no implementation and must be implemented by the subclass.
A subclass can only extend one abstract class but can implement multiple interfaces.
Example: Animal is an abstract class with abstract method 'makeSound'. Dog and Cat are subclasses that impleme
Abstract is a class while interface is a contract. Abstract can have implementation while interface cannot.
Abstract class can have constructors while interface cannot
Abstract class can have non-abstract methods while interface cannot
A class can implement multiple interfaces but can only inherit from one abstract class
I applied via campus placement at Jawaharlal Nehru Technological University (JNTU) and was interviewed before May 2023. There were 2 interview rounds.
1 coding algo question and MCQ
To find the Kth element from the end in a linked list, we can use the two-pointer technique.
Use two pointers, one moving K steps ahead of the other
When the first pointer reaches the end, the second pointer will be at the Kth element from the end
Handle edge cases like K being larger than the length of the linked list
Search for a target value in a row-wise and column-wise sorted 2D array.
Start from the top right corner of the array
If the target value is less than the current element, move left
If the target value is greater than the current element, move down
Repeat until the target value is found or the boundaries of the array are reached
posted on 12 Mar 2022
I applied via Company Website and was interviewed in Feb 2022. There were 3 interview rounds.
We will have6-8 codes to write atleast 1 or 2 testcases should be cleared
They dont focus much on this you can just consider as formality and hit the right options
I applied via Company Website and was interviewed in May 2022. There were 2 interview rounds.
I applied via LinkedIn and was interviewed in Nov 2021. There was 1 interview round.
Science is the systematic study of the natural world through observation and experimentation.
Science involves the use of the scientific method to test hypotheses and theories
It aims to explain natural phenomena and make predictions about future events
Examples of scientific fields include physics, biology, chemistry, and astronomy
I applied via campus placement at Vishwakarma Institute of Technology, Pune and was interviewed in Nov 2020. There were 3 interview rounds.
Slew rate is the rate at which an electrical signal changes over time.
Slew rate measures how quickly the voltage of a signal can change.
It is typically expressed in volts per microsecond (V/μs).
A high slew rate indicates a signal can change rapidly, while a low slew rate indicates a slower change.
Slew rate is important in applications where fast signal transitions are required, such as in amplifiers or digital circuits
An oscillator is an electronic circuit that produces a periodic, oscillating electronic signal.
Oscillators are used in many electronic devices, such as radios, televisions, and computers.
They are also used in clocks, watches, and other timekeeping devices.
There are many different types of oscillators, including crystal oscillators, LC oscillators, and RC oscillators.
Oscillators can produce signals at a wide range of fr...
Gain is the increase in signal power or amplitude produced by an amplifier or other electronic device.
Gain is a measure of amplification.
It is the ratio of output power to input power.
It can be expressed in decibels (dB).
For example, if an amplifier has a gain of 10, it will increase the input signal by a factor of 10.
Gain is an important parameter in designing and analyzing electronic circuits.
A flip-flop is a digital circuit that can store a single bit of information.
It has two stable states: 0 and 1.
It can be used to store data, count pulses, and synchronize digital circuits.
Examples include D flip-flop, JK flip-flop, and T flip-flop.
GSM stands for Global System for Mobile Communications, a standard for mobile communication networks.
GSM is a digital cellular network technology used for voice and data communication.
It was first introduced in 1991 and is now widely used in over 200 countries.
GSM uses a SIM card to identify and authenticate users on the network.
It operates on different frequency bands depending on the region.
GSM has been largely repla...
Hamming distance is the number of positions at which the corresponding symbols are different between two strings of equal length.
Hamming distance is used in coding theory, information theory, and cryptography.
It is also used in DNA analysis to measure the genetic distance between two sequences.
For example, the Hamming distance between '10101' and '11100' is 2.
It can be calculated by comparing each symbol in the two str...
Resonance is the phenomenon of an object vibrating at its natural frequency due to the influence of an external force.
Resonance occurs when an object is subjected to an external force that matches its natural frequency.
This causes the object to vibrate with increasing amplitude.
Examples of resonance include a tuning fork vibrating when struck, a wine glass shattering due to a high-pitched sound, and a bridge collapsing...
Digital communication is the transmission of information through digital signals.
Digital communication uses binary code to represent data.
It can be done through various mediums such as wires, fiber optics, or wireless signals.
Examples include email, text messaging, and video conferencing.
Digital communication allows for faster and more efficient transmission of information compared to analog communication.
Program to reverse a string
Create an empty string to store the reversed string
Iterate through the original string from end to start
Append each character to the new string
Return the reversed string
A program to print name using an array of strings.
Declare an array of strings with the name.
Assign the name to the array.
Loop through the array and print each string.
I applied via Naukri.com and was interviewed in Mar 2021. There were 4 interview rounds.
I applied via campus placement at Andhra University and was interviewed in May 2021. There was 1 interview round.
DBMS is a software to manage databases while RDBMS is a type of DBMS that uses a relational model.
DBMS stands for Database Management System while RDBMS stands for Relational Database Management System.
DBMS can manage any type of database while RDBMS uses a relational model to manage data.
RDBMS enforces ACID properties (Atomicity, Consistency, Isolation, Durability) while DBMS may not.
Examples of DBMS include MongoDB, ...
Cloud computing is the delivery of computing services over the internet.
Cloud computing allows users to access data and applications from anywhere with an internet connection.
It offers scalability, flexibility, and cost-effectiveness compared to traditional on-premises computing.
Examples include Amazon Web Services, Microsoft Azure, and Google Cloud Platform.
I enjoy both single player and group games, depending on my mood and the type of game.
I prefer single player games when I want to relax and enjoy a story-driven experience.
I enjoy group games when I want to socialize and collaborate with others.
Some examples of single player games I enjoy are The Witcher 3 and Skyrim.
Some examples of group games I enjoy are Overwatch and League of Legends.
Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.
Bubble sort has a time complexity of O(n^2)
It is not efficient for large datasets
It is easy to implement and understand
Example: [5, 3, 8, 4, 2] -> [2, 3, 4, 5, 8]
JavaScript cannot be embedded in CSS. They are separate languages used for different purposes.
CSS is used for styling and layout of web pages
JavaScript is used for adding interactivity and functionality to web pages
JavaScript can be included in HTML using