CSAT Solved Papers/ 2024/Q75
2024 CSAT — Q75
If means ; means ; means ; means , then what is the value of ? (Operations are to be replaced simultaneously)
Worked rationale
Build the symbol-swap table once, replace every operator simultaneously, then apply normal BODMAS.
| printed | means |
|---|---|
Rewrite symbol-for-symbol:
Now evaluate with real precedence ( before ):
Answer: (d) .
Why the other options miss
- A wrong formula: swaps the operators correctly but then evaluates left to right ignoring BODMAS: mishandled to a positive value.
- B solved the wrong question: applies only some of the substitutions (e.g. leaves as ), so the block is mis-evaluated to cancel the constants.
- C an arithmetic slip: gets the structure but slips the final arithmetic (e.g. partially), landing short.
Specialist insight
Two disciplines decide this item and both are easy to skip under pressure. First, substitute every symbol before computing anything — the word “simultaneously” warns that you cannot resolve operators in reading order. Second, after the swap, BODMAS still governs the new symbols: the and in the rewritten line () bind tighter than the and . A tidy swap table kills the first trap; remembering precedence kills the second. The wrong answers are precisely the values you get by dropping one of these two disciplines.
Swap all operators first (), then obey BODMAS on the rewritten line — left-to-right or partial swaps both mislead.