The input type ____ is used to create a push button.

A. push
B. button
C. submit
D. script


Answer: B

Computer Science & Information Technology

You might also like to view...

Assume that myCar is an instance of the Car class and that the Car class has a member function named accelerate. Which of the following is a valid call to the accelerate member function?

a. Car -> accelerate(); b. myCar::accelerate(); c. myCar.accelerate(); d. myCar:accelerate(); e. None of these

Computer Science & Information Technology

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

1. The if, while and for statements control only one statement. 2. Given the declaration ``` int x = 0; ``` The following expression causes a divide by zero error: ``` (x !=0) || (2/x < 1); ``` 3. Suppose we have these declarations, ``` int x = -1, y = 0, z = 1; {/code This Boolean expression is correct and it does what the programmer intends. ``` x < y < z ``` 4. You want to determine whether time has run out. The following code correctly implements this. ``` !time > limit ``` 5. The value of count is 0; limit is 10. Evaluate: ``` (count == 0)&&(limit < 20) ```

Computer Science & Information Technology

The Show Formulas button in located in the:

A) Show group on the VIEW tab. B) Formula Auditing group on the VIEW tab. C) Show group on the FORMULAS tab. D) Formula Auditing group on the FORMULAS tab.

Computer Science & Information Technology

New tables created with the make-table query retain the field ____ of the underlying table(s).

A. data type B. validation rule C. format D. lookup properties

Computer Science & Information Technology