Answer:
- #include <iostream>
- using namespace std;
- int main()
- {
- int highest = 0;
- int score;
- do{
- cout<<"Input a score: ";
- cin>>score;
-
- if(score > highest){
- highest = score;
- }
- }while(score >= 0);
-
- cout<<highest;
- return 0;
- }
Explanation:
Firstly, create a variable highest and initialize it with zero (Line 5). Next, create a do while loop (Line 7 - 14). Within the loop prompt user to input a score (Line 8-9) and if the current score is higher than the highest variable, assign the score to highest variable (Line 11 - 13).
After finishing the loop when user put in any negative value, the program shall be able to print out the highest input score (Line 16).
Given that,
Token is 64 bytes long
The average number of stations that the token must pass = 20
We need to calculate the transmission delay for token
Using formula of transmission delay

Put the value into the formula




We need to calculate the average wait to receive token on an idle network with 40 stations
Using formula of average wait

Put the value into the formula



Hence, The average wait to receive token on an idle network with 40 stations is 1.024 ms.
Answer:
C
Explanation:
Key logging is when a hacker can track every key u have clicked.
Answer:
Logical Network Diagrams.
Explanation:
Network Diagrams is the visual diagram that represents the networking of telecommunications and computer. <u>There are two types of network diagrams- Physical and Logical.</u>
Logical Network Diagram represents the information that flows through a network. The diagrams shown in the logical network diagram are routers and firewalls, VLAN Ids, IP address, traffic flow, etc. Logical Network Diagram is helpful in troubleshooting.
<u>Logical Network Diagram helps in determining whether a network has VLAN for public assessing or not</u>.
So, the correct answer is the Logical Network Diagram.