InterviewSolution
Saved Bookmarks
| 1. |
How many parameters does the method plot() accept?(a) 6(b) 7(c) 8(d) 9 |
|
Answer» Correct answer is (d) 9 For explanation I would say: Plot() is a generic function, meaning, it has many methods which are called according to the type of object passed to plot(). The method plot() accepts a total of 9 parameters. |
|