|
Questions 1-4 are based on the following: At a formal dinner for 8, the host and the hostess are seated at opposite ends of a rectangular table, with 3 persons along each side. Each man must be seated next to at least to 1 woman, and vice versa. Alan is opposite to Diana, who is not the hostess. George has a woman on his right and is opposite to a woman. Helga is at the hostess's right, next to Frank. One person is seated between Belinda and Carol. 1.The 8th person present, Eric must be (a) the host (b) seated to Diana's right (c) seated opposite to Carol
(a) a only (b) c only (c) b and c (d) a, b and c 2. If each person is placed directly opposite to his or her spouse, which of the following pairs must be married.
(a) George and Helga (b) Belinda and Frank (c) Carol and Frank (d) George and Belinda 3. Which person is not seated next to a person of the same sex.?
(a) Alan (b) Belinda (c) Carol (d) Diana 4. George is bothered by the cigarette smoke of his neighbor and exchanges seats with the person 4 places to his left. Which of the following must be true following the exchange? (a) No one is seated between two persons of the opposite sex. (b) one side of the table consists entirely of persons of the same sex. (c) Either the host or hostess has changed seats
(a) A only (b) C only (c) A and B (d) B and C Questions 5 - 8 are based on the following: The hotel Miramar has two wings, the east wing and the west wing. Some east wing rooms but not all, have an ocean view. All west wing rooms have a harbor view. The charge for all rooms is identical except for the following. There is an extra charge for all harbor view rooms on or above third floor. There is an extra charge for all ocean view rooms except those without balcony. Some harbor view rooms on the first two floors and some east wing rooms without ocean view have kitchen facilities for which there is an extra charge. Only the ocean view and harbor view rooms have balconies. 5. Which of the following must be true if all conditions are as stated? (a) All rooms above the third floor involves extra charges. (b) No room without an ocean or harbor view or kitchen facilities involves extra charge. (c) There is no extra charge for an east wing room without ocean view. (d) There is no extra charge for any room without Kitchen facilities. 6. which of the following must be false if all conditions are as stated? (a) some ocean viewing rooms do not involve an extra charge (b) all rooms with kitchen facilities involve an extra charge (c) some west viewing rooms above the second floor do not involve an extra charge (d) some harbor viewing rooms do not involve an extra charge
7. A guest may avoid an extra charge by requesting (a) A west wing room on one of the first two floors. (b) A west wing room on the fourth floor without balcony. (c) An East wing room without balcony. (d) Any room without kitchen.
8. Which of the following can not be determined on the basis of the information given? (a) whether there are any rooms without a balcony for which extra charge is imposed (b) whether any room without at kitchen or a view involves an extra charge (c) whether two extra charges are imposed for any room (d) none of the above
Questions 9 to 12 are based on the following: Four cards of different suits are dealt one apiece to A, B, C and D. B says: Mine is not a club. A says: Mine is not a spade. D says: Mine is not a diamond. C says: Mine is not a spade. A says: Mine is not a heart.
9. C held (a) heart (b) clubs (c) diamonds (d) spade 10. D held
(a) heart (b) clubs (c) diamonds (d) spade 11. A held
(a) heart (b) clubs (c) diamonds (d) spade 12. B held
(a) heart (b) clubs (c) diamonds (d) spade 13. What would be the output of the following program. main() { struct emp { char name[20]; int age; float sal; }; struct emp e = {"tiger"}; printf("\n %d %f",e.age,e.sal); }
(a) 0 0.000000 (b) Garbage values (c) Error (d) none of the above 14. What would be the output of the following program. main() { int i=7; printf("%d\n",i++*i++); }
(a) 49 (b) 56 (c) 72 (d) compilation error 15. What will be the value of i & j after the loop is executed? for(i=0,j=0;i<5,j<25;i++,j++)
(a) i=4,j= 24 (b) i=24,j= 24 (c) i=25,j= 25 (d) i=5,j=25
|