M Mr. Dubey π Coach β 104.48K Points π Problem Solving and Python Programming Q. What is the average value of the following Python code snippet? >>>grade1 = 80 >>>grade2 = 90 >>>average = (grade1 + grade2) / 2 (A) 85.0 (B) 85.1 (C) 95.0 (D) 95.1 ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (A) 85.0 Explanation: cause a decimal value of 0 to appear as output.