Question: In the following Java code, inside the myMethod method, which variables are local variables? Question 4 1 pts In the following Java code, inside the
In the following Java code, inside the myMethod method, which variables are local variables?

Question 4 1 pts In the following Java code, inside the myMethod method, which variables are local variables? public class MyClass { private int a; private int b; public void myMethod(int c) { int d = 5; a += c; b++; OOOO
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
