Question: Which is the appropriate code to invoke a method defined below? static string x (double a) { } if (a >=60) { return good; }
Which is the appropriate code to invoke a method defined below? static string x (double a) { } if (a >=60) { return "good"; } else { } return "not good"; O string aString = x(98.8); O string aString = x(); Oint alnt = x(98.8); O None of the above. 4
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
