InterviewSolution
Saved Bookmarks
| 1. |
The number of possible pairs of successive prime numbers, such that each of them is greater than 40 and their sum is utmost 100, isA. 3B. 2C. 4D. 1 |
|
Answer» Correct Answer - a (i) Write primes as per the given conditions (ii) Assume the prime numbers as x, y (iii) find the possible values of x and y such that `x + y lt 100`, where `x gt y gt 40` |
|