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

Computer Science & Information Technology

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.

Computer Science & Information Technology

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

Computer Science & Information Technology

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.

Computer Science & Information Technology

____________________ 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).

Computer Science & Information Technology