intel Candidate-Experiences intel general aptitude questions |   13904

intel Candidate-Experiences intel general aptitude questions

                                                    INTEL Exam Paper

Intel General aptitude questions ,system concepts questions with answers

Section I - General Aptitude

1. Four persons picking balls. Peter one more than paul. Pam one more than pat.
Peter + Paul +Pam + Pat = 60;
Peter + Paul = Pam + Pat + 10.
How much Peter pick?
Ans: 18

2. Semi-circle of Radius 12cm. Can a Rectangle of 12cm length & 6cm width be fit in the semi-circle?

3. Two series Questions? 
a. 11
b. 12
c. 14
d. 17
e. 21 (ans)

4. Complete: 5, 25, 61,113, 181, 265 ( iIm not sure about the exact numbers in 4th qn.)

5. To join 3 tables how many joints are required?

6. Wolf is called as flow, 8256 is called as?

7. 64, 54, 42, 31, 20 find the odd man out?

8. Seven members are there in a meeting. Each should handshake only once with all others. Find the total number of handshakes?

9. if 3 monkeys take 7 minutes to eat 3 bananas, what time will 10 monkeys take to eat 10 bananas? ans: 7 minutes.

10.what time is it now? the no. of minutes from midnight to now is 9 times the no. of minutes from now to noon . i think 10.53 am or 10.47 am (juzcheck)

Section II -  System Concepts 

Questions from paging were asked..

1. 8085 architecture:

2. Memory space depends on

3. Which is context free language?

4. Hit ratio calculation in OS?

5. 2 frames

6. what are the two pages in the frames when replacement method is used?

7. What is Zombie Process?

Section III - Programming

Questions on loops in C, Data structures and RDBMS were asked.

1. which is better? 1st or 2nd or 3rd normal form or Boyce codd normal form?

2. which is not a command in sql? drop, delete, create, insert.?

3. Class A
{
fn to print ‘A’;
}
Class B {virtual fn to print ‘B’ }
Class C {fn to print ‘C’}

a ptr object is created for class C, what will be printed? just check out that virtual fns concept in C++

4. Efficiency of sorting bubble, merge & memory efficiency for both best & worst case?

5. Which is memory inefficient? Quick, merge, bubble.

6. Worst case for merge sorting? n log n, n2, n-1

7. which is correct or which will swap nos.. I think this is the qns..one of the choices were.:
a^=b^=a^=b (in C)

8. i= 20;
j= 50;
printf(“%d”, sizeof(i+j));

9. which takes less time to execute.? ordinary functions or recursive funs.I think its recursive since stack winding and unwinding is there.

10.how much memory will be allocated to this union:
union a
{
char b;
int no:2; (bit field)
}

11. what is the argc value?
C:\ sample.exe val1 val2 val3
ans: 4

12. one qn about ptr to funciton :
how will a ptr to a ptr to a fun will be declared
void *(*ptr[]));
void *ptr[];
void (**ptr[]);

feedback