ICSE Class 10 Computer Applications
Question 31 of 43
User-Defined Methods — Question 31
Back to all questions 31
Question Question 29
A static class method can be invoked by simply using the name of the method alone. (True/False)
False
Reason — A method declared as static can be invoked by using the syntax <class name>.<method name>. For example, in Math.pow() function, Math is the name of the class and pow() is its static function.