Multiple choice What is the correct way to access the static methods declared within the class? Static methods can be accessed using the class name. Static methods can be accessed directly by writing the method name. Static methods can be accessed using objects of the class, where the static method is defined. Static methods can be accessed using “this”. Reveal answer Fill a bubble to check yourself A Correct answer Explanation Static methods can be accessed using the class name. Syntax: Classname.Static_method();