JAVA Constructors and Methods
The finalize() method is called just prior to

A variable goes out of scope.
An object, variable or method goes out of scope.
Before garbage collection.
An object or variable goes out of scope.
None of these

ANSWER DOWNLOAD EXAMIANS APP

JAVA Constructors and Methods
class MyClass{      MyClass(){            System.out.print("one");      }      public void myMethod(){            this();            System.out.print("two");      }} public class TestClass{      public static void main(String args[]){            MyClass obj = new MyClass();            obj.myMethod();      }}

None of these
Compilation Error
two one one
one one two
one Exception

ANSWER DOWNLOAD EXAMIANS APP