Which of the following is NOT an advantage of SSL?

A. Data encryption
B. Supported on all browsers
C. Light resource usage for encryption and decryption
D. Easy for user to identify its use (https ://)

C
Explanation: SSL requires heavy resource usage for encryption and decryption.

Computer Science & Information Technology

You might also like to view...

Suppose x is 5 and y is 7. Choose the value of the following expression:(x != 7) && (x <= y)

A. false B. true C. 0 D. null

Computer Science & Information Technology

Suppose class Child is derived from class Parent that was in turn derived from class GrandParent. When we destroy an object of class Child, three destructors are called: i) Child, ii) Parent, iii )GrandParent.. What is the order?

a) Child, Parent, GrandParent b) Parent, GrandParent, Child c) GrandParent, Child, Parent d) GrandParent, Parent, Child e) GrandParent, Child, Parent

Computer Science & Information Technology