Given the following task, which would be the most appropriate method heading? A method receives three whole
Question:
Given the following task, which would be the most appropriate method heading?
A method receives three whole numbers as input. The values represent grades. They should be unchangeable in the method. The method should return the average with a fractional component.
a. static double DetermineGrade(int grade1, int grade2, int grade3)
b. static int DetermineGrade(int grade1, int grade2, int grade3)
c. static int int int DetermineGrade(double finalAverage)
d. static double DetermineGrade(ref int grade1, ref int grade2, ref int grade3)
e. static void DetermineGrade( )
Fantastic news! We've Found the answer you've been seeking!
Step by Step Answer:
Related Book For
C# Programming From Problem Analysis To Program Design
ISBN: 9781285096261
4th Edition
Authors: Barbara Doyle
Question Posted: