Most microcomputers are constructed around a(n) __________, a metal framework that contains a series of slots.

a. bus
b. interface
c. controller
d. motherboard


d. motherboard

Computer Science & Information Technology

You might also like to view...

You will configure the two routers, R1 and R2, with IPv6 so that they can communicate. The routers are missing all the configuration necessary to support IPv6. To establish IPv6 on Cisco routers, there are two basic steps. First, you must configure the routers for IPv6 forwarding. Next, you should configure the interfaces with specified IPv6 addresses. This lab tests your ability to configure support for IPv6 and verify the configuration. The IPv6 addresses are provided in Table 1. You will not use the PCs in this lab.



1. Enter the privileged mode on Router R1 and enter the command to enable IPv6 routing. List the steps required to enable IPv6 routing.
2. Enter privileged mode on Router R2 and enter the command to enable IPv6 routing. List the steps required to enable IPv6 routing.
3. In the next step, you now need to add IPv6 addresses to the WAN interfaces. Add the IPv6 address 2001:C16C:0000:0001:0000:0000:0000:0001/64 to the serial 0/0/0 interface of R1. What command is required to add this address? Add the address and enable the interface.
4. Next add the IPv6 address to the serial interface of R2. You are to use the abbreviated version of IPv6 address 2001:C16C:0000:0001:0000:0000:0000:0002/64, add the address to the serial 0/0/1 interface of R2, and enable the interface. List the command sequence used.
5. Use the command on R1 to observe the address added to the serial 0/0/0 interface. What command is used? What addresses are shown?
6. Issue the show running-config command on R1 and examine the command you a

Computer Science & Information Technology

Complete the program below by writing functions average and deviation. The program's purpose is to input a list of real numbers, compute their average, and display a table with each number and its deviation from the average. For example, if the data were 4.00, 12.00, 7.00, and 5.00 (average = 7.00), the deviation list would be -3.00, 5.00, 0.00, and -2.00.

#include 
#include 
using namespace std;

double average(                                                       );

void deviation(                                                       );

const int MAX_SIZE = 20;

int main()
{
	double mean;
	double nums[MAX_SIZE];
	double devFromMean[MAX_SIZE];
	int	numsSize;
	
	cout << "Enter the number of elements in the list => ";
	cin >> numsSize;
	cout << "Enter the elements of the list separated by a space => ";
	
	for (int i = 0; i < numsSize; ++i)
		cin >> nums[i];	

	mean = average( nums, numsSize );
	cout << "The mean is " << mean << endl;

	deviation( devFromMean, nums, numsSize, mean );

 	for (int i = 0; i < numsSize; ++i)
		cout << setw( 10 ) << nums[i] << setw( 10 ) << devFromMean[i] 
               << endl;

	return 0;
}


// Returns the average of the first n elements of list
double average(                                                       )










// Fills each of the first n elements of devList with the deviation from 
// givenVal of the corresponding element of list.
void deviation(

Computer Science & Information Technology

FIGURE AC 4-1Referring to Figure AC 4-1 above, to create this type of form, click the More Forms button in the Forms group on the ____ tab.

A. File B. Create C. Home D. Format

Computer Science & Information Technology

A ____ case is a specific way of using the system by performing some part of the functionality.

A. positive-use B. negative-use C. risk-use D. designed-use

Computer Science & Information Technology