The basic security concepts critical to information on the internet are authentication, authorization, and non-repudiation; those related to the persons accessing information are confidentiality, integrity, and availability.

a. true
b. false


Answer: b. false

Computer Science & Information Technology

You might also like to view...

Which of the following statements is true?

Consider the classes below: ``` public class TestA { public static void main(String[] args) { int x = 2; int y = 20 int counter = 0; for (int j = y % x; j < 100; j += (y / x)) { counter++; } } } public class TestB { public static void main(String[] args) { int counter = 0; for (int j = 10; j > 0; --j) { ++counter; } } } ``` a. The value of counter will be different at the end of each for loop for each class. b. The value of j will be the same for each loop for all iterations c. Both (a) and (b) are true. d. Neither (a) nor (b) is true.

Computer Science & Information Technology

The term ____________________ refers to a period of activity when a PHP script stores state information on a Web server.

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

Computer Science & Information Technology

Fonts, colors, and cell styles are organized in _____ categories.

A. theme and non-theme B. numbers and text C. color and black and white D. form and function

Computer Science & Information Technology

Each packet/datagram contains a source port and destination port.

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

Computer Science & Information Technology