The command that removes all files from a directory is

A) XCOPY
B) *.*
C) DEL *.*
D) DISCARD


C

Computer Science & Information Technology

You might also like to view...

Define PartPtr to be a synonym for the type Part*.

What will be an ideal response?

Computer Science & Information Technology

Five different types of document properties like those shown in the accompanying figure exist.

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

Computer Science & Information Technology

When applying a ________, it is best practice to use muted or pastel colors

A) table style B) theme C) fill color D) built-in cell style

Computer Science & Information Technology

Which two-statement sequence is equivalent to this three-statement sequence?

x = y * 10; y = y + 1; z = z * (y + 5); a. y *= 10; z = y ++ 5; b. x = y * 10 + 1; z = ++y + 5 * z; c. x = y + 1 * 10; z = z * y + 5; d. x = y++ * 10; z *= y + 5;

Computer Science & Information Technology