Find Middle of the Linked List
Given a Singly Linked List, the task is to find the middle of the linked list. If the number of nodes are even, then there would be two middle nodes, so return the second middle node....
read more
Find the two non-repeating elements in an array of repeating elements/ Unique Numbers 2
Given an array arr[] containing 2*N+2 positive numbers, out of which 2*N numbers exist in pairs whereas the other two number occur exactly once and are distinct. Find the other two numbers. Return in increasing order....
read more
Qualcomm Interview Experience
Hi everyone. Today I’m going to share Qualcomm interview experience for the role of Software Engineer. I hope it’ll surely help you to prepare well for the next interview. So without further ado let’s get started....
read more
Qualcomm Interview Experience (On-Campus) 2023
Round 1:Online Assessment: It consists of 3 sections each section having 20 questions of multiple choice. The first section was based on Quantitative Aptitude, Logical Reasoning & Data Interpretation. Sections 2 and 3 were based on c programming output, operating system, digital and data structures, and algorithm....
read more
Python Program For Sorting An Array Of 0s, 1s and 2s
Given an array A[] consisting 0s, 1s and 2s. The task is to write a function that sorts the given array. The functions should put all 0s first, then all 1s and all 2s in last.Examples:...
read more
Shortest distance between two nodes in BST
Given a Binary Search Tree and two keys in it. Find the distance between two nodes with given two keys. It may be assumed that both keys exist in BST....
read more
Swap two nibbles in a byte
A nibble is a four-bit aggregation or half an octet. There are two nibbles in a byte. Given a byte, swap the two nibbles in it. For example, 100 is represented as 01100100 in a byte (or 8 bits). The two nibbles are (0110) and (0100). If we swap the two nibbles, we get 01000110 which is 70 in decimal....
read more
Count number of bits to be flipped to convert A to B
Given two numbers A and B. Write a program to count the number of bits needed to be flipped to convert A to B....
read more
Qualcomm Interview Experience for WiFi SW Developer (2 years Exp)
Embarking on the journey of WiFi software development at Qualcomm, a prominent technological powerhouse, is both exhilarating and demanding. The interview process for the role of WiFi Software Developer at Qualcomm requires an intricate grasp of wireless technologies, adept coding skills, and a flair for creative problem-solving. In this article, I will recount my personal encounter with the Qualcomm WiFi Software Developer interview, offering insights and advice for those aspiring to tread a similar path....
read more
Qualcomm Interview Experience (July 2020 – Virtual)
Written Round: The time duration for this round was 1.5 hours, Platform was HirePro. After clearing this round there are 3 sections....
read more
Java Program For Sorting An Array Of 0s, 1s and 2s
Given an array A[] consisting 0s, 1s and 2s. The task is to write a function that sorts the given array. The functions should put all 0s first, then all 1s and all 2s in last.Examples:...
read more
Java Program For Finding The Middle Element Of A Given Linked List
Given a Singly linked list, find the middle of the linked list. If there are even nodes, then there would be two middle nodes, we need to print the second middle element....
read more