English

In the program given below, state the name and the value of the i. method argument or argument variable ii. class variable iii. local variable iv. instance variable - Computer Applications

Advertisements
Advertisements

Question

In the program given below, state the name and the value of the

  1. method argument or argument variable
  2. class variable
  3. local variable
  4. instance variable
class myClass
{
static int x = 7;
int y = 2;
public static void main(String args[])
  {
  myClass obj = new myClass();
  System.out.println(x);
  obj.sampleMethod(5);
  int a = 6;
  System.out.println(a);
  }
void sampleMethod(int n)
  {
  System.out.println(n);
  System.out.println(y);
  }
}
Short Answer

Solution

  1. Method argument or argument variable n with value 5.
  2. Class variables: x with value 7.
  3. Local variable: a with value 6.
  4. Instance variable: y with value 2. 
shaalaa.com
  Is there an error in this question or solution?
Chapter 6: Class as the Basis of all Computation (Objects and Classes) - Review Insight [Page 380]

APPEARS IN

Avichal Computer Applications [English] Class 10 ICSE
Chapter 6 Class as the Basis of all Computation (Objects and Classes)
Review Insight | Q 5. | Page 380
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×