An organization is moving its infrastructure to the cloud in an effort to meet the budget and reduce staffing requirements. The organization has three environments: development, testing, and production. These environment have interdependencies but must remain relatively segmented. Which of the following methods would BEST secure the company's infrastructure and be the simplest to manage and maintain?
A. Create three separate cloud accounts for each environment. Configure account peering and security rules to allow access to and from each environment.
B. Create one cloud account with one VPC for all environments. Purchase a virtual firewall and create granular security rules.
C. Create one cloud account and three separate VPCs for each environment. Create security rules to allow access to the from each environment.
D. Create three separate cloud accounts for each environment and a single core account for network services. Route all traffic through the core account.
Answer: C. Create one cloud account and three separate VPCs for each environment. Create security rules to allow access to the from each environment.
You might also like to view...
Which of the following loop statements is guaranteed to iterate the body of the loop at least once?
a) while(control) body; b) do body while(control); c) for (initialize; test; update) body; d) none of the above e) all of the above
Use a one-dimensional array to solve the following problem: A company pays its salespeople on a commission basis. The salespeople receive $200 per week, plus 9% of their gross sales for that week. For example, a salesperson who grosses $5000 in sales in a week receives $200 plus 9% of $5000, a total of $650. Write an application (using an array of counters) that determines how many of the salespeople earned salaries in each of the following ranges (assuming that each salesperson’s salary is truncated to an integer amount): $200–299, $300–399, $400–499, $500–599, $600–699, $700–799, $800– 899, $900–999 and over $999. Allow the user to enter the sales for each employee in a JTextField. The user should click the Calculate JButton to calculate that salesperson’s sala
a) Copying the template to your working directory. Copy the C:Examples Tutorial16ExercisesSalarySurvey directory to your C:SimplyJava directory.
b) Opening the template file. Open the SalarySurvey.java file in your text editor.
c) Create an array that represents the number of salaries in each range. On lines 32–33, create an empty int array called resultArray to store the number of employees who earn salaries in each range. Use line 32 for a comment and line 33 to create the array. The elements of resultArray will represent different ranges in the survey. Specify the size of resultArray as 11 using keyword new. There are 9 salary ranges in this application. For convenience, we use a slightly larger array, of size 11. You will ignore the first two elements of this array. The elements you will use are at locations
2–10, where each location represents a salary range (location 2 represents the range
200–299, location 3 represents the range 300–399, etc.). The proper locat
For a Windows computer to be able to access a *nix resource, which of the following must be enabled on both systems?
A. NetBIOS B. SMB C. CIFS D. NetBEUI
To order the records in the Client table by city in alphabetical order, use the ____ button.
A. Order Ascending B. Sort C. Sort Ascending D. Ascending