Hi remko ,
I tried , its runnnig .. i made changes ....like putting println statement ...these changes are showing up,
public class VariablesDemo1 {
void methodVerify()
{
System.out.println("method call");
Object oo;
System.out.println("object"+oo);
}
public static void main(
String args[])
{
System.out.println("method call");
VariablesDemo1 vd=new VariablesDemo1();
vd.methodVerify();
}}