Which statement is true?

a) The boss function normally knows how the worker function performs its designated tasks.
b) A worker function may not call other worker functions.
c) “Hiding” of implementation details makes it difficult to understand software.
d) The boss function is normally unaware when a worker function calls another function.

d) The boss function is normally unaware when a worker function calls another function.

Computer Science & Information Technology

You might also like to view...

Which of the following statements best describes segregation of duties?

A) Two individuals complete the same task simultaneously. B) No one individual can control a process from start to finish. C) Two individuals must both complete their half of a specific task. D) Two individuals complete different tasks at the same time.

Computer Science & Information Technology

What is the output of the following code:   loopCount = 1;while(loopCount < 3){   System.out.println("Hello");   loopCount = loopCount + 1;}

A. Hello B. HelloHello C. HelloHelloHello D. HelloHello

Computer Science & Information Technology