The command to encrypt Xfile is

a: encrypt Xfile
b: passw Xfile
c: crypt abc < Xfile > Xfile.crypt
d: crypt abc Xfille Xfile.crypt
e: crypt Xfille << Xfile.crypt

c: crypt abc < Xfile > Xfile.crypt

Computer Science & Information Technology

You might also like to view...

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

1. To call a function with an array parameter, write the array argument as the array name followed by empty square brackets, as in f(a[], 7); (The first argument is an array a, the second is the size.) 2. Consider the array declaration, int x[20];. There is no memory allocated for x[20]. 3. Arrays in C++ may have several different types stored in them. 4. Given the two C++ array declarations: int a[10], b[10]; You can successfully compute one array, say a, then assign b to a: a = b; 5. In the sequential search algorithm, items are examined alternately, odd then evens, in order to find whether the target value is in the array (and if the target is present, to the index of the target.)

Computer Science & Information Technology

Bitmap graphics consist of line segments and anchor points.

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

Computer Science & Information Technology