A customer is looking for a storage archival solution for 1,000 TB of data. The customer requires that the solution be durable and data be available within a few hours of requesting it, but not exceeding a day. The solution should be as cost-effective as possible. To meet security compliance policies, data must be encrypted at rest. The customer expects they will need to fetch the data two times in a year. Which storage solution should a Solutions Architect recommend to meet these requirements

Answers

Answer 1

Incomplete question. The options;

A. Copy data to Amazon S3 buckets by using server-side encryption. Move data to Amazon S3 to reduce redundancy storage (RRS).

B. Copy data to encrypted Amazon EBS volumes, then store data into Amazon S3.

C. Copy each object into a separate Amazon Glacier vault and let Amazon Glacier take care of encryption.

D. Copy data to Amazon S3 with server-side encryption. Configure lifecycle management policies to move data to Amazon Glacier after 0 days.

Answer:

D. Copy data to Amazon S3 with server-side encryption. Configure lifecycle management policies to move data to Amazon Glacier after 0 days.

Explanation:

Note, the Amazon S3 (Amazon Simple Storage Service) is a cloud storage service that is both durable, cost-effective, and secure. Since the customer wants a storage space of up to 1,000 TB (terra bytes), this makes the Amazon S3 solution the most recommended solution.

The process begins by copying the data to Amazon S3 with server-side encryption. Next, set-up the configuration of lifecycle management policies to move data to Amazon Glacier after 0 days.


Related Questions

If you have an array of 100 sorted elements, and you search for a value that does not exist in the array using a binary search, approximately how many comparisons will have to be done?
a)7


b)100


c)50

Answers

Answer:

50

Explanation:

as binary search will search the array by dividing it into two halves till it find the value.

A system administrator at Universal Containers created a new account record type. However, sales users are unable to select the new record type when creating new account records. What is a possible reason for this? (Choose 2)

Answers

Explanation:

We have these reasons below as the

The reason why sales users are not able to select the new record type while they are trying to create a new account:

1. The users profile does not contain the record type yet. That is, this record type has not been added to the profile of the sales user.

2. This record type is yet to be activated.

SQL allows the use of special operators in conjunction with the WHERE clause. A special operator used to check whether an attribute value matches a value contained within a subset of listed values is ____. Question 20 options: BETWEEN IS NULL LIKE IN

Answers

Answer:

LIKE.

Explanation:

A structured query language (SQL) can be defined as a domain-specific language designed and developed for managing the various data saved in a relational or structured database.

In Computer programming, any word restricted for use, only in object names because they belong to the SQL programming language are called reserved word.

Hence, these reserved words can only be used as the name of an object but not as an identifier e.g the name of a function, label or variable.

Some examples of reserved words in structured query language (SQL) are UPDATE, GROUP, CURRENT_USER, CURRENT_DATE, CREATE, DELETE etc.

Hence, SQL allows the use of special operators in conjunction with the WHERE clause. A special operator used to check whether an attribute value matches a value contained within a subset of listed values is LIKE.

A loop that will output only the names that come before "Thor" in the alphabet from the names list.

Answers

names = ["Kevin", "Joe", "Thor", "Adam", "Zoe"]

names.sort()

for x in names:

   if x == "Thor":

       break

   else:

       print(x)

I made up my own names for the sake of testing my code. I wrote my code in python 3.8. I hope this helps.

A loop that will output only the names that come before "Thor" in the alphabet from the names list is written below:

What is a loop?

A loop is a set of instructions in computer programming languages that repeatedly repeats itself until a given condition is met.

The time it takes to determine the number of times the loop iterates before the loop executes is the difference between the decorative and extensive program loops.

If a loop's block of code is to be repeated until the provided condition turns false, and this condition is tested before the block is run, the loop is said to be a pretest.

names = ["Kevin", "Joe", "Thor", "Adam", "Zoe"]

names.sort()

for x in names:

  if x == "Thor":

      break

  else:

      print(x)

Therefore, the loop is written or coded above.

To learn more about the loop, refer to the link:

https://brainly.com/question/25955539

#SPJ2

Twenty years ago, most games were sold in brick and mortar stores. How did independent game developers get their games into these stores?

Question 18 options:

by working with a crowdfunding specialist who would give developers funds to offer to retailers if they promised to sell the game


by working with a piracy specialist who would ensure the game was distributed to each and every retailer, regardless of licensing


by working with a retail specialist who distributed video games to consumers


