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

1. Application software manages the computer’s hardware devices.
2. A control is an object that usually appears in a program’s graphical user interface.
3. Pseudocode is a combination of programming language and machine code.
4. Properties determine the visual appearance of a control.
5. Control names may begin with a letter or a number.
6. Control names may not contain spaces.


1. False
2. True
3. False
4. True
5. False
6. True

Computer Science & Information Technology

You might also like to view...

Analyze the following code:

``` public class Test { public static void main (String args[]) { int i = 0; for (i = 0; i < 10; i++); System.out.println(i + 4); } } ``` a. The program has a compile error because of the semicolon (;) on the for loop line. b. The program compiles despite the semicolon (;) on the for loop line, and displays 4. c. The program compiles despite the semicolon (;) on the for loop line, and displays 14. d. The for loop in this program is same as for (i = 0; i < 10; i++) { }; System.out.println(i + 4);

Computer Science & Information Technology

________ is an event that is triggered after a record is saved

Fill in the blank(s) with correct word

Computer Science & Information Technology

A Mini-PCIe wireless card works in any laptop

Indicate whether the statement is true or false

Computer Science & Information Technology

Wi-Fi networks use CSMA/CA.

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

Computer Science & Information Technology