InterviewSolution
Saved Bookmarks
| 1. |
Suggest the appropriate function for the following situations:1. Selecting the maximum value out of a range A1 to B20.2. Calculating average of marks entered in cells E5, F5, G5, H5 and 15.3. Determining whether the student has passed (if scored > = 40) or not from the marks stored in cell J10. |
|
Answer» 1. = MAX(A1 : B20) 2. = AVG(E5:15) 3. =IF(J10 >= 40, “Pass”, “Fail”) |
|