If you want to launch Amazon Elastic Compute Cloud (EC2) instances and assign each instance a predetermined private IP address you should:

A. Launch the instance from a private Amazon Machine Image (AMI).
B. Assign a group of sequential Elastic IP address to the instances.
C. Launch the instances in the Amazon Virtual Private Cloud (VPC).
D. Launch the instances in a Placement Group.
E. Use standard EC2 instances since each instance gets a private Domain Name Service (DNS) already.

Answer: C. Launch the instances in the Amazon Virtual Private Cloud (VPC).

Computer Science & Information Technology

You might also like to view...

Answer the following statements true (T) or false (F)

1) Elements can be added at any location within an array after it’s created. 2) The Capacity property indicates the number of elements stored in the List. 3) LINQ is used to query collections in the same way it’s used to query arrays. 4) A LINQ query is executed when it’s created.

Computer Science & Information Technology

Which of the following statements is not valid C++ code?

A) int ptr = &num1; B) int ptr = int *num1; C) float num1 = &ptr2; D) All of the above are valid. E) All of the above are invalid.

Computer Science & Information Technology