Q: Which of the following is/are the right way to declare a method?
(i) function functionName() { function body }
(ii) scope function functionName() { function body }
(iii) method methodName() { method body }
(iv) scope method methodName() { method body }
-
A
Only (ii)
-
B
Only (iv)
-
C
(i) and (ii)
-
D
(iii) and (iv)
C
Answer:
C
Explanation:
In case of public methods, you can forgo explicitly declaring the scope and just declare the method like you would a function.
Related Topic:
Share Above MCQ