Difficulty: Medium
Correct Answer: 8251896
Explanation:
Introduction / Context:
Letter–digit substitution with consistency across multiple examples is a staple pattern. We infer the mapping from two given words and reuse it.
Given Data / Assumptions:
Concept / Approach:
Map each letter to its digit based on the examples. From DELHI we get D->7, E->3, L->5, H->4, I->1. From CALCUTTA we get C->8, A->2, L->5, C->8, U->9, T->6, T->6, A->2.
Step-by-Step Solution:
C->8A->2L->5I->1C->8U->9T->6Therefore "CALICUT" becomes 8251896.
Verification / Alternative check:
All letters appear in the mapping derived from the two examples; consistency holds.
Why Other Options Are Wrong:
Common Pitfalls:
Assuming position-based digits or averaging across examples; here the mapping is letter-specific and fixed.
Final Answer:
8251896
Discussion & Comments