Bunuel
A certain website has a request threshold (RT), defined as the maximum number of requests it can handle in a single day. If the number of requests on a given day exceeds the RT, the site processes only the first RT requests. The remaining requests are not addressed and are permanently discarded.
During one week, from Monday to Sunday, the number of requests received on each day was as follows:
810, 790, 830, 823, 780, 795, 820
On exactly 4 out of the 7 days that week, there was at least one request that was not addressed.
On the following Monday, the site received 812 requests.
Based on this information, select the
Minimum and the
Maximum number of requests that could have been not addressed on that Monday. Make only two selections, one in each column.
Request Threshold (RT) is defined as the maximum number of requests it can handle in a single day.
If number of request per day > RT , the excess requests are discarded.
From Monday to Sunday, the RT values are : 810, 790, 830, 823, 780, 795 and 820.
So the maximum 4 values can be greater than RT. The values are 830, 823, 820, and 810.
The request on the following Monday is 812.
If we assume RT to be 809, then 810,820,823,830 are values greater than RT.
Minimum value of RT that are not addressed on Monday = (812 - 809) =
3.Maximum value of RT that are not addressed on Monday = (812 - 796) =
16. The maximum RT value out of the remaining that was addressed is max ( 790, 780, 795) . So the threshold can be 796.
Minimum and maximum request that is not addressed on Monday are
3 and 16 respectively.