QUESTION #1

The maximum number of requests/second for any unique IP is 3.

Which of the following will match the given statement above?

A. uadmin.RateLimit = 3
B. uadmin.LimitRate = 3
C. uadmin.RateLimitBurst = 3
D. uadmin.BurstRateLimit = 3


QUESTION #2

The maximum number of requests for an idle user is 5.

Which of the following will match the given statement above?

A. uadmin.LimitRate = 5
B. uadmin.BurstRateLimit = 5
C. uadmin.RateLimit = 5
D. uadmin.RateLimitBurst = 5


QUESTION #3

The maximum number of requests/second for any unique IP is 2.

Which of the following will match the given statement above?

A. uadmin.LimitRate = 2
B. uadmin.RateLimitBurst = 2
C. uadmin.BurstRateLimit = 2
D. uadmin.RateLimit = 2


QUESTION #4

The maximum number of requests for an idle user is 4.

Which of the following will match the given statement above?

A. uadmin.RateLimit = 4
B. uadmin.RateLimitBurst = 4
C. uadmin.LimitRate = 4
D. uadmin.BurstRateLimit = 4


QUESTION #5

The maximum number of requests/second for any unique IP is 8.

Which of the following will match the given statement above?

A. uadmin.BurstRateLimit = 8
B. uadmin.RateLimit = 8
C. uadmin.LimitRate = 8
D. uadmin.RateLimitBurst = 8


QUESTION #6

The maximum number of requests/second for any unique IP is 5 and the maximum number of requests for an idle user is 3.

Which of the following will match the given statement above?

A. uadmin.RateLimit = 5
        uadmin.RateLimitBurst = 3


B. uadmin.LimitRate = 5
        uadmin.BurstRateLimit = 3


C. uadmin.RateLimit = 3
        uadmin.RateLimitBurst = 5


D. uadmin.LimitRate = 3
        uadmin.BurstRateLimit = 5



QUESTION #7

The maximum number of requests/second for any unique IP is 4 and the maximum number of requests for an idle user is 7.

Which of the following will match the given statement above?

A. uadmin.LimitRate = 4
        uadmin.BurstRateLimit = 7


B. uadmin.LimitRate = 7
        uadmin.BurstRateLimit = 4


C. uadmin.RateLimit = 4
        uadmin.RateLimitBurst = 7


D. uadmin.RateLimit = 7
        uadmin.RateLimitBurst = 4



QUESTION #8

The maximum number of requests/second for any unique IP is 6 and the maximum number of requests for an idle user is 8.

Which of the following will match the given statement above?

A. uadmin.RateLimit = 8
        uadmin.RateLimitBurst = 6


B. uadmin.LimitRate = 6
        uadmin.BurstRateLimit = 8


C. uadmin.RateLimit = 6
        uadmin.RateLimitBurst = 8


D. uadmin.LimitRate = 8
        uadmin.BurstRateLimit = 6



QUESTION #9

The maximum number of requests/second for any unique IP is 5 and the maximum number of requests for an idle user is 7.

Which of the following will match the given statement above?

A. uadmin.RateLimit = 5
        uadmin.RateLimitBurst = 7


B. uadmin.RateLimit = 7
        uadmin.RateLimitBurst = 5


C. uadmin.LimitRate = 5
        uadmin.BurstRateLimit = 7


D. uadmin.LimitRate = 7
        uadmin.BurstRateLimit = 5



QUESTION #10

The maximum number of requests/second for any unique IP is 9 and the maximum number of requests for an idle user is 6.

Which of the following will match the given statement above?

A. uadmin.RateLimit = 6
        uadmin.RateLimitBurst = 9


B. uadmin.LimitRate = 9
        uadmin.BurstRateLimit = 6


C. uadmin.LimitRate = 6
        uadmin.BurstRateLimit = 9


D. uadmin.RateLimit = 9
        uadmin.RateLimitBurst = 6



QUESTION #11

The maximum number of requests/second for any unique IP is 4 and the maximum number of requests for an idle user is 8. The user clicks the button 3 times per second.

Which of the following will be used to check the rate limit status and what will be the result?

A. uadmin.CheckRateLimit(&r)
        Rate Limit: true


B. uadmin.CheckRateLimit(r)
        Rate Limit: true


C. uadmin.CheckRateLimit(&r)
        Rate Limit: false


D. uadmin.CheckRateLimit(r)
        Rate Limit: false



QUESTION #12

The maximum number of requests/second for any unique IP is 3 and the maximum number of requests for an idle user is 3. The user clicks the button 5 times per second.

Which of the following will be used to check the rate limit status and what will be the result?

A. uadmin.CheckRateLimit(r)
        Rate Limit: true


B. uadmin.CheckRateLimit(r)
        Rate Limit: false


C. uadmin.CheckRateLimit(&r)
        Rate Limit: true


D. uadmin.CheckRateLimit(&r)
        Rate Limit: false



QUESTION #13

The maximum number of requests/second for any unique IP is 1 and the maximum number of requests for an idle user is 4. The user clicks the button 3 times per second.

Which of the following will be used to check the rate limit status and what will be the result?

A. uadmin.CheckRateLimit(&r)
        Rate Limit: false


B. uadmin.CheckRateLimit(&r)
        Rate Limit: true


C. uadmin.CheckRateLimit(r)
        Rate Limit: true


D. uadmin.CheckRateLimit(r)
        Rate Limit: false



QUESTION #14

The maximum number of requests/second for any unique IP is 5 and the maximum number of requests for an idle user is 2. The user clicks the button 4 times per second.

Which of the following will be used to check the rate limit status and what will be the result?

A. uadmin.CheckRateLimit(r)
        Rate Limit: true


B. uadmin.CheckRateLimit(&r)
        Rate Limit: false


C. uadmin.CheckRateLimit(&r)
        Rate Limit: true


D. uadmin.CheckRateLimit(r)
        Rate Limit: false



QUESTION #15

The maximum number of requests/second for any unique IP is 1 and the maximum number of requests for an idle user is 3. The user clicks the button twice per second.

Which of the following will be used to check the rate limit status and what will be the result?

A. uadmin.CheckRateLimit(r)
        Rate Limit: false


B. uadmin.CheckRateLimit(&r)
        Rate Limit: true


C. uadmin.CheckRateLimit(&r)
        Rate Limit: false


D. uadmin.CheckRateLimit(r)
        Rate Limit: true