What type of encryption algorithm is one-way encryption, which means that it encrypts data, but the data cannot be decrypted?

A. signing
B. symmetric
C. asymmetric
D. hash


Answer: D

Computer Science & Information Technology

You might also like to view...

Suppose the input for number is 9. What is the output from running the following program?

``` import java.util.Scanner; public class Test { public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.print("Enter an integer: "); int number = input.nextInt(); int i; boolean isPrime = true; for (i = 2; i < number && isPrime; i++) { if (number % i == 0) { isPrime = false; } } System.out.println("i is " + i); if (isPrime) System.out.println(number + " is prime"); else System.out.println(number + " is not prime"); } } ``` a. i is 3 followed by 9 is prime b. i is 3 followed by 9 is not prime c. i is 4 followed by 9 is prime d. i is 4 followed by 9 is not prime

Computer Science & Information Technology

A ________ is an annual fee that allows schools or organizations to install multiple copies of a software program on many computers

A) service contract B) site license C) user license D) maintenance agreement

Computer Science & Information Technology

Match the following types of data with the appropriate input masks:

I. Phone number II. Long Time III. Zip Code IV. Short Time V. Social Security Number A. 00:00 B. 000-00-0000 C. 00000-9999 D. !(999 ) 000-0000 E. 99:00:00 >LL

Computer Science & Information Technology

You can add comments to the end of a line of VBA code by placing a(n) comma before the comment. _________________________

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

Computer Science & Information Technology