Open In App

Qualcomm Interview Experience For SWE (On-Campus) 2023

Current Status: Postgrad student at IIT Hyderabad

Company: Qualcomm



Work Experience: 1 year of experience working at Oracle Financial Services Software(OFSS)

Position: Software Engineer (SWE) – Full Time



Job Location: Hyderabad/Bangalore, India

Interview Date: 1st December, 2023

Offer Status: Accepted

Selection Process: Online Assessment + 2 Technical Interview + 1 HR Interview

Round 1 – Online Assessment (90mins)

This round was conducted on the HirePro platform on 17th November, 2023. The test had a total of 3 sections and the duration for the test was 90 mins and 60 questions in total.

Section 1 – Aptitude

Section 2 – Programming MCQs

Section 3 – Technical Section (Computer Science Fundamentals & OOPS)

All the questions had negative markings. The marking scheme was +1 for the correct answer and -0.25 for the incorrect answer. The section will be switched automatically to the next section when the section timer times out.

Round 2 – Technical Interview (50-55mins)




#include <iostream>
using namespace std;
 
int reverseBitStream(int n)
{
    int res = 0;
    while (n > 0) {
        res <<= 1;
        res |= (n & 1);
        n >>= 1;
    }
    return res;
}
 
int main()
{
    int res = reverseBitStream(11);
    cout << "res = " << res << endl;
    return 0;
}

Output
res = 13

Round 3 – Technical Interview (~1 hour)




#include <stdio.h>
 
int main()
{
    int a = 5, b = 6;
    int *p = &a, *q = &b, **pp = &p;
    *p += *q;
    *q += *p;
    **pp += *q;
    printf("%d %d %d %d %d", a, b, *p, *q, **pp);
    return 0;
}

Output
28 17 28 17 28

Round 4 – HR Interview (10 mins)

Verdict: I was selected for the Software Engineer role at Qualcomm along with 7 other people. It was a proud moment for me as I got placed on campus on the 1st slot of the 1st day.

TIP: Study Operating Systems, Threading, C/C++, Pointers, Structures & Unions and of course your Resume very thoroughly. Be confident during the interview and think out loud, your interviewer should know how you approach the problem. This not only helps him understand your thought process but eventually helps you in case you proceed in the wrong direction, as he may give you hints and may correct you.


Article Tags :