Filter interviews by
I applied via Campus Placement
Logical and reasoning
Top trending discussions
I applied via Campus Placement
1 hour
aptitude test
brain teaser type questions
I appeared for an interview in Mar 2025, where I was asked the following questions.
I applied via Recruitment Consultant and was interviewed before May 2020. There were 3 interview rounds.
Clone a linked list with random pointers.
Create a new node for each node in the original list.
Store the mapping between the original and cloned nodes in a hash table.
Traverse the original list again and set the random pointers in the cloned list using the hash table.
Return the head of the cloned list.
posted on 7 May 2017
I appeared for an interview in Feb 2017.
malloc is a function in C that dynamically allocates memory on the heap. It is used to allocate memory for variables or data structures.
malloc is used in C programming language.
It is used to allocate memory on the heap.
malloc is different from 'new' in C++ as it does not call constructors for objects.
C++ is a general-purpose programming language while Objective C is a superset of C used for iOS and macOS development.
C++ is widely used for developing applications, games, and system software.
Objective C is mainly used for iOS and macOS development.
C++ supports both procedural and object-oriented programming paradigms.
Objective C is an object-oriented language with dynamic runtime features.
C++ has a larger community a...
Class container is a class that holds objects of other classes, while class composition is a way to combine multiple classes to create a new class.
Class container holds objects of other classes, acting as a collection or container.
Class composition combines multiple classes to create a new class with its own behavior and attributes.
In class container, the objects are typically stored in a data structure like an array o...
Divide the horses into groups of 5 and race them. Take the top 2 from each race and race them again. Finally, race the top 2 horses to determine the top 3.
Divide the horses into 3 groups of 5 and race them.
Take the top 2 horses from each race and race them again.
Finally, race the top 2 horses to determine the top 3.
Developing a real-time data processing system for a high-traffic e-commerce website
Implemented a distributed system architecture to handle large volumes of data
Optimized algorithms for efficient data processing and storage
Utilized caching mechanisms to improve system performance
Worked closely with cross-functional teams to troubleshoot and resolve issues
Example: Successfully reduced data processing time by 50% by imple...
The width of a tree is the maximum number of nodes at any level in the tree.
To calculate the width of a tree, we can perform a level order traversal and keep track of the maximum number of nodes at any level.
We can use a queue data structure to perform the level order traversal.
At each level, we count the number of nodes in the queue and update the maximum width if necessary.
I appeared for an interview in Aug 2017.
posted on 10 May 2015
Locate sum of 2 numbers in a linear array (unsorted and sorted) and their complexities
For unsorted array, use nested loops to compare each element with every other element until the sum is found
For sorted array, use two pointers approach starting from the beginning and end of the array and move them towards each other until the sum is found
Complexity for unsorted array is O(n^2) and for sorted array is O(n)
Pointers are used to manipulate memory addresses and values in C++. Increment/decrement, address of and value at operators are commonly used.
Incrementing a pointer moves it to the next memory location of the same data type
Decrementing a pointer moves it to the previous memory location of the same data type
The address of operator (&) returns the memory address of a variable
The value at operator (*) returns the value sto...
There are multiple combinations of 8-bit and 16-bit signed numbers. How many such combinations are possible?
There are 2^8 (256) possible combinations of 8-bit signed numbers.
There are 2^16 (65,536) possible combinations of 16-bit signed numbers.
To find the total number of combinations, we can add the number of combinations of 8-bit and 16-bit signed numbers.
Therefore, the total number of possible combinations is 256 + ...
Find duplicates in an array of elements in 0(n) time and 0(1) space.
Use the property of inputs to your advantage
Iterate through the array and mark elements as negative
If an element is already negative, it is a duplicate
Return all the negative elements as duplicates
Generate all combinations of digits from an array, allowing and disallowing repetition.
Use recursion or backtracking to generate combinations.
For repetition allowed: e.g., arr={1,2}, combinations are 11, 12, 21, 22.
For repetition not allowed: e.g., arr={1,2,3}, combinations are 123, 132, 213, 231, 312, 321.
Utilize a set to track used digits when repetition is not allowed.
I appeared for an interview in Aug 2017.
I appeared for an interview before May 2016.
I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.
AC (Alternating Current) changes direction periodically, while DC (Direct Current) flows in one direction.
AC is used in household power supplies, while DC is commonly used in batteries.
AC voltage can be transformed to different levels, making it efficient for long-distance transmission.
DC is often used in electronic devices like smartphones and laptops.
AC frequency is measured in Hertz (Hz), while DC has a constant vol...
Fill the cells in the pyramid
The pyramid is a pattern of numbers or characters arranged in a triangular shape
Each row of the pyramid has one more cell than the previous row
Start filling the pyramid from the top and move downwards
The cells can be filled with any desired numbers or characters
An alternator and generator are devices that convert mechanical energy into electrical energy.
Both alternators and generators are used to generate electricity.
They work on the principle of electromagnetic induction.
Alternators are commonly used in modern vehicles to charge the battery and power the electrical systems.
Generators are often used as backup power sources during power outages.
Examples of alternators include ...
Quicksort has an average time complexity of O(n log n) and a worst-case of O(n²) depending on the pivot selection.
Average case: O(n log n) when the pivot divides the array into two equal halves.
Worst case: O(n²) occurs when the smallest or largest element is always chosen as the pivot.
Best case: O(n log n) when the pivot is the median, leading to balanced partitions.
Example: Sorting an array [3, 6, 8, 10, 1, 2, 1] usin...
I developed a mobile app for tracking daily water intake and hydration levels.
Researched best practices for hydration tracking
Designed user-friendly interface for inputting water intake
Implemented data visualization for tracking hydration levels
Tested app with focus groups for feedback
Continuously updated app based on user suggestions
SHA Algorithm is a cryptographic hash function that takes an input and produces a fixed-size output.
SHA stands for Secure Hash Algorithm.
It is widely used in various security applications and protocols.
SHA-1, SHA-256, SHA-384, and SHA-512 are common variants of SHA.
It generates a unique hash value for each unique input.
The output is a fixed length, regardless of the input size.
SHA is used for data integrity, password h...
Delete a node in a singly linked list when given direct access to that node.
To delete a node, copy the data from the next node to the current node.
Then, link the current node to the node after the next node.
Finally, delete the next node to free memory.
Example: If the list is 1 -> 2 -> 3 and we want to delete node 2, copy 3's data to 2, then link 2 to 3.
I'm a passionate software engineer with a strong background in full-stack development and a love for solving complex problems.
Graduated with a degree in Computer Science from XYZ University, where I developed a solid foundation in algorithms and data structures.
Worked at ABC Corp as a software developer, where I led a team to build a web application that improved user engagement by 30%.
Proficient in languages like Java...
During my internships, I faced challenges like adapting to new technologies, managing time effectively, and collaborating with diverse teams.
Adapting to new technologies: I had to quickly learn React for a web development project, which was new to me.
Time management: Balancing multiple tasks during a tight deadline taught me prioritization skills.
Collaboration: Working with a remote team highlighted the importance of c...
I prefer a location that fosters collaboration, innovation, and work-life balance, ideally in a tech hub or remote setting.
I enjoy working in tech hubs like San Francisco or Seattle for their vibrant tech communities.
Remote work allows for flexibility and a better work-life balance, which I value.
I appreciate locations with access to nature, as it helps me recharge and stay productive.
Being close to a diverse talent po...
I will solve disputes by promoting open communication, active listening, and finding mutually beneficial solutions.
Encourage open and honest communication between parties involved
Actively listen to each party's concerns and perspectives
Identify common goals and interests to find mutually beneficial solutions
Mediate discussions and facilitate negotiations if necessary
Document agreements and ensure follow-up to prevent f...
Qualcomm is a leading semiconductor and telecommunications equipment company, known for its innovations in mobile technology.
Pioneered the development of CDMA technology, which revolutionized mobile communications.
Key player in the 5G rollout, providing essential chipsets for smartphones and IoT devices.
Invests heavily in R&D, contributing to advancements in AI and machine learning applications.
Partnerships with ma...
based on 1 interview experience
Technical Lead
310
salaries
| ₹19.5 L/yr - ₹35 L/yr |
Senior Software Engineer
137
salaries
| ₹14.4 L/yr - ₹25 L/yr |
Software Engineer
101
salaries
| ₹10.7 L/yr - ₹20 L/yr |
Manufacturing Engineer
98
salaries
| ₹7 L/yr - ₹15 L/yr |
Senior Engineer Mechanical
73
salaries
| ₹10.8 L/yr - ₹18 L/yr |
Qualcomm
Intel
Molex
TDK India Private Limited