Which of the following statements is true?
a) The C standard library does not provide a secure random-number generator.
b) According to the C standard document’s description of function rand, “There are no guarantees as to the quality of the random se-quence produced and some implementations are known to produce sequences with distressingly non-random low-order bits.”
c) The CERT guideline MSC30-C indicates that implementa-tion-specific random-number generation functions must be used to ensure that the random numbers produced are not predictable
d) All of the above.
d) All of the above.
You might also like to view...
A numbered list is also known as an ordered list
Indicate whether the statement is true or false
Which antivirus technique intercepts a virus when it starts and stops it from infecting other files?
a. Signature scanning b. Heuristic scanning c. Integrity checking d. Activity blocking
You can click inside a(n) ____________________ to add or paste text.
Fill in the blank(s) with the appropriate word(s).
When using a compound Boolean expression joined by an && (AND) in an if statement:
a. Both expressions must evaluate to true for the statement to execute. b. The first expression must evaluate to true and the second expression must evaluate to false for the statement to execute. c. The first expression must evaluate to false and the second expression must evaluate to true for the statement to execute. d. Both expressions must evaluate to false for the statement to execute.