Imagine you are part of the IT team for Get-Sole Shoes. Get-Sole Shoes has two physical locations. All of its IT systems are in one location and both locations use these systems. the company has moved to the cloud. A database needs to be chosen and could involve a hybrid approach. The company would need to store customer data, sales data, inventory, Ect. Next a storage solution needs to be selected.

Based on AWS storage types what storage solution would you choose and why? The storage types are Simple Storage Service, Elastic Block Store, Simple Storage Service Glacier, and Elastic File System.
Based on AWS database types which one would you chose and why?The database services are Amazon Relational Database Service, Amazon DynamoDB, Amazon Redshift, and Amazon Aurora.

Answers

Answer 1

Simple Storage Service Glacier is the one to prefer.

What is a simple storage service glacier?

Amazon S3 Glacier (S3 Glacier) is a secure and durable service for low-cost data archiving and long-term backup.

With S3 Glacier, you can store your data cost-effectively for months, years, or even decades. S3 Glacier helps you offload the administrative burdens of operating and scaling storage to AWS, so you don't have to worry about capacity planning, hardware provisioning, data replication, hardware failure detection and recovery, or time-consuming hardware migrations. For more information, go to the S3 Glacier pricing page.

preferred solution :

Amazon Simple Storage Service (Amazon S3) also provides three Amazon S3 Glacier archive storage classes. These storage classes are designed for different access patterns and storage duration. These storage classes differ as follows:

Hence to conclude Amazon's simple storage service glacier is the preferred one

To know more on Amazon services follow this link

#SPJ1


Related Questions

which of the following process determines the pageRank based on the number of incoming links from different websites to the present site?
>crawling
>indexing
>serving
>delivering

Answers

The process that determines the pageRank based on the number of incoming links from different websites to the present site is crawling. The correct option is A.

What is crawling?

Website crawling is the automated retrieval of web pages by a software process, with the goal of indexing the content of websites so that it can be searched.

The crawler examines a page's content for links to the next pages to fetch and index.

Crawling is the process of discovering pages and links that lead to additional pages.

Indexing is the process of storing, analyzing, and organizing the content and links between pages. There are elements of indexing that influence how a search engine crawls.

Thus, the correct option is A.

For more details regarding web crawling, visit:

https://brainly.com/question/14984597

#SPJ1

What is computer hardware tools?

Answers

Answer: Well, in basic terms, they are what makes a computer work. Such as the CPU, GPU, Graphics Card, Motherboard, SSD, and HHD.

Explanation:

Question 6 of 10
In the MakeCode micro:bit reaction speed test program, what will the events
you include in the first step detect?
OA. The user's preferences
OB. The user's input
OC. The user's skill level
OD. The user's age

Answers

In the MakeCode micro:bit reaction speed test program, the events that you include in the first step would detect: B. The user's input.

What is the MakeCode micro:bit?

In Computer technology, the MakeCode micro:bit can be defined as a programming software that is designed and developed by Microsoft Inc., in order to enable the measurement of a student’s reaction time and speed in completing a circuit path on a cardboard pad.

Additionally, the reaction time and speed of a student can be measured in both an undistracted and a distracted environment.

In order to take the measurement of a user's reaction speed, the first step is to prompt him or her to press the "A" button, which in this context can be categorized as an input from the end user to the MakeCode micro:bit.

Read more on MakeCode here: brainly.com/question/26855035

#SPJ1

what is a translator​

Answers

translates from one language into another, especially as a profession.

Which statements are true about a user-defined data type? Select 3 options.

It cannot be changed once you define it.

It can include numeric data.

It can include string data.

It can include bool data.

It can only include one data type.

Answers

[tex] \huge \fbox{\orange{Answer}}[/tex]

It cannot be changed once you define it.

It can include bool data.

It can include string data.

Which portion of this code represents the variable?

A. Well done!
B. fruitCount
C. otherSprite
D. 10

Answers

Answer:

fruitCount is the variable

Explanation:

Variables represent values, and in the "if" statement (light blue), it wants to know what the value of "fruitCount" is and if it is equal to 10.

similQuestion 2
I want to create an Excel workbook to keep track of my spending by month for the year, what would be the best names to give my worksheets?

1 point

Budget1, Budget2, Budget3


Spend1, Spend2, Spend3


June, July, August


Sheet1, Sheet2, Sheet3ar meaning in stability

Answers

The best names to give the worksheets for spending by month for the year will be June, July, August. The correct option is C.

What is a workbook?

A worksheet is a single page in a file created with an electronic spreadsheet tool such as Microsoft Excel or Sheets. A workbook is an Excel file that contains one or more worksheets.

A workbook is an Excel file that, like pages in a book, contains different sheets called worksheets.

To save a workbook, it must have at least one sheet. Excel is a set of work sheets (Sheet 1, Sheet 2, etc) Workbook is a collection of worksheets.

