A ________ allows the user to enter or modify data in a table

A) query B) form C) caption D) report


B

Computer Science & Information Technology

You might also like to view...

The destructor for a class is called

a. explicitly from the main program b. when the class is instantiated c. when the object of the class goes out of scope d. Only at the end of main

Computer Science & Information Technology

An actual parameter refers to:

A. a parameter in a function call B. a parameter in a function heading C. a parameter that is an actual (literal) value, like the number 3 D. a parameter of a destructor

Computer Science & Information Technology

Suppose that a pointer called start points to the first node in a linked list, and each node is made from a Node struct having an info data member and a next data member. To access info in the first node, we can use the code:

A. ptr->info B. ptr = ptr->info; C. info->start D. start->info

Computer Science & Information Technology

Selectors that begin with _____________ are known as ID selectors—they are applied to objects with the specified ID.

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

Computer Science & Information Technology