by working with a publisher who would help the developer bring their games to stores and then market them and get as much exposure and traction as possible

Answers

Answer: by working with a publisher who would help the developer bring their games to stores and then market them and get as much exposure and traction as possible

Explanation:

Publishers were and are still important in the gaming world even if they have now increasingly moved online. Publishers have a reputation and with this reputation comes access to a wide array of services that enable them to sell games.

This was the same when most stores were brick and mortar. One would sign a deal with a publisher who through their expertise would help the game get to market and give it publicity so that it can be sold.

Which of the following terms best describes the process of suppressing complex details of a system and presenting a simplified version with just the relevant details?

a. Creativity
b. Free Thinking
c. Abstraction
d. Programming

Answers

I believe the answer is C.
Abstraction.

Hope this helps!

Answer: Abstraction

Explanation: Abstraction could simply be explained as an art of giving a general, concise and yet reasonable overview or summary of a rather bulky or voluminous assignment, project Or system. It is composed of key scenes or steps involved in a complex or huge build up in other make a simple and understandable version of the same project albeit exempting in depth explanation and analysis. Abstraction technique is used in making abstract segment of various projects which is a segment of a writeup or research where the summary of the entire project is being outlined.

Question # 2 Multiple Choice The _____ method returns an integer between the two provided numbers. It can take the value of either of the provided numbers. seed randint random range

Answers

Answer:

randint

Explanation:

Answer:

randint

Explanation:

ed 2021

Write a program with total change amount as an integer input, and output the change using the fewest coins, one coin type per line. The coin types are Dollars, Quarters, Dimes, Nickels, and Pennies. Use singular and plural coin names as appropriate, like 1 Penny vs. 2 Pennies.
If input is 0 or less, output is 'No Change'
For Example: Input: 45
Output:
1 Quarter
2 Dimes
input_val = int(input())
if input_val <= 0:
print('No change')
else:
num_dollars == input_val // 100
input_val %= 100
num_quarters == input_val // 25
input_val %= 25
num_dimes == input_val // 10
input_val %= 10
num_nickels == input_val // 5
input_val %= 5
num_pennies == input_val
if num_dollars > 1:
print('%d dollars' % num_dollars)
elif num_dollars ==1:
print('%d dollar' % num_dollars)
if num_quarters > 1:
print('%d quarters' % num_quarters)
elif num_quarters ==1:
print('%d quarter' % num_quarters)
if num_dimes >1:
print('%d dimes' % num_dimes)
elif num_dimes ==1:
print('%d dime' % num_dimes)
if num_nickels >1:
print('%d nickels' % num_nickels)
elif num_nickels ==1:
print('%d nickel' % num_nickels)
if num_pennies >1:
print('%d pennies' % num_pennies)
elif num_pennies ==1:
print('%d penny' % num_pennies)

Answers

Answer:

b ,/knlk

Explanation:

At the settings window, the app buttons below the background thumbnails are used to change the
Select one:
a. image options for the Lock screen,
b. apps that appear on the Start menu.
c. screen saver settings.
d. apps that give notifications on the Lock screen image.

Answers

b because usually when you start a game it says it

While setting up a computer on the network, you use 'ipconfig' and see that the IP address is currently 10.24.16.160, with subnet mask 255.255.255.192. Where did the IP address likely come from?

Answers

Answer:

Explanation:

The IP address either came from your router or your Internet Service Provider (ISP). Sometimes ISP's automatically assign every device under their network an IP address, while other times they allow each individual's home network router to determine the IP of every connected device. This router can either assign an automatic IP address to each device from a range of addresses or the IP address can be assigned manually to each device as static.

Mobile cameras are now of a higher quality than when they first arrived on the market. Describe the difference in
resolution that has come about and how that has led to higher photo quality.

Answers

Answer:

When mobile cameras first arrived on the market, they did not have a high-quality resolution. But after the years, mobile cameras are able to record a significant amount of digital information.

Write a method intersect that accepts two sorted array lists of integers as parameters and returns a new list that contains only the elements that are found in both lists.

Answers

Answer:

Explanation:

The following code is written in Java. It creates a function called equalElements that takes two ArrayList of integers as parameters loops through both of them to find the elements that are equal in both and then adds those elements to a new ArrayList called repeated. Then the ArrayList is returned to the user.

