Ethernet uses ____ to prevent data packets from colliding on the network.

A. CSMA/CD
B. CSMA/CA
C. AppleTalk
D. LPC

Answer: A

Computer Science & Information Technology

You might also like to view...

To insert a row in a worksheet, right-click the row heading area and click Add on the resulting shortcut menu

Indicate whether the statement is true or false

Computer Science & Information Technology

Given the following stack declaration, which of the following function definitions would correctly implement the destructor?

struct StackFrame { char data; StackFrame *link; }; typedef StackFrame* StackFramePtr; class Stack { public: Stack( ); Stack(const Stack& a_stack); ~Stack( ); void push(char the_symbol); char pop( ); bool empty( ) const; private: StackFramePtr top; }; a. top=NULL; b. char next; while (! empty( )) next = pop( );//pop calls delete. c. char next; while(!empty( )) next = push(); d. none of the above

Computer Science & Information Technology