Home » JAVA Programming » Arrays » Question
  1. Which of these methods must be made static?
    1. delete()
    2. run()
    3. finalize()
    4. main()
    5. None of these
Correct Option: D

main() method must be declared static, main() method is called by Java runtime system before any object of any class exists.



Your comments will be displayed only after manual approval.