Correct Answer: 462
Explanation:
Assume that the number is taken as XYZ.
Condition 1 => Z = sq.root(x) => Possible digits of X is 1,4,9
Condition 2 => Y = X + Z
X Y Z
1 2 1
4 6 2
9 12 3 => (wrong because it is 4 digit.)
and 121 is not divisible by 2
The answer is 462.
Discussion & Comments