If 'A' = 10, 'B' = 20, 'C' = 30, what is 'D'? MCQ with Answer and Explanation

If 'A' = 10, 'B' = 20, 'C' = 30, what is 'D'?
A. 60
B. 30
C. 50
D. 40
Answer: Option D
Solution (By JKSSB Mock Tests)
Code = pos * 10. D(4)*10 = 40.

Discuss this Question (0)

No comments yet. Be the first to start the discussion!

Practice More Coding-Decoding Questions

Question #1
If 'A' = 1, 'B' = 3, 'C' = 5, what is 'D'?
A. 7
B. 6
C. 9
D. 8

Correct Answer: Option A


Explanation:
Formula: 2*pos - 1. D(4)*2 - 1 = 7.

This question belongs to: Reasoning Coding-Decoding
Question #2
If 'FLIGHT' is coded as 'ILFGTH', how is 'TICKET' coded?
A. IKTCTE
B. ITCKET
C. ITKTEC
D. ITKCTE

Correct Answer: Option D


Explanation:
The word is split into pairs and each pair is reversed. FL->LF (Wait, FLIGHT -> ILFGTH means FLI -> ILF, GHT -> THG? No, FLIGHT -> ILFGTH. F, L, I -> I, L, F. G, H, T -> T, H, G? No, it's ILF GTH. Reverse first 3, reverse last 3. FLI->ILF, GHT->THG. TICKET -> TIC->CIT, KET->TEK. CITTEK. If option A is ITKCTE, it implies pairs swapped: TI->IT, CK->KC, ET->TE. ITKCTE.)

This question belongs to: Reasoning Coding-Decoding
Question #3
If CAT is coded as 24 and DOG is coded as 26, how will FOX be coded?
A. 50
B. 40
C. 39
D. 45

Correct Answer: Option D


Explanation:
The code is the sum of the alphabetical positions of the letters. C(3) + A(1) + T(20) = 24. D(4) + O(15) + G(7) = 26. F(6) + O(15) + X(24) = 45.

This question belongs to: Reasoning Coding-Decoding