Qualcomm interview experience Real time questions & tips from candidates to crack your interview

Application Developer

Qualcomm
upvote
share-icon
2 rounds | 5 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 3.5 months
Topics: Pointers, OOPS, Dynamic Programming, System Design, Algorithms, Data Structures
Tip
Tip

Tip 1 : Practice aptitude
Tip 2 : Practice coding 
Tip 3 : Practice systtem design

Application process
Where: Referral
Eligibility: No criteria
Resume Tip
Resume tip

Tip 1 : Don't lie
Tip 2 : Be prepared for question on topics you write on resume

Interview rounds

01
Round
Easy
Video Call
Duration60 Minutes
Interview date25 Mar 2022
Coding problem2

Some questions on resume and past experiences
2 coding questions on LinkedList.
Questions on OOPS: polymorphism(run-time vs compile-time), method overloading, overriding, and a couple more.

1. Remove Duplicates From Sorted List

Easy
0/40
Asked in companies
QualcommChegg Inc.Apple

A doubly-linked list is a data structure that consists of sequentially linked nodes, and the nodes have reference to both the previous and the next nodes in the sequence of nodes.


You are given a sorted doubly linked list of size 'n'.


Remove all the duplicate nodes present in the linked list.


Example :
Input: Linked List: 1 <-> 2 <-> 2 <-> 2 <-> 3

Output: Modified Linked List: 1 <-> 2 <-> 3

Explanation: We will delete the duplicate values ‘2’ present in the linked list.


Try solving now

2. Delete Kth node From End

Moderate
15m average time
95% success
0/80
Asked in companies
WalmartWells FargoChegg Inc.

You have been given a singly Linked List of 'N' nodes with integer data and an integer 'K'.


Your task is to remove the 'K'th node from the end of the given Linked List and return the head of the modified linked list.


Example:
Input : 1 -> 2 -> 3 -> 4 -> 'NULL'  and  'K' = 2
Output: 1 -> 2 -> 4 -> 'NULL'
Explanation:
After removing the second node from the end, the linked list become 1 -> 2 -> 4 -> 'NULL'.

altImage


Try solving now
02
Round
Easy
Video Call
Duration60 Minutes
Interview date28 Mar 2022
Coding problem3

Some questions on resume and past experiences
3 coding questions on Arrays
Again some OOPS questions around polymorphism and stuff…..(don’t remember exactly)

1. Linear Search

Easy
0/40
Asked in companies
QualcommAvl india private limitedDeloitte

 You have been required to return the index at which X is present in the array/list. If X has multiple occurrences in the array/list, then you need to return the index at which the first occurrence of X would be encountered. In case X is not present in the array/list, then return -1.

'Linear search' is a method for finding an element within an array/list. It sequentially checks each element of the array/list until a match is found or the whole array/list has been searched.

Try solving now

2. Product Of Array Except Self

Easy
26m average time
0/40
Asked in companies
FacebookDelhiveryIntuit

You have been given an integer array/list (ARR) of size N. You have to return an array/list PRODUCT such that PRODUCT[i] is equal to the product of all the elements of ARR except ARR[i]

 Note :
Each product can cross the integer limits, so we should take modulo of the operation. 

Take MOD = 10^9 + 7 to always stay in the limits.
Follow up :
Can you try solving the problem in O(1) space?
Try solving now

3. Two Sum

Easy
10m average time
90% success
0/40
Asked in companies
Chegg Inc.FacebookAmazon

You are 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 Target.

Note:

We cannot use the element at a given index twice.

Follow Up:

Try to do this problem in O(N) time complexity. 
Try solving now

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
4 rounds | 3 problems
Interviewed by Qualcomm
1602 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 8 problems
Interviewed by Qualcomm
2263 views
0 comments
0 upvotes
company logo
Associate Engineer
3 rounds | 11 problems
Interviewed by Qualcomm
9878 views
0 comments
0 upvotes
company logo
SDE - 1
2 rounds | 5 problems
Interviewed by Qualcomm
1326 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Application Developer
4 rounds | 11 problems
Interviewed by Oracle
3484 views
0 comments
0 upvotes
company logo
Application Developer
4 rounds | 12 problems
Interviewed by Oracle
1191 views
0 comments
0 upvotes
company logo
Application Developer
4 rounds | 12 problems
Interviewed by Oracle
929 views
0 comments
0 upvotes