InterviewSolution
Saved Bookmarks
| 1. |
Which of these is an instance variable of class httpd?(a) port(b) cache(c) log(d) All of the mentioned |
|
Answer» The correct choice is (d) All of the mentioned To explain: There are 5 instance variables: port, docRoot, log, cache and stopFlag. All of them are private. |
|