Because they are planning monthly spending, it is best to keep the file name as month name for convenience.

Thus, the correct option is C.

For more details regarding excel, visit:

https://brainly.com/question/3441128

#SPJ1

Given two integers low and high representing a range, return the sum of the integers in that range. For example, if low is 12 and high is 18, the returned values should be the sum of 12, 13, 14, 15, 16, 17, and 18, which is 105. If low is greater than high, return 0.

Answers

You get the 0 if low is greater than high for free, as the loop never runs any iterations if this is the case. The initial value of 0 remains and is returned.

Code for the given question:

public class RangeTest1 {

   public static void main(String[] args){

       System.out.println(sumRange(12, 18)); // prints 105

       System.out.println(sumRange(18, 12)); // prints 0

       System.out.println(sumRange(18, 18)); // prints 18

   }

   public static int sumRange(int low, int high)

   {

       int sum = 0;

       for (int val = low; val <= high; val++){

           sum += val;

       }

      return sum;

   }

}

Or you could use math, although you have to be careful of overflow if high is very large:

public static int sumRange(int low, int high)

{

 return high >= low ? (high*(high+1) - low*(low-1))/2 : 0;

}

To know more about Loops, visit: https://brainly.com/question/16922594

#SPJ4

Why would a programmer want to use an array instead of simple variables?

OA. To reduce the number of blocks used in a program
O B. To write code that is more interactive
OC. To include more detail and complexity
O D. To use a wider variety of code objects

Answers

To use a wider variety of code objects a programmer wants to use an array instead of simple variables

What is an array?

An array is a collection of elements of the same type that are stored in contiguous memory locations and can be individually referenced by using an index to a unique identifier. Five int values can be declared as an array without having to declare five different variables.

One of the most significant advantages of arrays is that they can be declared once and reused multiple times. It represents multiple values using a single variable. This improves code reusability and readability.

An array's memory can be allocated dynamically. This advantage of an array aids in the saving of system memory. It is also useful when the pre-defined array does not have enough memory. Memory can be manually allocated during run time. Furthermore, when memory allocation is not dynamic, data is stored in contiguous memory locations. The amount of storage required is determined by the type or size of the data.

Hence to conclude  a wider variety of code objects are used

To know more on arrays follow this link

https://brainly.com/question/28061186

#SPJ1

Information Security has to be considered in which phase of the Software Development Life Cycle (SDLC)?​

Answers

The security of a system must be considered throughout its development life cycle, from the earliest stages of system design through to disposal.

What is security?
Information technology
(IT) security refers to the procedures, apparatus, and personnel employed to safeguard a company's digital assets. IT security aims to prevent unauthorised users, also known as threat actors, from stealing, exploiting, or disrupting these assets, devices, and services. These dangers may come from the inside or the outside, and their origin and character may be deliberate or unintentional. In order to reduce vulnerabilities and focus on a variety of cyberthreats, a good security strategy employs a variety of techniques. The employment of security policies, software tools, and IT services is required for the detection, prevention, and response to security risks.

To learn more about security
https://brainly.com/question/25720881
#SPJ9

In microsoft access, when you have the field name firstname display as first name, you are changing what field property?.

Answers

In microsoft access, when you have the field name firstname display as first name, you are changing caption property of the field as If you don't specify a caption for a table field, the field's FieldName property setting will be used as the caption of a label attached to a control or as the column heading in Datasheet view.

Caption property in MIcrosoft Access:

A string expression that can hold up to 2,048 characters is the Caption property.

A table field's FieldName property setting will be used as the caption of a label attached to a control or as the column heading in Datasheet view if you don't specify a caption for the field. T

he caption for the underlying table field will be used if you don't specify one for a query field. A form, button, or label won't have a caption if you don't set one, so Microsoft Access will give it a name based on the object, like Form1.

The FieldName property setting for the field will be copied to the control's Name property box and will also appear in the label of the control created if you create a control by dragging a field from the field list without specifying a Caption property setting for the field.

When the HyperlinkAddress or HyperlinkSubAddress property is set for a label or command button control, the text of the Caption property serves as the hyperlink display text.

To know more about Microsoft Access, visit:https://brainly.com/question/24643423

#SPJ4

When can design templates be applied to the presentation?

when you start
when you add a new slide
before you close the program
all of the above
none of the above

[ DO NOT REPLY FOR POINTS YOU WILL BE REPORTED ]
(one answer) (edgenuitу)

Answers

Another PowerPoint question? I got you!

B. When you add a new slide

Applying a design template can be applied when you have a slide. You can't apply one without a new slide.

Which of the following statements about computational thinking are true? Select 3 options.
Responses

Computational thinking is a set of techniques used to help solve complex problems or understand complex systems.
Computational thinking is a set of techniques used to help solve complex problems or understand complex systems.

