An algorithm is the set of logical steps that a computer uses to "read" instructions.
Algorithms are used when you write computer programs.
Mr. Pacey
Technology Specialist
Answer:
A mouse consists of a metal or plastic housing or caring, a ball at its base and is rolled on a flat horizontal surface.
Explanation:
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:
Check the explanation
Explanation:
% iterate through each column (outer loop) , then iterate rows-1 (inner loop)
%take product of adjacent rows
mat = input('enter 5 by 5 matrix : ');
[R,C] = size(mat);
max_prod =0;
for c =[1:C]
for r=[1:(R-1)]
temp = mat(r,c)*mat((r+1),c);
if max_prod<temp
max_prod=temp;
end
end
end
fprintf('Greatest product : %i\n', max_prod)
Kindly check the output in the attached image below.
Answer:
Option b Internet platforms
Explanation:
Internet is related to network infrastructure and also hardware and software platforms. Without network infrastructure that enable connectivity and communication between computers, the internet platform won't exist. Besides, the network also enable communication and interaction between users and application. And we need specific hardware and software to construct a functional internet service.