InterviewSolution
Saved Bookmarks
| 1. |
Perform these Mathematical Task on a Spreadsheet 1. To find the product of first five odd numbers |
|
Answer» The PRODUCT of two or more numbers is calculated by multiplying them.The first FIVE odd numbers are 1, 3, 5, 7, 9.So the product of these numbers…X = 1*3*5*7*9X = 945 |
|