<em>Keyboard -----> Input device</em>
<em>Printer --------> Output device</em>
<em>mouse ---------> Input device</em>
<em>Monitor --------> Output device</em>
<em>CD roam ------> Input device</em>
<em>Projector ------> Output device</em>
Answer:
This question required option (See Explanation)
Explanation:
Required
How to declare 2D array
Using Java as a programming language of reference, the syntax to declare a 2D array is:
Data-Type [][] Array-Name = new Data-Type[Rows][Column]
From the question, the data type is String. So, the syntax becomes
String [][] Array-Name = new String[Rows][Column]
Assume the array name is: myArray; The above becomes
String [][] myArray= new String[Rows][Column]
<em>I will not assume values for Rows and Column, but it is worth saying that Rows and Columns are positive integers greater than 1 to make the array a 2 D array</em>
Answer:
Explanation:
Solution
a)
The "bit" is just leaving "Host A"
b)
The 1st bit is in the link and has not reached "Host B"
c)
The 1st bit has reached "Host B"
The answer is D. You can take a look at the image I attached, it contains some good illustrations.