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();      }}

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

ANSWER DOWNLOAD EXAMIANS APP