Which of the following is an unbounded transmission medium?

A. copper wire cabling
B. electrical wires
C. radio waves
D. fiber optic cable


Answer: C

Computer Science & Information Technology

You might also like to view...

What is the problem (if any) with this code?

``` char s1[20] = “How you been? ”; strcat(s1, “Fine as wine”); ``` What will be an ideal response?

Computer Science & Information Technology

The Start ________ feature allows you to start an animation by clicking the slide or trigger on the slide

Fill in the blank(s) with correct word

Computer Science & Information Technology

If you use the ____________________ option, you can send a copy of your email message to another person whose name will not appear in the email message.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Consider the following function to calculate the nth Fibonacci number:long fib (long num){    if (num == 0 || num == 1)        return num;    return (fib (num - 1) + fib (num - 2));}What line of code represents the general case?

A. long fib (long num) B. if (num == 0 || num == 1) C. return num; D. return (fib (num - 1) + fib (num - 2));

Computer Science & Information Technology