Medium
You have an application with 10 million users. Each user has 10MB of data. Your outgoing connection has 100MB / sec.
You decide to transfer this data to another system with 50MB / sec incoming.
How long will it take to transfer all the data?
Author: Kevin LefevreStatus: PublishedQuestion passed 207 times
Edit
1
Community EvaluationsNo one has reviewed this question yet, be the first!
Similar QuestionsMore questions about IS Architecture
1
Explain the different types of caching in the context of an information system architecture.1
Explain the difference between a distribution group and a security group in Active Directory.0
If the data to be validated does not depend on other data in the database, performing data validation in the server application reduces the number of database queries compared to validation only in the database.0
In a distributed system, it is possible to guarantee consistency (that all nodes in the system have access to the same data at the same time), it is possible to guarantee the atomicity of some operations0
Which of the following two SQL queries is faster? A: SELECT * FROM table WHERE id = 1; B: SELECT * FROM table WHERE id = 1 ORDER BY id;