Check your answer:- See Solution
In this kind of questions we have to find some pattern to get to the answer, we can see that getting first two digit and second two digits are easy, most difficult part in this question is to get last two digits.
First two digit = <first_number> * <second_number>
Similarly Second two digits = <first_number> * <third_number>
Now the most tricky part is to get last two digits, if you observe claverly
Last two digits = <first_two_digits> + <second_two_digits> – <third_number> and reverse them.
Thus the answer to this number puzzle is 366329.
Facebook Comments
rahul says
Here you go, sam..
consider given three numbers as a,b,c
and apply
[(a*b)+(a*c)-c]
and see the answer..I hope you’ll get the number easily. 🙂
Sam says
How