-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaws_test.txt
14151 lines (10220 loc) · 420 KB
/
aws_test.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
QUESTION 1
Under the shared responsibility model, which of the following is the customer responsible for?
A. Ensuring that disk drives are wiped after use.
B. Ensuring that firmware is updated on hardware devices.
C. Ensuring that data is encrypted at rest.
D. Ensuring that network cables are category six or higher.
Correct Answer: C
Explanation
Explanation/Reference:
Explanation:
AWS for a self-hosted database that requires a nightly shutdown for maintenance and cost-saving purposes
QUESTION 2
The use of what AWS feature or service allows companies to track and categorize spending on a detailed level?
A. Cost allocation tags
B. Consolidated billing
C. AWS Budgets
D. AWS Marketplace
Correct Answer: A
Explanation
Explanation/Reference:
Explanation:
https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html
QUESTION 3
Which service stores objects, provides real-time access to those objects, and offers versioning and lifecycle capabilities?
A. Amazon Glacier
B. AWS Storage Gateway
C. Amazon S3
D. Amazon EBS
Correct Answer: C
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/s3/faqs/
QUESTION 4
What AWS team assists customers with accelerating cloud adoption through paid engagements in any of several specialty practice areas?
A. AWS Enterprise Support
B. AWS Solutions Architects
C. AWS Professional Services
D. AWS Account Managers
Correct Answer: C
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/professional-services/
QUESTION 5
A customer would like to design and build a new workload on AWS Cloud but does not have the AWS- related software technical expertise in-house.
Which of the following AWS programs can a customer take advantage of to achieve that outcome?
A. AWS Partner Network Technology Partners
B. AWS Marketplace
C. AWS Partner Network Consulting Partners
D. AWS Service Catalog
Correct Answer: C
Explanation
QUESTION 6
Distributing workloads across multiple Availability Zones supports which cloud architecture design principle?
A. Implement automation.
B. Design for agility.
C. Design for failure.
D. Implement elasticity.
Correct Answer: C
Explanation
Explanation/Reference:
QUESTION 7
Which AWS services can host a Microsoft SQL Server database? (Select TWO.)
A. Amazon EC2
B. Amazon Relational Database Service (Amazon RDS)
C. Amazon Aurora
D. Amazon Redshift
E. Amazon S3
Correct Answer: AB
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/sql/
QUESTION 8
Which of the following inspects AWS environments to find opportunities that can save money for users and also improve system performance?
A. AWS Cost Explorer
B. AWS Trusted Advisor
C. Consolidated billing
D. Detailed billing
Correct Answer: B
Explanation
QUESTION 9
Which of the following Amazon EC2 pricing models allow customers to use existing server-bound software licenses?
A. Spot Instances
B. Reserved Instances
C. Dedicated Hosts
D. On-Demand Instances
Correct Answer: C
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/ec2/pricing/
QUESTION 10
Which AWS characteristics make AWS cost effective for a workload with dynamic user demand? (Select TWO.)
A. High availability
B. Shared security model
C. Elasticity
D. Pay-as-you-go pricing
E. Reliability
Correct Answer: CD
Explanation
QUESTION 11
Which service enables risk auditing by continuously monitoring and logging account activity, including user actions in the AWS Management Console and AWS
SDKs?
A. Amazon CloudWatch
B. AWS CloudTrail
C. AWS Config
D. AWS Health
Correct Answer: B
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/cloudtrail/
QUESTION 12
Which of the following are characteristics of Amazon S3? (Select TWO.)
A. A global file system
B. An object store
C. A local file store
D. A network file system
E. A durable storage system
Correct Answer: BE
Explanation
Explanation/Reference:
QUESTION 13
Which services can be used across hybrid AWS Cloud architectures? (Select TWO.)
A. Amazon Route 53
B. Virtual Private Gateway
C. Classic Load Balancer
D. Auto Scaling
E. Amazon CloudWatch default metrics
Correct Answer: AE
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/cloudwatch/.
You can also use CloudWatch in hybrid cloud architectures by using the CloudWatch Agent or API to monitor your on-premises resources
QUESTION 14
What costs are included when comparing AWS Total Cost of Ownership (TCO) with on-premises TCO?
A. Project management
B. Antivirus software licensing
C. Data center security
D. Software development
Correct Answer: C
Explanation
Explanation/Reference:
Explanation:
https://media.amazonwebservices.com/AWS_TCO_Web_Applications.pdf
QUESTION 15
A company is considering using AWS for a self-hosted database that requires a nightly shutdown for maintenance and cost-saving purposes.
Which service should the company use?
A. Amazon Redshift
B. Amazon DynamoDB
C. Amazon Elastic Compute Cloud (Amazon EC2) with Amazon EC2 instance store
D. Amazon EC2 with Amazon Elastic Block Store (Amazon EBS)
Correct Answer: D
Explanation
Explanation/Reference:
QUESTION 16
Which of the following is a correct relationship between regions, Availability Zones, and edge locations?
A. Data centers contain regions.
B. Regions contain Availability Zones.
C. Availability Zones contain edge locations.
D. Edge locations contain regions.
Correct Answer: B
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/about-aws/global-infrastructure/regions_az/#Region_Maps_and_Edge_Networks
QUESTION 17
Which AWS tools assist with estimating costs? (Select three.)
A. Detailed billing report
B. Cost allocation tags
C. AWS Simple Monthly Calculator
D. AWS Total Cost of Ownership (TCO) Calculator
E. Cost Eliminator
Correct Answer: BCD
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/premiumsupport/knowledge-center/estimating-aws-resource-costs/
QUESTION 18
Which of the following are advantages of AWS consolidated billing? (Select TWO.)
A. The ability to receive one bill for multiple accounts
B. Service limits increasing by default in all accounts
C. A fixed discount on the monthly bill
D. Potential volume discounts, as usage in all accounts is combined
E. The automatic extension of the master account's AWS support plan to all accounts
Correct Answer: AD
Explanation
Explanation/Reference:
Explanation:
https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/consolidated-billing.html
QUESTION 19
Which of the following Reserved Instance (RI) pricing models provides the highest average savings compared to On-Demand pricing?
A. One-year, No Upfront, Standard RI pricing
B. One-year, All Upfront, Convertible RI pricing
C. Three-year, All Upfront, Standard RI pricing
D. Three-year, No Upfront, Convertible RI pricing
Correct Answer: C
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/ec2/pricing/reserved-instances/pricing/
QUESTION 20
Compared with costs in traditional and virtualized data centers, AWS has:
A. greater variable costs and greater upfront costs.
B. fixed usage costs and lower upfront costs.
C. lower variable costs and greater upfront costs.
D. lower variable costs and lower upfront costs.
Correct Answer: D
Explanation
Explanation/Reference:
Explanation:
https://d1.awsstatic.com/whitepapers/introduction-to-aws-cloud-economics-final.pdf (10)
QUESTION 21
A characteristic of edge locations is that they:
A. host Amazon EC2 instances closer to users.
B. help lower latency and improve performance for users.
C. cache frequently changing data without reaching the origin server.
D. refresh data changes daily.
Correct Answer: B
Explanation
Explanation/Reference:
QUESTION 22
Which of the following can limit Amazon Storage Service (Amazon S3) bucket access to specific users?
A. A public and private key-pair
B. Amazon Inspector
C. AWS Identity and Access Management (IAM) policies
D. Security Groups
Correct Answer: C
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/blogs/security/how-to-restrict-amazon-s3-bucket-access-to-a-specific-iam-role/
QUESTION 23
Which of the following security-related actions are available at no cost?
A. Calling AWS Support
B. Contacting AWS Professional Services to request a workshop
C. Accessing forums, blogs, and whitepapers
D. Attending AWS classes at a local university
Correct Answer: C
Explanation
QUESTION 24
Which of the Reserved Instance (RI) pricing models can change the attributes of the RI as long as the exchange results in the creation of RIs of equal or greater
value?
A. Dedicated RIs
B. Scheduled RIs
C. Convertible RIs
D. Standard RIs
Correct Answer: C
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/ec2/pricing/reserved-instances/
QUESTION 25
Which AWS feature will reduce the customer's total cost of ownership (TCO)?
A. Shared responsibility security model
B. Single tenancy
C. Elastic computing
D. Encryption
Correct Answer: C
Explanation
Explanation/Reference:
QUESTION 26
Which of the following services will automatically scale with an expected increase in web traffic?
A. AWS CodePipeline
B. Elastic Load Balancing
C. Amazon EBS
D. AWS Direct Connect
Correct Answer: B
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/elasticloadbalancing/
QUESTION 27
Where are AWS compliance documents, such as an SOC 1 report, located?
A. Amazon Inspector
B. AWS CloudTrail
C. AWS Artifact
D. AWS Certificate Manager
Correct Answer: C
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/compliance/soc-faqs/
QUESTION 28
Under the AWS shared responsibility model, which of the following activities are the customer's responsibility? (Select TWO.)
A. Patching operating system components for Amazon Relational Database Server (Amazon RDS)
B. Encrypting data on the client-side
C. Training the data center staff
D. Configuring Network Access Control Lists (ACL)
E. Maintaining environmental controls within a data center
Correct Answer: BD
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/compliance/shared-responsibility-model/
QUESTION 29
Which is a recommended pattern for designing a highly available architecture on AWS?
A. Ensure that components have low-latency network connectivity.
B. Run enough Amazon EC2 instances to operate at peak load.
C. Ensure that the application is designed to accommodate failure of any single component.
D. Use a monolithic application that handles all operations.
Correct Answer: C
Explanation
QUESTION 30
According to best practices, how should an application be designed to run in the AWS Cloud?
A. Use tighly coupled components.
B. Use loosely coupled components.
C. Use infrequently coupled components.
D. Use frequently coupled components.
Correct Answer: B
Explanation
Explanation/Reference:
Explanation:
https://d1.awsstatic.com/whitepapers/AWS_Cloud_Best_Practices.pdf
QUESTION 31
AWS supports which of the following methods to add security to Identity and Access Management (IAM) users? (Select TWO.)
A. Implementing Amazon Rekognition
B. Using AWS Shield-protected resources
C. Blocking access with Security Groups
D. Using Multi-Factor Authentication (MFA)
E. Enforcing password strength and expiration
Correct Answer: DE
Explanation
QUESTION 32
Which AWS services should be used for read/write of constantly changing data? (Select TWO.)
A. Amazon Glacier
B. Amazon RDS
C. AWS Snowball
D. Amazon Redshift
E. Amazon EFS
Correct Answer: BE
Explanation
Explanation/Reference:
QUESTION 33
What is one of the advantages of the Amazon Relational Database Service (Amazon RDS)?
A. It simplifies relational database administration tasks.
B. It provides 99.99999999999% reliability and durability.
C. It automatically scales databases for loads.
D. It enabled users to dynamically adjust CPU and RAM resources.
Correct Answer: A
Explanation
Explanation/Reference:
Explanation:
In the main RDS page though, Lower administrative burden is listed as part of the benefits.
https://aws.amazon.com/rds/
QUESTION 34
A customer needs to run a MySQL database that easily scales.
Which AWS service should they use?
A. Amazon Aurora
B. Amazon Redshift
C. Amazon DynamoDB
D. Amazon ElastiCache
Correct Answer: A
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/rds/aurora/serverless/
QUESTION 35
Which of the following components of the AWS Global Infrastructure consists of one or more discrete data centers interconnected through low latency links?
A. Availability Zone
B. Edge location
C. Region
D. Private networking
Correct Answer: A
Explanation
Explanation/Reference:
Explanation:
https://docs.aws.amazon.com/whitepapers/latest/aws-overview/global-infrastructure.html
QUESTION 36
Which of the following is a shared control between the customer and AWS?
A. Providing a key for Amazon S3 client-side encryption
B. Configuration of an Amazon EC2 instance
C. Environmental controls of physical AWS data centers
D. Awareness and training
Correct Answer: D
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/compliance/shared-responsibility-model/
QUESTION 37
How many Availability Zones should compute resources be provisioned across to achieve high availability?
A. A minimum of one
B. A minimum of two
C. A minimum of three
D. A minimum of four or more
Correct Answer: B
Explanation
QUESTION 38
One of the advantages to moving infrastructure from an on-premises data center to the AWS Cloud is:
A. it allows the business to eliminate IT bills.
B. it allows the business to put a server in each customer's data center.
C. it allows the business to focus on business activities.
D. it allows the business to leave servers unpatched.
Correct Answer: C
Explanation
QUESTION 39
What is the lowest-cost, durable storage option for retaining database backups for immediate retrieval?
A. Amazon S3
B. Amazon Glacier
C. Amazon EBS
D. Amazon EC2 Instance Store
Correct Answer: A
Explanation
QUESTION 40
Which AWS IAM feature allows developers to access AWS services through the AWS CLI?
A. API keys
B. Access keys
C. User names/Passwords
D. SSH keys
Correct Answer: B
Explanation
Explanation/Reference:
Explanation:
https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_access-keys.html
QUESTION 41
Which of the following is a fast and reliable NoSQL database service?
A. Amazon Redshift
B. Amazon RDS
C. Amazon DynamoDB
D. Amazon S3
Correct Answer: C
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/dynamodb/
QUESTION 42
What is an example of agility in the AWS Cloud?
A. Access to multiple instance types
B. Access to managed services
C. Using Consolidated Billing to produce one bill
D. Decreased acquisition time for new compute resources
Correct Answer: D
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/blogs/enterprise-strategy/risk-is-lack-of-agility/
QUESTION 43
Which service should a customer use to consolidate and centrally manage multiple AWS accounts?
A. AWS IAM
B. AWS Organizations
C. AWS Schema Conversion Tool
D. AWS Config
Correct Answer: B
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/organizations/
QUESTION 44
What approach to transcoding a large number of individual video files adheres to AWS architecture principles?
A. Using many instances in parallel
B. Using a single large instance during off-peak hours
C. Using dedicated hardware
D. Using a large GPU instance type
Correct Answer: A
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/solutions/case-studies/encoding/
QUESTION 45
For which auditing process does AWS have sole responsibility?
A. AWS IAM policies
B. Physical security
C. Amazon S3 bucket policies
D. AWS CloudTrail Logs
Correct Answer: B
Explanation
QUESTION 46
Which feature of the AWS Cloud will support an international company's requirement for low latency to all of its customers?
A. Fault tolerance
B. Global reach
C. Pay-as-you-go pricing
D. High availability
Correct Answer: B
Explanation
Explanation/Reference:
Explanation:
Global Reach will support an international company using Cloud-Front.
QUESTION 47
Which of the following is the customer's responsibility under the AWS shared responsibility model?
A. Patching underlying infrastructure
B. Physical security
C. Patching Amazon EC2 instances
D. Patching network infrastructure
Correct Answer: C
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/compliance/shared-responsibility-model/
QUESTION 48
A customer is using multiple AWS accounts with separate billing.
How can the customer take advantage of volume discounts with minimal impact to the AWS resources?
A. Create one global AWS acount and move all AWS resources to tha account.
B. Sign up for three years of Reserved Instance pricing up front.
C. Use the consolidated billing feature from AWS Organizations.
D. Sign up for the AWS Enterprise support plan to get volume discounts.
Correct Answer: C
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/answers/account-management/aws-multi-account-billing-strategy/
QUESTION 49
Which of the following are features of Amazon CloudWatch Logs? (Select TWO.)
A. Summaries by Amazon Simple Notification Service (Amazon SNS)
B. Free Amazon Elasticsearch Service analytics
C. Provided at no charge
D. Real-time monitoring
E. Adjustable retention
Correct Answer: DE
Explanation
QUESTION 50
Which of the following is an AWS managed Domain Name System (DNS) web service?
A. Amazon Route 53
B. Amazon Neptune
C. Amazon SageMaker
D. Amazon Lightsail
Correct Answer: A
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/getting-started/tutorials/get-a-domain/
QUESTION 51
A customer is deploying a new application and needs to choose an AWS Region.
Which of the following factors could influence the customer's decision? (Select TWO.)
A. Reduced latency to users
B. The application's presentation in the local language
C. Data sovereignty compliance
D. Cooling costs in hotter climates
E. Proximity to the customer's office for on-site visits
Correct Answer: AC
Explanation
QUESTION 52
Which storage service can be used as a low-cost option for hosting static websites?
A. Amazon Glacier
B. Amazon DynamoDB
C. Amazon Elastic File System (Amazon EFS)
D. Amazon Simple Storage Service (Amazon S3)
Correct Answer: D
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/getting-started/projects/host-static-website/
QUESTION 53
Which Amazon EC2 instance pricing model can provide discounts of up to 90%?
A. Reserved Instances
B. On-Demand
C. Dedicated Hosts
D. Spot Instances
Correct Answer: D
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/ec2/spot/
QUESTION 54
What is the AWS customer responsible for according to the AWS shared responsibility model?
A. Physical access controls
B. Data encryption
C. Secure disposal of storage devices
D. Environmental risk management
Correct Answer: B
Explanation
QUESTION 55
Which of the following AWS Cloud services can be used to run a customer-managed relational database?
A. Amazon EC2
B. Amazon Route 53
C. Amazon ElastiCache
D. Amazon DynamoDB
Correct Answer: A
Explanation
Explanation/Reference:
QUESTION 56
A company is looking for a scalable data warehouse solution.
Which of the following AWS solutions would meet the company's needs?
A. Amazon Simple Storage Service (Amazon S3)
B. Amazon DynamoDB
C. Amazon Kinesis
D. Amazon Redshift
Correct Answer: D
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/redshift/
QUESTION 57
Which statement best describes Elastic Load Balancing?
A. It translates a domain name into an IP address using DNS.
B. It distributes incoming application traffic across one or more Amazon EC2 instances.
C. It collects metrics on connected Amazon EC2 instances.
D. It automatically adjusts the number of Amazon EC2 instances to support incoming traffic.
Correct Answer: B
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/elasticloadbalancing/
QUESTION 58
Which of the following are valid ways for a customer to interact with AWS services? (Select TWO.)
A. Command line interface
B. On-premises
C. Software Development Kits
D. Software-as-a-service
E. Hybrid
Correct Answer: AC
Explanation
Explanation/Reference:
QUESTION 59
The AWS Cloud's multiple Regions are an example of:
A. agility.
B. global infrastructure.
C. elasticity.
D. pay-as-you-go pricing.
Correct Answer: B
Explanation
Explanation/Reference:
QUESTION 60
Which of the following AWS services can be used to serve large amounts of online video content with the lowest possible latency? (Select TWO.)
A. AWS Storage Gateway
B. Amazon S3
C. Amazon Elastic File System (EFS)
D. Amazon Glacier
E. Amazom CloudFront
Correct Answer: BE
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/getting-started/tutorials/deliver-content-faster/ https://aws.amazon.com/cloudfront/
QUESTION 61
Web servers running on Amazon EC2 access a legacy application running in a corporate data center.
What term would describe this model?
A. Cloud-native
B. Partner network
C. Hybrid architecture
D. Infrastructure as a service
Correct Answer: C
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/enterprise/hybrid/
QUESTION 62
What is the benefit of using AWS managed services, such as Amazon ElastiCache and Amazon Relational Database Service (Amazon RDS)?
A. They require the customer to monitor and replace failing instances.
B. They have better performance than customer-managed services.
C. They simplify patching and updating underlying OSs.
D. They do not require the customer to optimize instance type or size selections.
Correct Answer: D
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/rds/instance-types/
Amazon RDS provides a selection of instance types optimized to fit different relational database use cases. Instance types comprise varying combinations of CPU,
memory, storage, and networking capacity and give you the flexibility to choose the appropriate mix of resources for your database. Each instance type includes
serveral instance sizes, allowing you to scale your database to the requirements of your target workload.
QUESTION 63
Which service provides a virtually unlimited amount of online highly durable object storage?
A. Amazon Redshift
B. Amazon Elastic File System (Amazon EFS)
C. Amazon Elastic Container Service (Amazon ECS)
D. Amazon S3
Correct Answer: D
Explanation
Explanation/Reference:
Explanation:
https://aws.amazon.com/what-is-cloud-object-storage/
QUESTION 64
Which of the following Identity and Access Management (IAM) entities is associated with an access key ID and secret access key when using AWS Command
Line Interface (AWS CLI)?
A. IAM group
B. IAM user
C. IAM role
D. IAM policy
Correct Answer: B
Explanation
Explanation/Reference:
Explanation:
Access keys are long-term credentials for an IAM user or the AWS account root user. You can use access keys to sign programmatic requests to the AWS CLI or
AWS API (directly or using the AWS SDK). For more information, see Signing AWS API Requests in the Amazon Web Services General Reference.
QUESTION 65
Which of the following security-related services does AWS offer? (Select TWO.)
A. Multi-factor authentication physical tokens
B. AWS Trusted Advisor security checks
C. Data encryption
D. Automated penetration testing
E. Amazon S3 copyrighted content detection
Correct Answer: BC
Explanation
Explanation/Reference:
Explanation:
Penetration testing is not correct, because it can be done by customers on their own resources.
QUESTION 66
Which AWS managed service is used to host databases?
A. AWS Batch
B. AWS Artifact
C. AWS Data Pipeline
D. Amazon RDS
Correct Answer: D
Explanation
Explanation/Reference:
Explanation:
Amazon Relational Database Service (Amazon RDS) makes it easy to set up, operate, and scale a relational database in the cloud. It provides cost-efficient and
resizable capacity while automating time- consuming administration tasks such as hardware provisioning, database setup, patching and backups. It frees you to
focus on your applications so you can give them the fast performance, high availability, security and compatibility they need.
Reference: https://aws.amazon.com/rds/?c=db&sec=srv
QUESTION 67
Which AWS service provides a simple and scalable shared file storage solution for use with Linux-based AWS and on-premises servers?
A. Amazon S3
B. Amazon Glacier
C. Amazon EBS
D. Amazon EFS
Correct Answer: D
Explanation
Explanation/Reference:
Explanation:
Amazon Elastic File System (Amazon EFS) provides a simple, scalable, fully managed elastic NFS file system for use with AWS Cloud services and on-premises
resources. It is built to scale on demand to petabytes without disrupting applications, growing and shrinking automatically as you add and remove files, eliminating
the need to provision and manage capacity to accommodate growth.
Amazon EFS is designed to provide the throughput, IOPS, and low latency needed for Linux workloads.
Throughput and IOPS scale as a file system grows and can burst to higher throughput levels for short periods of time to support the unpredictable performance
needs of file workloads. For the most demanding workloads, Amazon EFS can support performance over 10 GB/sec and up to 500,000 IOPS.
QUESTION 68
When architecting cloud applications, which of the following are a key design principle?
A. Use the largest instance possible
B. Provision capacity for peak load
C. Use the Scrum development process
D. Implement elasticity
Correct Answer: D
Explanation