Placement Papers: VIRTUSAPlacement Paper9 2003Hyderabad

Glide to success with Doorsteptutor material for competitive exams : get questions, notes, tests, video lectures and more- for all subjects of your exam.

Pattern: (No multiple choice Qns)

4 Sections.

  1. Analytical Reasoning (12 qns.) == == == == == == == == == == == == == == == == (we have to write reasons for the answer.) (I don՚t remember exactly what they had given. I am putting it in my own words)
    1. x1 peach + y1 plum = z1 apple x2 peach + y2 plum = z2 apple (x1, y1 ________ z2 are integer values) How many peaches make one apple?
    2. 100, 100, 102, 106,112, 120, ________
    3. which is greater? Product of all Bradman՚s first class scores or Sum of all test scores of Sachin.
    4. U r provided with 500ml and 300ml jar (it has no markings) .
      1. u have to measure exactly 100ml.
      2. u have to measure exactly 200ml.
    5. Using four 4՚s u have to make 1 … 10 (for eg. 1 = () . ⚹ () 2 = ? 10 = ?)
    6. student, canopy, thirst, Are the words given. u have to group the words using the following words
      1. Master
      2. Teacher
      3. Deft
    7. etc. (i don՚t remember some of words) .
    8. U have to cut a Pizza using 7st . Lines (wit out rearranging) and u have to obtain maximum number of pieces (Give generalised solution.) .
    9. U have to cut a Cylindrical cake of diameter 32 cm and height 20 cm in to 12 equal pieces.
    10. In a village there r 2 groups.
      1. Knight ⇾ always tell true
      2. Knave ⇾ always tell false
    11. Mr. X met a man of that village (u don՚t which grp he belongs) and questioned “Tell me whether u r knight or knave?”
    12. Reply: “i cannot tell u and left that place”
    13. Find which grp that man belongs to?
    14. obtain 277 from 3, 25, 50,65, 100. Use 4 arithmetic operations only.
    15. 1#2 = x, 2#3 = y, 4#4 = z 4@14 = a, 5@15 = b, d@e = f (i don՚t remember values for x, y, z, a, b, c, d, e, f) find (2#4) @5 = ?
    16. (i don՚t remember what they had given.)
  2. It is just example for that question.
  3. CODE is encoded as DGBF
  4. READ is encoded as JHNV
  5. Fins “KOVAI”
  6. Essay (General) . == == == == == == == == == (Topic given: India should spend money on Atom bomb and Rocket OR for the welfare of poor.)
  7. Problem solving. == == == == == == == == == = (Problem statement: How will u determine number of Petrol bunks in Madras.)
  8. Programming (4 Qns) . == == == == == == == = (we can use any Programming Language for coding)
    1. They had given one function, we have to find it what it does and also problem in the fn. And how to overcome it. Double what (double z, int y) {double answer; while (y > 0) {if (y % 2 == 1) answer = answer ⚹ z; y = y/2; z = z ⚹ z;} return answer;}
    2. They had given one Pseudocode. We have to find bug in the pseudocode. I don՚t remeber the pseudocode fully. But the function of pseudocode is “To make a Robot to fetch a tumbler of water”
    3. write a program to print all Armstrong numbers (abc = a3 + b3 + c3) , (for eg. 153 = 13 + 53 + 33)
    4. write a function witj the following conditions
      1. It should have one integer parameter.
      2. If the value passed is-ve, return-1.
      3. If the value passed is a perfect square, return root of that number.
      4. If the value passed is a not a perfect square, return that number itself.