Answer the following statements true (T) or false (F)
1. The Return instruction is used to end a module.
2. The Return instruction and the Exit instruction are exactly the same and can be used interchangeably.
3. An instruction has two parts: the general instruction followed by the specifications on how to execute the instruction.
4. In a coupling diagram, all variables are indicated in the same way.
5. It is not important to indicate what documentation is needed as you are developing the solution.
1. TRUE
2. FALSE
3. TRUE
4. FALSE
5. FALSE
You might also like to view...
If you call the function below by typing: newFunction("I", "you", "walrus"), what will print?
``` def newFunction(a, b, c): print a list1 = range(0,4) value = 0 for x in list1: print b value = value +1 print c print value ```
Color Burn creates a multiply effect by decreasing brightness.
Answer the following statement true (T) or false (F)