The result of computational thinking is a problem broken down into its parts to create a generalized model and possible solutions.
The result of computational thinking is a problem broken down into its parts to create a generalized model and possible solutions.

Computational thinking is basically synonymous with programming.
Computational thinking is basically synonymous with programming.

Computational thinking involves the techniques of decomposition, pattern recognition, abstraction, and algorithm development.
Computational thinking involves the techniques of decomposition, pattern recognition, abstraction, and algorithm development.

Understanding all of the minor details about a problem is critical in computational thinking.

Answers

The  statements about computational thinking that are true are:

1.The result of computational thinking is a problem broken down into its parts to create a generalized model and possible solutions.  

2. Computational thinking involves the techniques of decomposition, pattern recognition, abstraction, and algorithm development.

4. Computational thinking is a set of techniques used to help solve complex problems or understand complex systems.

What does computational thinking primarily aim to achieve?

Computational thinking (CT) is the ability to use ideas, approaches, methods, problem-solving techniques, and logical reasoning that are drawn from computer science and computing to solve issues in a variety of contexts, including those that arise in daily life.

In order to fully participate in a computational world, one must have a set of interrelated skills and practices for solving complex problems. These skills and practices can be learned across many different disciplines.

Learn more about computational thinking from

https://brainly.com/question/19189179
#SPJ1

Other Questions
a blood agar plate is shown below with an unknown staphylococcus species and novobiocin antibiotic disk. the species is most likely: I NEED HELP ASAP IL GIVE BRAINLYNESS(sorry im new )Why might an author decide to tell a story using a third-person narrator?An author might not know how to write in first-person.An author might want to show what just one character is thinking and feeling.Correct An author might want to describe what several characters are thinking, not just one.An author might decide that none of the characters is interesting enough to be the narrator. is the constant annual return over the 20 years that would provide the same total cumulative return over the entire investment period. during a home visit, the public health nurse assesses the peritoneal catheter exit site of a child with chronic renal failure. which finding should lead the nurse to determine a client has a risk for infection? a middle-age client with cancer has been prescribed patient-controlled analgesia (pca). the nurse caring for the client explains the functioning of pca. what is the main advantage of pca? How do the lieutenant governor, who leads the texas senate, and the speaker of the house, who leads the texas house of representatives, receive their positions of leadership?. When the rate of reaction of bleach and dye are studied which reactant is in excess?. Vaughn is learning about elements in chemistry class. Which type of vocabulary is Vaughn learning?conversationalsubject-specificliterarygeneral academic Write proportion statement and find missing side of the polygon. Completing college in the usual 4 years fallsunder which SMART goal category?A. TimelyB. MeasurableC. SpecificD. Attainable Fill in the blank: the final step of the dhcp discovery process is known as ______. Multiple choice, shuffle. Which portion of this code represents the variable?A. Well done!B. fruitCountC. otherSpriteD. 10 When delivering 2023 armada, what should you demonstrate to customers about the 2nd- row seats?. a company had total sales of $1,000,000, net sales of $975,800, and an average accounts receivable, net of $119,000. its accounts receivable turnover equals: "A toy rocket is shot vertically into the air from a launching pad 7 feet above the ground with an initial velocity of 72 feet per second. The height in feet, of the rocket above the ground at t seconds after launch is given by the function h(t)=-16 t+72 t+7. How long will it take the rocket to reach its maximum height? What is the maximum height?The rocket reaches its maximum height at second(s) after launch.(Simplify your answer.)The maximum height reached by the object is feet.(Simplify your answer.)" crane company manufactured 6,240 units of a component part that is used in its product and incurred the following costs: direct materials $36,400 direct labor 15,600 variable manufacturing overhead 10,400 fixed manufacturing overhead 20,800 $83,200 another company has offered to sell the same component part to the company for $13 per unit. the fixed manufacturing overhead consists mainly of depreciation on the equipment used to manufacture the part and would not be reduced if the component part was purchased from the outside firm. if the component part is purchased from the outside firm, crane company has the opportunity to use the factory equipment to produce another product which is estimated to have a contribution margin of $22,880. prepare an incremental analysis report for crane company which can serve as informational input into this make or buy decision. (enter negative amounts using either a negative sign preceding the number e.g. -45 or parentheses e.g. (45). do not leave any field blank. enter 0 for the amounts.) Why is writing the most difficult of all language skills A 5.00 mL sample of barium hydroxide is titrated to the phenolphthalein endpoint using hydrochloricacid. The five mL sample requires 18.02 mL of 0.0873 M HCl solution to reach the endpoint. What is theconcentration of the Ba(OH)2 solution? true or false early members of the genus homo may have used its oldowan tools to scavenge marrow from the bones of dead animals. the foreign entry mode that is the most costly, with firms bearing the full capital costs and risks of operating overseas, is .