i want to know the procedure of qualcomm for getting a job
through offcampus



i want to know the procedure of qualcomm for getting a job through offcampus..

Answer / Roshi Gupta

To find the procedure for applying for a job at Qualcomm off-campus, you can visit their careers page (https://www.qualcomm.com/careers). From there, you can search for open positions and follow the application instructions provided.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

What is the difference between the expression “++a” and “a++”?

1 Answers  


What is the difference between the local variable and global variable in c?

1 Answers  


What is the difference between exit() and _exit()?

2 Answers  


how to write a cprogram yo get output in the form * *** ***** ******* ********* ******* ***** *** *

3 Answers  


24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?

2 Answers  


what is the use of bitfields & where do we use them?

2 Answers  


why division operator not work in case of float constant?

2 Answers  


void main() { int s[4][2]={ {1234,56},{1212,33},{1434,80},{1312,78} }; int (*p)[2]; int i,j,*pint; for(i=0;i<=3;i++) { p=&s[i]; pint=p; printf("\n"); for(j=0;j<=1;j++) printf("%d",*(pint+j)); } } while running this program it shows a warning-suspicious pointer conversion ie pint=p; my que is why should we assign the value of p to pint again.why cant we use it directly as *(p+j)..but if i use like tat the o/p is garbage value..

1 Answers  


Program to simulate second clock

2 Answers  


What is #ifdef ? What is its application?

1 Answers   TCS,


Why does not use getgh(); and <conio.h> in c language.

3 Answers   Elofic,


Write a function in c to find the area of a triangle whose length of three sides is given.

2 Answers  


Categories