| intRate (Line 3) In the method first, the programmer wishes to update the value stored in the variable intRate (Line 3). Which of the following is correct? 01: public class scopeRule 02: { 03: private double intRate = 0.055; 04: private String name; 05: private static int t; 06: public static int main(String[] args) 07: { 08: int first; 09: double u, t; 10: String str; 11: //. . . 12: } 13: public static int first(int x, int y) 14: { 15: double intRate; 16: intRate = x * y; 17: } 18: public double salary; 19: } | | The code is correct. Nothing needs to be done. | | | Update it in the method main (Line 6) | | | Rename the variable on Line 15 to something else. | | | Write another non-static method to do so. | Consider the following class definition. public class Cylinder extends Object { private double height; public Cylinder (double radius, double h) { super(radius); height = h; } public double getRadius() { return super.getRadius(); } public String toString() { return (getRadius() + " " + height); } public double surfaceArea() { return 2 * 3.14 * getRadius() * height; } public double volume() { return 3.14 * getRadius() * getRadius() * height; } } Suppose that you have the following declaration. Cylinder cyl = new Cylinder(1.5, 10); Which of the following statements are valid in Java? | | System.out.print(cyl.surfaceArea); | |