- A 0 false 0
- B 0 true 0
- C Compile error - static variable must be initialized before use.
- D None of these
Java Programming Language MCQ Java Data Types and Variables - MCQ
⚠ Report ✓ Question Verified Copy Link
class A{
int k;
boolean istrue;
static int p;
public void printValue(){
System.out.print(k);
System.out.print(istrue);
System.out.print(p);
}
}
public class Test{
public static void main(String argv[]){
A a = new A();
a.printValue();
}
}
Learn More MCQ Questions from Java Programming Language MCQ Java Data Types and Variables - MCQ