Concept:Each letter is replaced by a fixed single-digit code obtained from the two given examples.Explanation:From ENGLAND = 1234526 and FRANCE = 785291, the code for each letter is found by comparing positions.
Letter
E
N
G
L
A
N
D
F
R
C
Code
1
2
3
4
5
2
6
7
8
9
From this mapping, we get G=3, R=8, E=1, and C=9.Therefore, the code for GREECE is formed by writing these codes in order.
G
R
E
E
C
E
3
8
1
1
9
1
So GREECE is written as 381191.Answer:GREECE = 381191, hence the correct option is A. 381191.