CAT 1993 — QA Question 37
MiscellaneousEasy
Passage / Data
The following functions have been defined for three numbers A, B and C:
@ (A, B) = average of A and B
*(A, B) = product of A and B
/(A, B) = A divided by B
Answer these questions with the above data.
The sum of A and B is given by
Answer & solution
Correct answer: *(@(A, B), 2)
*(@(A, B), 2)
- B
/(@(A, B), 2)
- C
@(*(A, B), 2)
- D
@(/(A, B), 2)
Solution
A + B = 2((A + B)/2) = 2(@(A, B)) = *(@(A, B), 2).
Hence, option (a).
Related Miscellaneous questions
- 139 persons have signed up for an elimination tournament. All players are to be …
- There are ten 50 paise coins placed on a table. Six of these show tails, four sh…
- If A = 2 and B = 4, the value of @(/(*(A, B), B), A) would be…
- The sum of A, B, and C is given by…