Amazon S3 buckets in all Regions provide which of the following?
A. Read-after-write consistency for PUTS of new objects AND Strongly consistent for POST & DELETES
B. Read-after-write consistency for POST of new objects AND Eventually consistent for overwrite PUTS & DELETES
C. Read-after-write consistency for PUTS of new objects AND Eventually consistent for overwrite PUTS & DELETES
D. Read-after-write consistency for POST of new objects AND Strongly consistent for POST & DELETES
Answer: C. Read-after-write consistency for PUTS of new objects AND Eventually consistent for overwrite PUTS & DELETES
You might also like to view...
The MEDIAN function is used to find the ________ number in a range of cells
A) middle B) average C) highest D) lowest
Suppose s is a string with the value "java". What will be assigned to x if you execute the following code?
``` char x = s.charAt(4); ``` a. 'a' b. 'v' c. Nothing will be assigned to x, because the execution causes the runtime error StringIndexOutofBoundsException.