The type of procedure that executes instructions and accepts input values, but does not return a value and cannot be used in expressions, is a(n) ____ procedure.
A. Function
B. Sub
C. Reference
D. Comment
Answer: B
You might also like to view...
From the above code - which function call sets the size to 19?
``` class Television { private: int size, model; string make; public: Television() {size= 27; model = 2; make = “RCA”;} void SetSize(int s){size = s;} void SetModel(int mo){model = mo;} void SetMake(string ma){make = ma;} }; int main() { Television TV; return 0; } ``` A. TV.setSize(19); B. TV.SetSize(19.5); C. TV.SetSize(19); D. TV.size is a private variable, it cannot be set this way.
The ____ name is a name that identifies a Web site and is chosen by the site owner.
A. protocol B. machine C. domain D. Web site
The acronym, TOC, is an abbreviation for the phrase:
A) Title or Contents. B) Table of Citations. C) Table of Contents. D) Table of Comments.
____________________ occurs when a company physically hosts its server(s) in a data center that is managed by a third party.
Fill in the blank(s) with the appropriate word(s).