A network administrator noticed that when one computer goes down, all the other computers in the office will not work. Which of the following topologies is in use?
A. Star
B. Ring
C. Hybrid
D. Bus
E. Mesh
Answer: D. Bus
Computer Science & Information Technology
You might also like to view...
How many private members does an object of class D have?
Consider the class inheritance. ``` class B { public: B(); B(int nn); void f(); void g(); private: int n; }; class D: public B { public: D(int nn, float dd); void h(); private: double d; }; ``` a) 0 b) 1 c) 2 d) 3 e) 4 f) 5
Computer Science & Information Technology
Which of the following is NOT true about charts?
A. Charts are used to draw or present conclusions about data. B. If a chart is not set up correctly, the representation can be confusing or misleading. C. When creating a chart, the first step is to decide what type of chart you want to create. D. All charts have a horizontal and vertical axis.
Computer Science & Information Technology