A bridge can selectively forward data packets.
a. true
b. false
Answer: a. true
Computer Science & Information Technology
You might also like to view...
________ refers to the ability to see something under a certain area of a drawing
Fill in the blank(s) with correct word
Computer Science & Information Technology
Given the following function definition
void shift(int& a, int&b) { a=b; b=a; } What is the output after the following function call? int first=0, second=10; shift(first, second); cout << first <<" "<< second << endl; a. 0 10 b. 10 0 c. 0 0 d. 10 10
Computer Science & Information Technology