One of the motivations for the creation of ____ languages was the development of graphical screens and support for graphical user interfaces (GUIs) capable of displaying multiple windows containing both graphical shapes and text.

A. object-oriented
B. procedural
C. high-level
D. low-level


Answer: A

Computer Science & Information Technology

You might also like to view...

Given the class definition:

class CreateDestroy { public: CreateDestroy() { cout << "constructor called, "; } ~CreateDestroy() { cout << "destructor called, "; } }; What will the following program output? int main() { CreateDestroy c1; CreateDestroy c2; return 0; } a. constructor called, destructor called, constructor called, destructor called, b. constructor called, destructor called, c. constructor called, constructor called, d. constructor called, constructor called, destructor called, destructor called,

Computer Science & Information Technology

In Project 2013, ________ a task moves a task to the right in the Entry table and makes it a lower level task in a WBS

Fill in the blank(s) with correct word

Computer Science & Information Technology

The Text property of a TextBox object cannot be blank in a Web form.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

The method to make a couple of rows ALWAYS visible when you scroll the spreadsheet down is called

a. Text-to-Columns b. Freeze Panes c. Cosolidation d. Freeze Text

Computer Science & Information Technology