मराठी

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

प्रश्न

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);
  }
}
लघु उत्तर

उत्तर

  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
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 6: Class as the Basis of all Computation (Objects and Classes) - Review Insight [पृष्ठ ३८०]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
पाठ 6 Class as the Basis of all Computation (Objects and Classes)
Review Insight | Q 5. | पृष्ठ ३८०
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×