When the function terminates, its memory space is ____.

A. allocated
B. recycled
C. left intact
D. deallocated


Answer: D

Computer Science & Information Technology

You might also like to view...

You should assign a ____ name to each of the controls in a program, because doing so will help you keep track of the various objects included in the interface.

A. meaningful B. common C. long D. short

Computer Science & Information Technology

Typically, one does not optimize a program (make it run faster or with less use of memory) until after it is running, well-debugged, and well-tested. (Of course, you still have to test again after each optimizing modification.) Here is an optimization that we could make to the adventure game. Currently, showRoom compares the room variable to each possible room—even if it matched earlier. Python gives us a way of only testing once, by using an elif instead of later if statements. The statement elif means “else if.” You only test the elif statement if the earlier if was false. You may have as many elif statements as you like after an if. You might use it like this:

``` if (room == ‘‘Porch’’): showPorch() elif (room == ‘‘Kitchen’’): showKitchen() ```

Computer Science & Information Technology

To reopen a saved Visual Basic Web application, open Visual Studio, click ____________________ on the File menu, and browse to the main project folder to open the Web site.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Which of the following illustrations is a predesigned diagram made up of shapes containing text that illustrate a concept or idea?

A. Picture B. Clip Art C. SmartArt D. Screenshot

Computer Science & Information Technology