Computer Science - Object Oriented Programming Using C++

26.
Variables that are known only to the function in which they are declared are called _____ variables
global
local
main
separate
void
Answer: Option
Explanation:
No answer description is available. Let's discuss.

27.
In the expression p --> val,p is a(n)
address
pointer
structure
header
Answer: Option
Explanation:
No answer description is available. Let's discuss.

28.
In a template function, _____ argument is generic, or parameterized
no
exactly one
at least one
more than one
Answer: Option
Explanation:
No answer description is available. Let's discuss.

29.
Object-oriented programmers primarily focus on _________
procedures to be performed
the step-by-step statements needed to solve a problem
objects and the tasks that must be performed with those objects
the physical orientation of objects within a program
Answer: Option
Explanation:
No answer description is available. Let's discuss.

30.
You define a structure type globally because
you save many lines of code by not rewriting an identical structure definition in each function that uses it
you will never change its definition
it is required in C++
all of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.