Which of the following uses the same key to encrypt and decrypt the message?

a. Public key encryption
b. Asymmetric encryption
c. Symmetric key encryption
d. RSA encryption


ANS: C

Computer Science & Information Technology

You might also like to view...

A client changing the values of private data members is:

a. Only possible by calling private member functions. b. Possible using public functions and references. c. Never possible. d. Only possible if the private variables are not declared inside the class.

Computer Science & Information Technology

If you type ____ into a new email message, Outlook fills in the email address for you.

A. the second half of an email address B. your contact's initials C. a code associated with a contact's name D. the first few letters of a contact's name

Computer Science & Information Technology

By default, browsers place the background image in the element's ____ corner.

A. upper-left B. lower-left C. upper-right D. lower-right

Computer Science & Information Technology

What is the printout of the following code?

``` #include using namespace std; void f(int &p1, int p2) { p1++; p2++; } int main() { int x1 = 1; int x2 = 1; f(x1, x2); cout << "x1 is " << x1 << " x2 is " << x2; } ``` a. x1 is 2 x2 is 2 b. x1 is 1 x2 is 2 c. x1 is 1 x2 is 1 d. x1 is 2 x2 is 1

Computer Science & Information Technology