Hi Manish,
Print the statement("Hello") inside a static block of code. Static blocks get executed when the class gets loaded into the memory and even before the creation of an object. Hence it will be executed before the main() method. And it will be executed only once.
A static method should not refer to instance variables without creating an instance and cannot use "this" operator to refer the instance.
Thanks