Is it possible to call a static method from another static method within the same class?

  • No, it leads to a syntax error.
  • Yes, using the class name.
  • No, static methods cannot call each other.
  • Yes, using the this keyword.
Yes, it is possible to call a static method from another static method within the same class using the class name. Static methods are associated with the class and can be called using the class name to avoid confusion. Option B is correct.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *