Which of the following statements about the Biba integrity model is true?

A. It is an integrity model.
B. It is an availability model.
C. It simplifies analysis of covert channels.
D. It uses read-up, write down approach.

Answer: D
Explanation: The Biba integrity model is an integrity model that uses a read-up, write-down approach so that subjects cannot read objects at lesser integrity and cannot write to objects of higher integrity.

Computer Science & Information Technology

You might also like to view...

What are the three methods that a class that implements the Iterator interface must provide?

What will be an ideal response?

Computer Science & Information Technology

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

1. A C++ structure, or struct, like the C++ array, is a homogeneous data structure. (i.e., all data is of the same type) 2. Structure definitions are usually global (defined outside any functions). 3. A structure member is access using the index operator [ ], with the member name as index. [ ] 4. A structure variable can be defined directly in the same statement that defines a structure definition. 5. The following definition of the structure variables of type myStruct s and t could be made using several definitions using the structure tag. ``` struct myStruct { int i; double d; } s, t; ```

Computer Science & Information Technology