Simultaneous access requires independent data paths, so most mainframes use __________.

a. multiple-bus architecture
b. single-bus architecture
c. complex architecture
d. The premise of this question is false.

a. multiple-bus architecture

Computer Science & Information Technology

You might also like to view...

Which of the following best describes the initial processing phase used in mobile device forensics?

A. The phone should be powered down and the battery removed to preserve the state of data on any internal or removable storage utilized by the mobile device B. The removable data storage cards should be processed first to prevent data alteration when examining the mobile device C. The mobile device should be examined first, then removable storage and lastly the phone without removable storage should be examined again D. The phone and storage cards should be examined as a complete unit after examining the removable storage cards separately.

Computer Science & Information Technology

If we call function p with n = 7, then the next time p is called, n would be:

``` 1 float p( float x, int n ) 2 { 3 if ( n == 0 ) 4 return 1; 5 else 6 return x p( x, n – 1 ); 7 } ``` A. 1 B. 0 C. 8 D. 6

Computer Science & Information Technology