The process of calling a method's name and using the method to perform a job for a class is also known by what term?
A. instantiating the method
B. overloading the method
C. inheriting the method
D. invoking the method
Answer: D
Computer Science & Information Technology
You might also like to view...
What is the most common port used when connecting an Internet Explorer browser to a proxy server for use with HTTP connections?
A. 53 B. 80 C. 443 D. 21
Computer Science & Information Technology
What is the value of ANSWER after the instructions corresponding to the following pseudocode are executed?
``` COUNT = 0 SUM = 100 DOUNTIL COUNT ? 5 SUM = SUM + 5 COUNT = COUNT +1 ENDDO ANSWER = SUM ``` a) 5 b) 100 c) 105 d) 125
Computer Science & Information Technology