The markup language that communicates color and graphics in a format that all computers can understand

a. Internet Explorer
b. Hypertext Markup Lanaguage
c. Rich Text format


B

Computer Science & Information Technology

You might also like to view...

The output of this program will be:

``` public class Test { public static void main(String[] args) { int[] a; a = new int[10]; for (int i = 0; i < a.length; i++) { a[i] = i + 2; } for (int i = 0; i < a.length; i++) { result += a[i]; } System.out.printf("Result is: %d%n", result); } } ``` a. Result is: 62. b. Result is: 64. c. Result is: 65. d. Result is: 67.

Computer Science & Information Technology

Given the following structure decaration, Employee is

``` struct Employee { string name; int idNum; }; ``` a. a member b. an array c. a tag d. None of these

Computer Science & Information Technology

Which of the following is an example of a field which should not have duplicate data?

A) Primary key B) City C) State D) Lastname

Computer Science & Information Technology

A security administrator must implement a wireless encryption system to secure mobile devices' communication. Some users have mobile devices which only support 56-bit encryption. Which of the following wireless encryption methods should be implemented?

A. RC4 B. AES C. MD5 D. TKIP

Computer Science & Information Technology