A
Q. What is the average value of the following Python code snippet?
Code:
>>>grade1 = 80
>>>grade2 = 90
>>>average = (grade1 + grade2) / 2
>>>grade2 = 90
>>>average = (grade1 + grade2) / 2
- Correct Answer - Option(A)
- Views: 26
- Filed under category Python
- Hashtags:
Discusssion
Login to discuss.