Computer Science - Object Oriented Programming Using C++

21.
The items listed in the function header are called _____
actual arguments
formal parameters
passed parameters
sent arguments
Answer: Option
Explanation:
No answer description is available. Let's discuss.

22.
A translator that notes whether you have used a language correctly may be called a _____
theasurus
compiler
coder
decoder
Answer: Option
Explanation:
No answer description is available. Let's discuss.

23.
The feature in object-oriented programming that allows the same operation to be carried out differently, depending on the object, is_____
inheritance
polymorphism
overfunctioning
overriding
Answer: Option
Explanation:
No answer description is available. Let's discuss.

24.
When an argument is passed by reference,
a variable is created in the function to hold the argument's value
the function cannot access the argument's value
a temporary variable is created in the calling program to hold the argument's value
the function accesses the argument's original value in the calling program
None of the above
Answer: Option
Explanation:
No answer description is available. Let's discuss.

25.
The process of extracting the relevant attributes of an object is known as
polymorphism
inheritance
abstraction
data hiding
Answer: Option
Explanation:
Abstraction is the process of extracting the relevant properties of an object while ignoring nonessential details. The extracted properties define a view of the object.