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
two one one
Compilation Error
one Exception
one one two

ANSWER DOWNLOAD EXAMIANS APP