Search This Blog

Friday 6 January 2012

Latest Robert Bosh Placement Paper 2011

Robert BoschPlacement Paper  2011:-

1)A student was performing an arithmetic operation and he multiplied a number by 3/2 instead of dividing it by 2/3 ...what was its error percentage..??
sol: 0%

2) Probability:
       a radioactive element disintegrates by 20 th part every hour and find the probability that no matter is left out in a duration of 45 min...??
sol: since it deals with radioactive element 'n' is usually large..so poissons distribution is to be applied...
    1hr=60min----------20
           45min----------?
                (45*20)/(60)=15..
   Hence lamba=15
      P(x=0)= (e-15)*(150)/(0!)
                 =(e-15)

3) If side of the square is x+2 and side of equilateral triangle is 2x and the perimeters of both square and equilateral triangle are equal ...then find the value of x..??
sol: 4*(x+2)=(3*2x)
     i.e; x=4

4) if side of the square of increased by 5 and change in area was 165 then find the value of side of the square...??
sol: (x+5)2-x2=165
      10x+25=165
      10x=140
         x=14

5) What is the name of the Command used to partition the disk
ANS: fdisk
Sol: When you run the fdisk and format commands, the Master Boot Record (MBR) and file allocation tables are created. The MBR and file allocation tables store the necessary disk geometry that allows hard disk to accept, store, and retrieve data

6)A question from MS-DOS
ans)msconfig.exe

7) A quesion is on paging(Memory management)
Formulae: Effective access time=((1-p)*m+(p*s))
where (1-p) is called hit ratio, p is called page fault ratio, 'm' is called main memory access time, 's' is called pagefault service time.

8) The header file that is included to use manipulators is

9) Which data structure is easier to implement the trees...???
sol: Linked Lists..

10)Function used to display the character on the console is ..??
sol: PUT

11) No of nodes in a perfect Binary tree is..??
sol: (2*n-1)

12) No of queues needed to implement the priority queue..??
ans:two
sol: Priority queue uses two queues
1) for storing the data
2) other for storing the priorities.

13)Heterogeneous Linked List is implemented using...???
sol: void pointers

14) a variable used to store the address of another variable is termed as..??
sol: Pointer..

15) #include
void main()
{
int i = 15;
int const  &j  = i;
cout << i << j << endl;
i = 9;
cout << i << j << endl
}
ANS:
15 15
9 9

16) Virtual Memory consist of main memory and ...???
sol: Swap files

17) Which class addressing system has less no of hosts...???
sol: class D(not sure)

18) Which of the following is a network layer protocol
a) TELNET  b) FTP. c)smtp d)none
sol: telnet

19) many questions on computer networks....( around 10 questions....i left all of them)

Prepare 'top down approach' - ross and kurose for computer networks...it would be helpful..

b) Quantitative:

20) a man sells an article with a 20% discount and gain a profit of 20%...what would be the profit percentage if he sells it with 10% discount...??
sol; 35(not sure)

21)sum of the infinite terms in a gp is 230 and sum of squares is 23 ...find the common ratio.
sol: 10/13

22) fourth term of an ap is 200 and first term is 5 find the tenth term...??

23) if S+2R=220 and S=80 then R=.???
sol: 70

24) if 25% of x=y then 67.5% of x in terms of y is...
sol: 100/y2 (not sure)

25)#include.
main()
{
int const *p = 10;
printf(“%d”, ++(*p));
}
Ans: Compilation Error
sol: Constant cant be modified.

26) .main()
{
int I;
char *a = “man”;
for(i=0;i<3;i++)
printf(“%c%c%c%c\n”,i[a],a[i],*(a+i),*(i+a));
}
ans: mmmm
       aaaa
       nnnn

27)main()
{
extern int i = 10;
printf(“%d”,i);
}
Ans: Compiler error   

28)main()
{
float f= 1.1;
double d = 1.1;
if ( f == d)
printf(“I LOVE U”);
else
printf(“I HATE U”);
}
Ans: I HATE U
Sol: Due to precision Considerations ...

No comments:

Post a Comment