Answer:
8
Explanation:
Having in mind that all the given 4 fragments are larger than 900 bytes and smaller than 1500 bytes, this will make router 2 to fragment each fragment by router 1 into 2 fragments .
Hence, 4*2 = 8 fragments will reach at destination host.
Answer:
explanation below
Explanation:
An intranet could be defined as a computer network that is used for sharing information, operational systems, collaboration tools and other computing tasks within a company or organization such as schools. It is usually structured to exclude excess by those outside of the organization.
Intranet provides a lot of benefits to organization where it is been used and they are as seen below
:
1. Users can effectively update and view their documents with ease – scheduling meetings, managing of classroom curriculum and preparing of projects can be done with less stress.
2. It can be used to keep accurate staff records – employees can have their details rightly stored using the intranet and a photograph can also be used.
Answer:
Function sparse code is
def sparse(a):
rl = []
cl = []
for i in range(0,len(a)):
rl.append(a[i][1])
cl.append(a[i][2])
r = max(rl)
c = max(cl)
s = []
k = 0
for i in range(0,r+1):
s.append([])
for j in range(0,c+1):
if (i==a[k][1]) & (j == a[k][2]):
s[i].append(a[k][0])
k = k+1
else:
s[i].append(0)
return s
def main():
k = sparse([[3,1,2],[4,5,3]])
print(k)
if __name__ == '__main__':
main()
Explanation:
Please see attachment for output
I believe it is the first one, i did some research for this question
Answer:
Flash.
Explanation:
If a computer software could make sonic run even close to the speeds of flash, the software would not be able to handle it.
-Mr. Willams