InterviewSolution
Saved Bookmarks
| 1. |
Write the next three natural numbers after `10999`. |
|
Answer» the next 3 natural numbers after 10999 are `10999+1= 11000` `10999+2=11000+1 =11001` `10999+3=11000+2 = 11002` answer |
|