DBSS placement papers --------- placement paper 1



DBSS placement papers --------- placement paper 1..

Answer / guest


DBSS Placement Papers | DBSS Interview Procedure | DBSS
Aptitude Questions | DBSS TechniDBSSl Questions | DBSS
Interview Questions


/*
*
* DBSS
*
*/


1)A"s place is 7th from left .B"s position is
9th from the
right.After interchanging their position A"s
position is 11th
from the left.Howmany candidates are there?
19(ans)

2)program:step 1:x=3D0,A=3D0,B=3D1;step2:If
x<10;do step 3 to 6
otherwise go to step 7;step
3:Y=3DA+B;A=3DB,B=3DY;step 4:print Y;
step 5:x is increased by 1
step 6:Go to step 2;
step 7:stop
A)What is the 7"th value of Y that is printed?21
B)After set of instructions is over at step 5 what
is the last
value of X?10
C)When x=3D4 what is the value of Y printed?8
D)suppose step 5 is replased by step:x=3Dx+3 what
would be the last
value of Y printed?5
E)step 1 is changed as x=3D5,A=3D0,B=3D1 what is Y?
ans : 8

3)Logical reasoning
(1)Persons A,B,C,D,E,F are playing cards.
B-- Mother,E--Niece of A,A--Son of B
(complete Qu. is not
known.Answers are correct!)
A)Who is the winner of the game?Ans B(Mother)
B)who are the ladies? B,E
C)second winner in the game? Husband of B
D)who is the niece of A?
ans : B

4)Even if problem is not clear answers are correct(
perfectly)

a)Train overtaking problem from R.S.Agrawal
b)A problem on pipes&cistern
A)fill the tank in 1 hour B)fill the tank in 40
min.
C)C leak the tank at 60lt/hrs
ans:24 min.

5)problem on ages
ans:38,14

6)when 29 is added to a particular number (1/3),
added to (1/4)
particular no?
ans:24

7)Synonyms:placate,sooth,ebullient
;Antonyms:incense,friction,diet

8)3 questions on correction of sentences.

9)odd man out
1)ans 52.5 2)ans 20

DBSS Placement Papers | DBSS Interview Procedure | DBSS
Aptitude Questions | DBSS TechniDBSSl Questions | DBSS
Interview Questions



10)Reasoning: 3 questions.Ex:(1)All cars are
scooters,all
scooters are trucks.
(from R.S.Agrawal

11)In one company women are 40 more than men______.
ans:160

12)5 problems on heights of persons.

13)clock problem 14)Age problem
ans:38,14

14)profit and loss problem

16)mixture problem
ans:1:6

17)a a b a a b a a b a a b a a b.There will be 4
choices
ans:b a a a
3 questions are given with blanks.Clue:3 or 4
letter series
repeats depending on which ans must be selected.

18)compreshion:small paras and 3 questions

19)date of birth problems ans:saturday

20)for one problem ans is 16 2/3

21)pressure vs volume PV=3DK one problem.

22)implicateXreliable

23)A necklace is made of 5 colors of pearls.ans:68


24)ans:compendiom

25)bench,chair,thron,pedastrian,cook odd man out

26)A can do work 2 times faster than B.B can do
100 parts in 40
min.. Howmany parts can A do?Ans:30


************************************************************
******************

DBSS Placement Papers | DBSS Interview Procedure | DBSS
Aptitude Questions | DBSS TechniDBSSl Questions | DBSS
Interview Questions

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More Placement Papers Interview Questions

RAMCO PLACEMENT PAPERS ---- Placement Paper 4

1 Answers   Ramco,


HUGHES PLACEMENT PAPERS

1 Answers   Hughes,


MOTOROLA PLACEMENT PAPERS ---- Placement Paper 1

1 Answers   Motorola,


Geometrics placement papers -------- placement paper 2

1 Answers   Geometric Software,


DIPLOMA IN ELELCTRICAL ENNG

2 Answers   MahaGenco,






Infosys paper may 22nd 2007

21 Answers   Infosys,


SNAPDEAL QUESTIONS 1. A train is going at a speed of 60kmph towards Delhi and returned back at a speed of 30kmph. What is its average speed? ANS : (2*30*60)/(30+60) = 40kmph 2. How many different 4 letter words can be framed that have at least one vowel? ANS : 264 - 214 (total no of 4 digits words – no of words with no vowels) 3. Write an algorithm to find out a number from an array of numbers where only one number occurs once and rest all occurs twice. ANS : XOR all the numbers ,you will get the number with single occurrences . 4. Which among the following have the product of the distance between opposite sides of a regular polygon and it side equals one fourth of the area. A. hexagon B. octagon C. n=16 D. n=18 ANS : n=16.(area of regular polygon = apothem*perimeter/2 Apothem = distance between opposite sides/2 Area = (opp_side_dist * n * a )/4 Product of opp_side_dist and side of reg. polygon = opp_side_dist * a For n= 16 the ration becomes 1:4 5. Which of the following cannot be a relation between two variables? ANS = 4th diagram. 6.what will be the output of this program Void print (int n) { If (n>0) { printf(“hello”); print(n-1); } printf(“world”); } ANS : N times hello followed by N+1 times world. 7. Which among the following cannot be used for future prediction? ANS : 4th Diagram. 8. There are 25 horses. We have to find out the fastest 3 horses In one race maximum 5 horses can run. How many such races are required in minimum to get the result. ANS : 7 races (A. first run all horses = 5 races, eliminate 4th 5th of all races. B. Run horses who came 1st in those 5 races = 1 race , the horse coming first is the fastest Run horses a. 2nd and 3rd with the fastest horse (in first time race A) b. 2nd and 3rd coming horse in B. c. The horse who came 2nd with the horse(who came 2nd in race B) in race A You will have the fastest 3 horses.) 9. In a game of rolling dice you are given 2 dice and you have to roll them. Whatever is the outcome the player will win that many dollars. What should the game owner charge each player (optimum) so that he doesn’t have to bear any loss? ANS : $7 10. We have a function REV(“string”,m,n).This function is capable of reversing the caharacters in the string from mth location to nth location. e.g. REV(“abcd”,2,3) &#61672; the output will be acbd We need to swap a string from a position,e.g. SWAP(“abcdefg”,4) &#61672; output needs to be efgabcd. How can the REV function used do this. ANS : L = string length,N= position given in SWAP function. SWAP(“abcdefg”,4) = REV(REV(REV(“abcdefg”,N+1,L),1,N),1,L).

1 Answers   SnapDeal,


RAMCO PLACEMENT PAPERS ---- Placement Paper 3

1 Answers   Ramco,


US Technology Placement Paper 19 Feb 2007 - Kerala

2 Answers  


syntel placement papers

3 Answers   Syntel,


Placement Paper of HAl [ 26 November Bangalore ]

11 Answers   HAL, Microsoft,


IBM PLACEMENT PAPERS ------ IBM placement Paper 2

1 Answers   IBM,


Categories