InterviewSolution
Saved Bookmarks
| 1. |
Which of this method is given parameter via command line arguments?(a) main()(b) recursive() method(c) Any method(d) System defined methods |
|
Answer» Correct option is (a) main() To explain: Only main() method can be given parameters via using command line arguments. |
|