2011年4月5日 星期二

HP – Aptitude Test 2


1. HP acquired this company in 2002. Which is the company
a) Compaq b) Dell c) option 3 d) Option4
Ans: a
2. What does 3G denote
a) 3rd generation mobile communication b) 3rd generation computer
languages c) option 3 d) option4
Ans: a
3. An application program that is used by the users to get the inofrmation
from the backend of some
application like databases:
a) application server b)proxy server c)database server d)option 4
Ans: database server
4. Which of the following is not true about the e-mail
a) It can be accessed by a client program using POP
b) It can be accessed by a client program using imap protocol
c) option 3
d) option 4
Ans: I don’t remember the answer but first 2 are true.
C/C++
1 main( )
{
unsigned int i=3;
while( i >=0)
printf( “%d”, i–);
}
how many times will the printf stmt be executed?
a)0 b)3 c)4 d)infinite
Ans: I think the answer is infinite, b’cos ‘i’ is an unsigned integer and it will
not decrement below ’0′
and hence end up in an infinite loop.(yes, i checked and it is getting stuck in
an infinite loop)
2. main( )
{
int x,y, z;
x=2;
y=5;
z= x+++y;
printf(“%d %d %d”, x, y z);
}
a)3 5 7 b)option 2 c)option 3 d)option 4
Ans: a
3 # define swap(a,b) temp=a; a=b; b=temp;
main( )
{
int i, j, temp;
i=5;
j=10;
temp=0;
if( i > j)
swap( i, j );
printf( “%d %d %d”, i, j, temp);
}
Ans: On compiling i got ans 10, 0, 0. I did not understand the concept.
Please expalin this to me.
Java
1) Java was initially code named as:
a)Oak b)green c)miller d)option4
Ans: Oak
2. What is not true about the following statements about java.
a) it is compiled using javac compiler
b) the compiled files have .class extension.
c) such files cannot be transfered from one comp to another.
d) they use the java interpreter
Ans: c
3. Why is the synchronize used?
a) to initialize multiple objects b)to lock an object c)option3 d)option 4
Ans:
 b (probably)

HP – Aptitude Test 1


1. Which of the following involves context switch,
(a) system call
(b) privileged instruction
(c) floating point exception
(d) all the above
(e) none of the above
Ans: (a)
2. In OST, terminal emulation is done in
(a) sessions layer
(b) application layer
(c) presentation layer
(d) transport layer
Ans: (b)
3. For a 25MHz processor , what is the time taken by the instruction which needs 3
clock cycles,
(a)120 nano secs
(b)120 micro secs
(c)75 nano secs
(d)75 micro secs
Ans: (d)
4. For 1 MB memory, the number of address lines required,
(a)11
(b)16
(c)22
(d) 24
Ans. (b)
5. Semaphore is used for
(a) synchronization
(b) dead-lock avoidence
(c) box
(d) none
Ans. (a)
6. Which holds true for the following statement class c: public A, public B
a) 2 member in class A, B should not have same name
b) 2 member in class A, C should not have same name
c) both
d) none
Ans. (a)
7.Preproconia.. does not do which one of the following
(a) macro
(b) conditional compliclation
(c) in type checking
(d) including load file
Ans. (c)
8. Piggy backing is a technique for
a) Flow control
b) Sequence
c) Acknowledgement
d) retransmission
Ans. (c)
9. Find the output for the following C program
i=20,k=0;
for(j=1;j
{k+=j<10?4:3;
}
printf(“%d”, k);
Ans. k=4
10. Find the output for the following C program
int i =10
main()
{int i =20,n;
for(n=0;n<=i;)
{int i=10;
i++;
}
printf(“%d”, i);
Ans. i=20
11. Find the output for the following C program
int x=5;
y= x&y
7.Find the output for the following C program
Y=10;
if( Y++>9 && Y++!=10 && Y++>10)
{printf(“%d”, Y);
else
printf(“%d”, Y);
}
Ans. 13
12. Find the output for the following C program
f=(x>y)?x:y
a) f points to max of x and y
b) f points to min of x and y
c)error
Ans. (a)
13.What does the hexanumber E78 in radix 7.
(a) 12455
(b) 14153
(c) 14256
(d) 13541
(e) 131112
Ans. (d)
14. 10 : 4 seconds :: ? : 6 minutes
Ans. 900