public static ArrayList<Integer> equalElements(ArrayList<Integer> arrOne, ArrayList<Integer> arrTwo) {

                       ArrayList<Integer> repeated = new ArrayList<>();

               for (int x: arrOne) {

                       for (int i: arrTwo) {

                               if (x == i) {

                                   repeated.add(x);

                                   break;

                               }

                       }

               }

               

               return repeated;

}

Write a program using python 3 that asks the user how many integers they would like to enter. You can assume that this initial input will be an integer >= 1. The program will then prompt the user to enter that many integers. After all the numbers have been entered, the program should display the largest and smallest of those numbers (no, you cannot use lists but you can use loops, if statements, comparison & logical operators). Your code should work correctly no matter what integers the user enters. When you run your program it should match the following format:

How many integers would you like to enter?
4
Please enter 4 integers.
-4
105
2
-7
min: -7
max: 105

Answers

I've included my code in the picture below. Best of luck.

You have booted a new computer (purchased from a manufacture) to PowerShell prior to the computer starting the Out-of-Box Experience. From PowerShell, you run the Set-ExecutionPolicy Unrestricted cmdlet. What is the function of this cmdlet?

Answers

Answer:

It allows Windows to run script files.

Explanation:

A cmdlet is an abbreviation for command-let and it is a special type of lightweight command that is typically used with the Microsoft Windows PowerShell script for the automatic performance of a single-specific function on a computer system.

In this scenario, you have booted a new computer (purchased from a manufacture) to PowerShell prior to the computer starting the Out-of-Box Experience. From PowerShell, you run the Set-ExecutionPolicy Unrestricted cmdlet. Thus, the function of this cmdlet is to allow Windows run script files known as scripts which have been typed into the command line.

-(-13) P binary using signed. 2's complement representation
Perform the arithmetic operations (+42) + (-13) and (-42)
negative .
Consider the balloon​

Answers

Answer:

00011101

00011101

Explanation:

Given the following arithmetic operations

a)   (+42) + (-13)

b)   (-42) - (-13)

From (a):

We need to convert +42 into binary, so we get = 00101010

Now for +13, when it is converted into binary, we get = 00001101

But, here, the 13 is negative. So, here is what we will do, we will have to take the two compliment of the binary. After doing that, we get = 111110011

+ 42     →     00101010

- 13      →     1 1 1 10011

+29             000 11101  

Thus, the arithmetic operation after we use 2's complement is 00011101

b)

Here both 42 and 13 are negative. Using two complement representation

-42 is first converted to binary as 00101010, Then → 11010101 + 1 = 11010110

-13 is converted to binary as 00001101 → 11110010 = 11110011

In between, a negative sign exists, so we take another 2's complement.

i.e.

11110011 → 00001100 + 1 = 00001101

- 42 →     1 1 01 0110

+13  →     00001 101

-29         1 1 1 00011

since there is no carry, we take two's complements for the result as:

1 1 1 00011 →00011100 + 1 = 00011101

In this exercise, you will get some practice with the __add__ method by implementing it for a class called ContactBook. This class represents a collection of names and phone numbers. ContactBook stores its information as a dictionary, where the key is a name and the value is a phone number or group of phone numbers. The keys and values in this dictionary are stored as strings. When printed, a ContactBook might look like this:

Answers

Answer:

class ContactBook():

   def __init__(self):

       self.contacts ={}

   def __repr__(self):

       return str(self.contacts)

   def add_contact(self,name,number):

       self.contacts[name] = number

   def __add__(self, other):

       new_contact = ContactBook()

       other_contact = other.contacts.keys()

       for name,num in self.contacts.items():

           if name in other_contact:

               new_contact.add_contact(name,num or other_contact[name])

           else:

               new_contact.add_contact(name,num)

       for name,num in other.contacts.items():

           if name not in self.contacts:

               new_contact.add_contact(name, num)

       return new_contact-

cb1 = ContactBook()

cb2 = ContactBook()

cb1.add_contact('Jonathan','444-555-6666')

cb1.add_contact('Puneet','333-555-7777')

cb2.add_contact('Jonathan','222-555-8888')

cb2.add_contact('Lisa','111-555-9999')

print(cb1)

print(cb2)

cb3 = cb1+cb2

print(cb3)

Explanation:

The ContactBook class holds the contact details of an instance of the class. The class has three magic methods the '__repr__', '__init__', and the '__add__' which is the focus of the code. The add magic method in the class adds the contact book (dictionary) of two added object instance and returns a new class with the contact details of both operand instances which is denoted as self and other.

