Data that must be retained for legal reasons is considered ________ data

A) sensitive B) noncritical C) critical D) vital

C

Computer Science & Information Technology

You might also like to view...

MC The small, simple pieces that are used to construct programs are typically referred to as ______.

a) components. b) segments. c) sections. d) None of the above.

Computer Science & Information Technology

Suppose you create a class Square to be a subclass of GeometricObject. Analyze the following code:

``` class Square extends GeometricObject { double length; Square(double length) { GeometricObject(length); } }``` a. The program compiles fine, but you cannot create an instance of Square because the constructor does not specify the length of the Square. b. The program has a compile error because you attempted to invoke the GeometricObject class's constructor illegally. c. The program compiles fine, but it has a runtime error because of invoking the Square class's constructor illegally.

Computer Science & Information Technology