Which of the following are criteria for choosing a NIC? (Choose all that apply.)

A. Will you be using TCP/IP or IPX/SPX?
B. Is your cabling plenum or PVC?
C. What is the bus type of the available expansion slots on the computer?
D. What operating system is on the computer?


Ans:
C. What is the bus type of the available expansion slots on the computer?
D. What operating system is on the computer?

Computer Science & Information Technology

You might also like to view...

Structures can contain other structures, and they can be contained in other structures. They can also overlap.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

COGNITIVE ASSESSMENT When a waiter at a restaurant steals credit card numbers to make fraudulent purchases, this is called _____________.

A. information theft B. software theft C. digital forensics D. decryption

Computer Science & Information Technology

?You would want to _____ the data in a dataset collected about monthly rainfall to bring out the meaning behind the results.

A. ?order B. ?average C. ?minimize D. ?trend

Computer Science & Information Technology

given the following class definition, how could you use the constructor to assign values to an object of this class?

class CDAccount { public: CDAccount(); CDAccount(float interest, float newBalance); float getBalance(); float getRate(); void setRate(float interest); void setBalance(float newBalance); private: float balance, rate; }; and the following object declaration CDAccount myAccount; a. myAccount = CDAccount(float myRate, float myBalance); b. myAccount = CDAccount {myRate, myBalance}; c. myAccount = CDAccount[myRate, myBalance]; d. myAccount = CDAccount(myRate, myBalance);

Computer Science & Information Technology