When a method resides entirely within another method, and can only be called from within the containing method, what is the method known as?
A. It is a local function.
B. It is a client function.
C. It is a parent function.
D. It is a scope function.
Answer: A
Computer Science & Information Technology
You might also like to view...
A way of navigating a long document is to click the heading or subheading in a ________ of contents
Fill in the blank(s) with correct word
Computer Science & Information Technology
What is x after the following statements? int x = 2; int y = 1; x *= y + 1;
a. x is 1. b. x is 2. c. x is 3. d. x is 4.
Computer Science & Information Technology