Identify the correct way to call a non-static method inside main().
methodName();
this.methodName();
new ClassName().methodName();
ClassName.methodName();
This question is part of this quiz :