Which of the following is not a reason for partitioning processes into separate programs?
A) the processes represent different user groups
B) the processes execute at different times
C) to control system security
D) to maintain consistency of data
D) to maintain consistency of data
You might also like to view...
The ________ option in the Restrict Formatting and Editing task pane restricts the use of the document so that a user can only fill in the content controls in the document
A) Exceptions B) Editing restrictions C) Start Enforcement D) Formatting restrictions
Which of the following for loop headers will cause the body of the loop to be executed 100 times?
a)``` for(int i = 0; i <= 100; i++) ``` b)``` for(int i = 1; i < 100; i++) ``` c)``` for(int i = 1; i <= 101; i++) ``` d)``` for(int i = 0; i < 100; i++) ``` e) none of these for loops will execute the loop body 100 times