Controls can be classified as belonging to one of the following classes: management controls, operational controls, technical controls, detection and recovery controls, preventative controls, and _______ controls.
Fill in the blank(s) with the appropriate word(s).
supportive
You might also like to view...
For a non-empty linked list, select the code that should appear in a function that adds a node to the end of the list. newPtr is a pointer to the new node to be added and lastPtr is a pointer to the current last node. Each node contains a pointer nextPtr.
a. lastPtr->nextPtr = newPtr; lastPtr = newPtr b. lastPtr = newPtr; lastPtr->nextPtr = newPtr c. newPtr->nextPtr = lastPtr; lastPtr = newPtr d. lastPtr = newPtr; newPtr->nextPtr = lastPtr
Using a set of RadioButton controls is preferred to using a set of ____ controls when only one choice should be made from a set of options.
A. TextArea B. TextLink C. ChoiceBox D. CheckBox
A new printer has been added in your office and connected to a WAP for use by all users in the company. What best describes the method of connectivity for the new printer?
A. wireless infrastructure mode B. wireless Bluetooth C. wireless ad hoc mode D. wired ethernet
A graph is ______ if it has at least one pair of vertices without a path between them.
a) complete b) disconnected c) connected d) full