Consider the following method, which is intended to return an array of integers that contains the elements of the parameter arr arranged in reverse order. For example array containing (-5, 3, 2, 7) then a new array (-5, 3, 2, 7) contains should be returned and the parameter are should be left unchanged .

public static int[] reverse(int) arr)
Intl new new intarr.length);
for (int k = 0; K arr.length: )
* Bissing statement / return newer;

Write down the statements that can be used to replace / Missing statement so that the method works as intended?

Answers

Code:

public static int[] reverse(int [] arr){

Int [] newArr = new int[arr.length];

for (int k = 0; k<arr.length;k++){

/*Missing statement */

}

return newArr;

Answer:

Replace the comment with:

newArr[k] = arr[arr.length-k];

Explanation:

Required

Complete the code

In the given code:

The first line of the given code defines the method

public static int[] reverse(int [] arr){

The next line declares array newArr withe same length as array arr

Int [] newArr = new int[arr.length];

The next line iterates through the elements of array arr

for (int k = 0; k<arr.length;k++){

The /* Missing statement */ is then replaced with:

newArr[k] = arr[arr.length-k];

The above statement gets the elements of array arr in reversed order.

This is so because, as the iteration iterates through array arr in ascending order, arr.length-k gets the element in reversed order

Other Questions
Hi, can you please help me? 1 Over a period of 3 hours, 190 leaves fell from a tree. At this rate, about how many leaves fell every hour? (Round your answer to the nearest whole number.)A. 60 leaves per hourB. 72 leaves per hourC. 75 leaves per hourD. 63 leaves per hour question 2:Mrs. Hill drove a total of 252 miles and used 12 gallons of gasoline. What is the unit rate?A. 16 miles per gallonB. 12 miles per gallonC. 21 miles per gallonD. 32 miles per gallon 1. Ais a letter with hanging feet. * Evaluate the following.7 + 2 x 5 + 20:5please help ASAP!! In which region of the world is this disaster taking place? A class fundraiser is earning $7 per car wash w and $4 per cake c sold. The cakes cost $2 to make and the supplies or the car wash cost $1 per car. They will wash less than 50 cars and bake no more than 30 cakes. They want to raise at least $320 to give to a local charity. What system represents this situation StructureHow does structure (including rhyme andrepetition) contribute to meaning? In the diagram, GH bisects ZFGI.a. Solve for x and find mZFGH.b. Find mZHGI.c. Find mZFGI.(3x - 1)a..X(Simplify your answer.) What happens to distance when velocity is doubled 4. Which of the following is NOT an example of annuities?a. pensionb. educational pland. depositc. car loan 25/3 X 4/15 whats the answer I need helpscan you simply this please :) what does beowulf take from grendel? what does this symbolize? Jansen Company reports the following for its ski department for the year 2019. All of its costs are direct, except as noted. Sales $ 605,000 Cost of goods sold 425,000 Salaries 112,000 ($15,000 is indirect) Utilities 14,000 ($3,000 is indirect) Depreciation 42,000 ($10,000 is indirect) Office expenses 20,000 (all indirect) 1. Prepare a departmental income statement for 2019. 2. 350 students signed up what percent signed up for the airforce (64) PLEASEEEE HELPPP ME WITH THISSA person riding in the passenger seat of a car is "pushed" into the car door as the car makes a sharp left turn. Newton's 2nd LawNewton's 1st LawNewtons 3rd Law "Many service companies collect data via a follow-up survey of their customers. Suppose, in order to ascertain customer sentiment, a certain air line sends an email to customers immediately following a flight. The following question is asked, among others. How likely are you to recommend this air line to others?" Can someone help me with this please What is the right answer for it? Read this text trailer about the story of Cinderella. Life is not easy when you live with an evil stepmother. Cinderella spends each day doing chores, wishing for the carefree life of her stepsisters. Is there a way to escape the drudgery? When the prince announces a ball, Cinderella longs to go, but her stepmother wont allow it. Can Cinderella find a way? Is there someone out there who could lend her a handor even a magic wand? What is the tone of this trailer? A. serious B. humorous C. mysterious D. educational The unit discusses the problems with deforestation. What other problems could the extreme environmental damage caused by the kind of mining done in the Appalachians create?I'm not sure if anyone can help me with this one, but if you can that'd be great! I have to write in the answer but I'm just looking for an idea. Thank you! Scientists have discovered that there are reproductive isolating mechanisms that can stop a population from interbreeding and possibly lead to the formation of a new species. What is this process called