-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAWS Interview Questions and Answers
1499 lines (1499 loc) · 87.3 KB
/
AWS Interview Questions and Answers
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
AWS Interview Questions and Answers
Incase you researching for AWS Interview Questions and answers for Experienced or Freshers,
you are at the correct place. There is a parcel of chances from many presumed organizations on
the planet. The AWS advertise is relied upon to develop to more than $5 billion by 2021, from just
$180 million, as per AWS industry gauges. In this way, despite everything you have the chance to
push forward in your vocation in AWS Development. Gangboard offers Advanced AWS Interview
Questions and answers that assist you in splitting your AWS interview and procure dream
vocation as AWS Developer.
<span style="display: inline-block; width: 0px; overflow: hidden;
line-height: 0;" data-mce-type="bookmark" class="mce_SELRES_start"> </span>
Best AWS Interview Questions and Answers
Do you believe that you have the right stuff to be a section in the advancement of future AWS, the
GangBoard is here to control you to sustain your vocation. Various fortune 1000 organizations
around the world are utilizing the innovation of AWS to meet the necessities of their customers.
AWS is being utilized as a part of numerous businesses. To have a great development in AWS
work, our page furnishes you with nitty-gritty data as AWS prospective employee meeting
questions and answers. AWS Interview Questions and answers are prepared by 10+ years of
experienced industry experts. AWS Interview Questions and answers are very useful to the
Fresher or Experienced person who is looking for a new challenging job from the reputed
company. Our AWS Questions and answers are very simple and have more examples for your
better understanding.
By this AWS Interview Questions and answers, many students are got
placed in many reputed companies with high package salary. So utilize our AWS Interview
Questions and answers to grow in your career.
Become an AWS Expert with Certification in 25hours
Q1) What is AWS?
Answer: AWS stands for Amazon Web Services. AWS is a platform that provides on-demand
resources for hosting web services, storage, networking, databases and other resources over the
internet with a pay-as-you-go pricing.
Q2) What are the components of AWS?
Answer : EC 2 ElasticComputeCloud, S3 SimpleStorageService, Store, Cloudwatch, Key-Paris are few of the components of AWS.
Q3) What are key-pairs?
Answer:Key-pairs are secure login information for your instances/virtual machines. To connect to
the instances we use key-pairs that contain a public-key and private-key.
Q4) What is S3?
Answer:S3 stands for Simple Storage Service. It is a storage service that provides an interface
that you can use to store any amount of data, at any time, from anywhere in the world. With S3
you pay only for what you use and the payment model is pay-as-you-go.
Q5) What are the pricing models for EC2instances?
Answer:The different pricing model for EC2 instances are as below,
On-demand
Reserved
Spot
Scheduled
Dedicated
Q6) What are the types of volumes for EC2 instances?
Answer:
There are two types of volumes,
Instance store volumes
EBS ElasticBlockStores
Q7) What are EBS volumes?
Answer:EBS stands for Elastic Block Stores. They are persistent volumes that you can attach to
the instances. With EBS volumes, your data will be preserved even when you stop your
instances, unlike your instance store volumes where the data is deleted when you stop the
instances.
Q8) What are the types of volumes in EBS?
Answer:Following are the types of volumes in EBS,
General purpose
Provisioned IOPS
Magnetic
Cold HDD
Throughput optimized
Q9) What are the different types of instances?
Answer: Following are the types of instances,
General purpose
Computer Optimized
Storage Optimized
Memory Optimized
Accelerated Computing
Q10) What is an auto-scaling and what are the components?
Answer: Auto scaling allows you to automatically scale-up and scale-down the number of
instances depending on the CPU utilization or memory utilization. There are 2 components in
Auto scaling, they are Auto-scaling groups and Launch Configuration.
Get AWS Online Training
Q11) What are reserved instances?
Answer: Reserved instances are the instance that you can reserve a fixed capacity of EC2
instances. In reserved instances you will have to get into a contract of 1 year or 3 years.
Q12)What is an AMI?
Answer: AMI stands for Amazon Machine Image. AMI is a template that contains the software
configurations, launch permission and a block device mapping that specifies the volume to
attach to the instance when it is launched.
Q13) What is an EIP?
Answer: EIP stands for Elastic IP address. It is designed for dynamic cloud computing. When you
want to have a static IP address for your instances when you stop and restart your instances, you
will be using EIP address.
Q14) What is Cloudwatch?
Answer: Cloudwatch is a monitoring tool that you can use to monitor your various AWS
resources. Like health check, network, Application, etc.
Q15) What are the types in cloudwatch?
Answer: There are 2 types in cloudwatch. Basic monitoring and detailed monitoring. Basic
monitoring is free and detailed monitoring is chargeable.
Q16) What are the cloudwatch metrics that are available for EC2 instances?
Answer: Diskreads, Diskwrites, CPU utilization, networkpacketsIn, networkpacketsOut,
networkIn, networkOut, CPUCreditUsage, CPUCreditBalance.
Q17) What is the minimum and maximum size of individual objects that you can
store in S3
Answer: The minimum size of individual objects that you can store in S3 is 0 bytes and the
maximum bytes that you can store for individual objects is 5TB.
Q18) What are the different storage classes in S3?
Answer: Following are the types of storage classes in S3,
Standard frequently accessed
Standard infrequently accessed
One-zone infrequently accessed.
Glacier
RRS reducedredundancystorage
Q19) What is the default storage class in S3?
Answer: The default storage class in S3 in Standard frequently accessed.
Became an AWS Expert with Certification in 25hours
Q20) What is glacier?
Answer: Glacier is the back up or archival tool that you use to back up your data in S3.
Q21) How can you secure the access to your S3 bucket?
Answer: There are two ways that you can control the access to your S3 buckets,
ACL Access ControlList
Bucket polices
Q22) How can you encrypt data in S3?
Answer: You can encrypt the data by using the below methods,
S e r v e r S i d e E n c r y p t i o n S 3 ( A E S 2 5 6 e n c r y p t i o n )
S e r v e r S i d e E n c r y p t i o n K M S ( K e y m a n a g e m e n t S e r v i c e )
S e r v e r S i d e E n c r y p t i o n C ( C l i e n t S i d e )
Q23) What are the parameters for S3 pricing?
Answer: The pricing model for S3 is as below,
Storage used
Number of requests you make
Storage management
Data transfer
Transfer acceleration
Q24) What is the pre-requisite to work with Cross region replication in S3?
Answer: You need to enable versioning on both source bucket and destination to work with cross
region replication. Also both the source and destination bucket should be in different region.
Q25) What are roles?
Answer: Roles are used to provide permissions to entities that you trust within your AWS
account. Roles are users in another account. Roles are similar to users but with roles you do not
need to create any username and password to work with the resources.
Q26) What are policies and what are the types of policies?
Answer: Policies are permissions that you can attach to the users that you create. These policies
will contain that access that you have provided to the users that you have created. There are 2
types of policies.
Managed policies
Inline policies
Q27) What is cloudfront?
Answer: Cloudfront is an AWS web service that provided businesses and application developers
an easy and efficient way to distribute their content with low latency and high data transfer
speeds. Cloudfront is content delivery network of AWS.
Q28) What are edge locations?
Answer: Edge location is the place where the contents will be cached. When a user tries to
access some content, the content will be searched in the edge location. If it is not available then
the content will be made available from the origin location and a copy will be stored in the edge
location.
Q29) What is the maximum individual archive that you can store in glacier?
Answer: You can store a maximum individual archive of upto 40 TB.
Get AWS 100% Practical Training
Q30) What is VPC?
Answer: VPC stands for Virtual Private Cloud. VPC allows you to easily customize your
networking configuration. VPC is a network that is logically isolated from other network in the
cloud. It allows you to have your own IP address range, subnets, internet gateways, NAT
gateways and security groups.
Q31) What is VPC peering connection?
Answer: VPC peering connection allows you to connect 1 VPC with another VPC. Instances in
these VPC behave as if they are in the same network.
Q32) What are NAT gateways?
Answer: NAT stands for Network Address Translation. NAT gateways enables instances in a
private subnet to connect to the internet but prevent the internet from initiating a connection with
those instances.
Q33) How can you control the security to your VPC?
Answer: You can use security groups and NACL (Network Access Control List) to control the
security to your
VPC.
Q34) What are the different types of storage gateway?
Answer: Following are the types of storage gateway.
File gateway
Volume gateway
Tape gateway
Q35) What is a snowball?
Answer: Snowball is a data transport solution that used source appliances to transfer large
amounts of data into and out of AWS. Using snowball, you can move huge amount of data from
one place to another which reduces your network costs, long transfer times and also provides
better security.
Q36) What are the database types in RDS?
Answer: Following are the types of databases in RDS,
Aurora
Oracle
MYSQL server
Postgresql
MariaDB
SQL server
Q37) What is a redshift?
Answer: Amazon redshift is a data warehouse product. It is a fast and powerful, fully managed,
petabyte scale data warehouse service in the cloud.
Q38) What is SNS?
Answer: SNS stands for Simple Notification Service. SNS is a web service that makes it easy to
notifications from the cloud. You can set up SNS to receive email notification or message
notification.
Q39) What are the types of routing polices in route53?
Answer: Following are the types of routing policies in route53,
Simple routing
Latency routing
Failover routing
Geolocation routing
Weighted routing
Multivalue answer
Q40) What is the maximum size of messages in SQS?
Answer: The maximum size of messages in SQS is 256 KB.
Q41) What are the types of queues in SQS?
Answer: There are 2 types of queues in SQS.
Standard queue
FIFO (First In First Out)
Q42) What is multi-AZ RDS?
Answer: Multi-AZ (Availability Zone) RDS allows you to have a replica of your production
database in another availability zone. Multi-AZ (Availability Zone) database is used for disaster
recovery. You will have an exact copy of your database. So when your primary database goes
down, your application will automatically failover to the standby database.
Q43) What are the types of backups in RDS database?
Answer: There are 2 types of backups in RDS database.
Automated backups
Manual backups which are known as snapshots.
Q44) What is the difference between security groups and network access control
list?
Answer:
Security Groups Network access control list
Can control the access at
the instance level
Can control access at the
subnet level
Can add rules for “allow”
only
Can add rules for both
“allow” and “deny”
Evaluates all rules before
allowing the traffic
Rules are processed in
order number when
allowing traffic.
Can assign unlimited
number of security groups
Can assign upto 5
security groups.
Statefull filtering Stateless filtering
Q45) What are the types of load balancers in EC2?
Answer: There are 3 types of load balancers,
Application load balancer
Network load balancer
Classic load balancer
Become an AWS Certified Expert in 25Hours
Q46) What is and ELB?
Answer: ELB stands for Elastic Load balancing. ELB automatically distributes the incoming
application traffic or network traffic across multiple targets like EC2, containers, IP addresses.
Q47) What are the two types of access that you can provide when you are
creating users?
Answer: Following are the two types of access that you can create.
Programmatic access
Console access
Q48) What are the benefits of auto scaling?
Answer: Following are the benefits of auto scaling
Better fault tolerance
Better availability
Better cost management
Q49) What are security groups?
Answer: Security groups acts as a firewall that contains the traffic for one or more instances. You
can associate one or more security groups to your instances when you launch then. You can add
rules to each security group that allow traffic to and from its associated instances. You can
modify the rules of a security group at any time, the new rules are automatically and immediately
applied to all the instances that are associated with the security group
Get AWS Online Training
Q 5 0 ) W h a t a r e s h a r e d A M I s ?
A n s w e r : S h a r e d A M I s a r e t h e A M I t h a t a r e c r e a t e d b y o t h e r d e v e l o other developed to use.
Q51)What is the difference between the classic load balancer and application
load balancer?
Answer: Dynamic port mapping, multiple port multiple listeners is used in Application Load
Balancer, One port one listener is achieved via Classic Load Balancer
Q52) By default how many Ip address does aws reserve in a subnet?
Answer: 5
Q53) What is meant by subnet?
Answer: A large section of IP Address divided in to chunks are known as subnets
Q54) How can you convert a public subnet to private subnet?
Answer: Remove IGW & add NAT Gateway, Associate subnet in Private route table
Q55) Is it possible to reduce a ebs volume?
A n s w e r : n o i t s n o t p o s s i b l e , w e c a n i n c r e a s e i t b u t n o t r e d u c e t h e Q56) What is the use of elastic ip are they charged by AWS?
Answer: These are ipv4 address which are used to connect the instance from internet, they are
charged if the instances are not attached to it
Q57) One of my s3 is bucket is deleted but i need to restore is there any possible
way?
Answer: If versioning is enabled we can easily restore them
Q58) When I try to launch an ec2 instance i am getting Service limit exceed, how
to fix the issue?
Answer: By default AWS offer service limit of 20 running instances per region, to fix the issue we
need to contact AWS support to increase the limit based on the requirement
Q59) I need to modify the ebs volumes in Linux and windows is it possible
Answer: yes its possible from console use modify volumes in section give the size u need then
for windows go to disk management for Linux mount it to achieve the modification
Get AWS Online Training
Q60) Is it possible to stop a RDS instance, how can I do that?
A n s w e r : Y e s i t s p o s s i b l e t o s t o p r d s . I n s t a n c e w h i c h a r e n o n - p r o d Q61) What is meant by parameter groups in rds. And what is the use of it?
Answer: Since RDS is a managed service AWS offers a wide set of parameter in RDS as
parameter group which is modified as per requirement
Q62) What is the use of tags and how they are useful?
Answer: Tags are used for identification and grouping AWS Resources
Q63) I am viewing an AWS Console but unable to launch the instance, I receive
an IAM Error how can I rectify it?
A n s w e r : A s A W S u s e r I d o n t h a v e a c c e s s t o u s e i t , I n e e d t o h a v e Q 6 4 ) I d o n t w a n t m y A W S A c c o u n t i d t o b e e x p o s e d t o Answer: In IAM console there is option as sign in url where I can rename my own account name
with AWS account
Q65) By default how many Elastic Ip address does AWS Offer?
Answer: 5 elastic ip per region
Q66) You are enabled sticky session with ELB. What does it do with your
instance?
Answer: Binds the user session with a specific instance
Q67) Which type of load balancer makes routing decisions at either the
transport layer or the
Application layer and supports either EC2 or VPC.
Answer: Classic Load Balancer
Q68) Which is virtual network interface that you can attach to an instance in a
VPC?
Answer: Elastic Network Interface
Q69) You have launched a Linux instance in AWS EC2. While configuring
security group, you
Have selected SSH, HTTP, HTTPS protocol. Why do we need to select SSH?
Answer: To verify that there is a rule that allows traffic from EC2 Instance to your computer
Q70) You have chosen a windows instance with Classic and you want to make
some change to the
Security group. How will these changes be effective?
Answer: Changes are automatically applied to windows instances
Q71) Load Balancer and DNS service comes under which type of cloud service?
Answer: IAAS-Storage
Q72) You have an EC2 instance that has an unencrypted volume. You want to
create another
Encrypted volume from this unencrypted volume. Which of the following steps
can achieve this?
Answer: Create a snapshot of the unencrypted volume (applying encryption parameters), copy
the. Snapshot and create a volume from the copied snapshot
Q73) Where does the user specify the maximum number of instances with the
auto scaling Commands?
Answer: Auto scaling Launch Config
Q74) Which are the types of AMI provided by AWS?
Answer: Instance Store backed, EBS Backed
Q75) After configuring ELB, you need to ensure that the user requests are
always attached to a Single instance. What setting can you use?
Answer: Sticky session
Q76) When do I prefer to Provisioned IOPS over the Standard RDS storage?
Answer:If you have do batch-oriented is workloads.
Q77) If I am running on my DB Instance a Multi-AZ deployments, can I use to the
stand by the DB Instance for read or write a operation along with to primary DB
instance?
Answer: Primary db instance does not working.
Q78) Which the AWS services will you use to the collect and the process
e-commerce data for the near by real-time analysis?
Answer: Good of Amazon DynamoDB.
Q79) A company is deploying the new two-tier an web application in AWS. The
company has to limited on staff and the requires high availability, and the
application requires to complex queries and table joins. Which configuration
p r o v i d e s t o t h e s o l u t i o n f o r c o m p a n y s r e q u i r e m e n t s ?
Answer: An web application provide on Amazon DynamoDB solution.
Q80) Which the statement use to cases are suitable for Amazon DynamoDB?
Answer:The storing metadata for the Amazon S3 objects& The Running of relational joins and
complex an updates.
Q 8 1 ) Y o u r a p p l i c a t i o n h a s t o t h e r e t r i e v e o n d a t a f r o m every 5 minutes and then data is stored in the DynamoDB, later every day at the
particular time the data is an extracted into S3 on a per user basis and then your
application is later on used to visualize the data to user. You are the asked to the
optimize the architecture of the backend system can to lower cost, what would
you recommend do?
Answer: Introduce Amazon Elasticache to the cache reads from the Amazon DynamoDB table and
to reduce the provisioned read throughput.
Q82) You are running to website on EC2 instances can deployed across multiple
Availability Zones with an Multi-AZ RDS MySQL Extra Large DB Instance etc.
Then site performs a high number of the small reads and the write per second
and the relies on the eventual consistency model. After the comprehensive tests
you discover to that there is read contention on RDS MySQL. Which is the best
approaches to the meet these requirements?
Answer:The Deploy Elasti Cache in-memory cache is running in each availability zone and Then
Increase the RDS MySQL Instance size and the Implement provisioned IOPS.
Q83) An startup is running to a pilot deployment of around 100 sensors to the
measure street noise and The air quality is urban areas for the 3 months. It was
noted that every month to around the 4GB of sensor data are generated. The
company uses to a load balanced take auto scaled layer of the EC2 instances
and a RDS database with a 500 GB standard storage. The pilot was success and
now they want to the deploy take atleast 100K sensors.let which to need the
supported by backend. You need to the stored data for at least 2 years to an
analyze it. Which setup of following would you be prefer?
Answer: The Replace the RDS instance with an 6 node Redshift cluster with take 96TB of storage.
Q84) Let to Suppose you have an application where do you have to render
images and also do some of general computing. which service will be best fit
your need?
Answer:Used on Application Load Balancer.
Q85) How will change the instance give type for the instances, which are the
running in your applications tier and Then using Auto Scaling. Where will you
change it from areas?
Answer: Changed to Auto Scaling launch configuration areas.
Q86) You have an content management system running on the Amazon EC2
instance that is the approaching 100% CPU of utilization. Which option will be
reduce load on the Amazon EC2 instance?
Answer: Let Create a load balancer, and Give register the Amazon EC2 instance with it.
Q87) What does the Connection of draining do?
Answer: The re-routes traffic from the instances which are to be updated (or) failed an health to
check.
Q88) When the instance is an unhealthy, it is do terminated and replaced with an
new ones, which of the services does that?
Answer: The survice make a fault tolerance.
Q89) What are the life cycle to hooks used for the AutoScaling?
Answer: They are used to the put an additional taken wait time to the scale in or scale out events.
Are You Interested in AWS Course ? Click here
Q90) An user has to setup an Auto Scaling group. Due to some issue the group
has to failed for launch a single instance for the more than 24 hours. What will
be happen to the Auto Scaling in the condition?
Answer: The auto Scaling will be suspend to the scaling process.
Q91) You have an the EC2 Security Group with a several running to EC2
instances. You changed to the Security of Group rules to allow the inbound
traffic on a new port and protocol, and then the launched a several new
instances in the same of Security Group.Such the new rules apply?
Answer:The Immediately to all the instances in security groups.
Q92) To create an mirror make a image of your environment in another region
for the disaster recoverys, which of the following AWS is resources do not need
to be recreated in second region?
Answer: May be the selected on Route 53 Record Sets.
Q93) An customers wants to the captures all client connections to get
information from his load balancers at an interval of 5 minutes only, which cal
select option should he choose for his application?
Answer: The condition should be Enable to AWS CloudTrail for the loadbalancers.
Q94) Which of the services to you would not use to deploy an app?
Answer: Lambda app not used on deploy.
Q95) How do the Elastic Beanstalk can apply to updates?
Answer: By a duplicate ready with a updates prepare before swapping.
Q96) An created a key in the oregon region to encrypt of my data in North
Virginia region for security purposes. I added to two users to the key and the
external AWS accounts. I wanted to encrypt an the object in S3, so when I was
tried, then key that I just created is not listed.What could be reason&solution?
Answer:The Key should be working in the same region.
Q97) As a company needs to monitor a read and write IOPS for the AWS MySQL
RDS instances and then send real-time alerts to the operations of team. Which
AWS services to can accomplish this?
Answer:The monitoring on Amazon CloudWatch
Q98) The organization that is currently using the
consolidated billing has to recently acquired to another company that already has a number of
the AWS accounts. How could an Administrator to ensure that all the AWS accounts, from the
both existing company and then acquired company, is billed to the single account?
Answer: All
I n v i t e s t a k e a c q u i r e d t h e c o m p a n y s A W S a c c o u n t t o j o i n e x i s t i n g by using AWS Organizations.
Q99) The user has created an the applications, which will be hosted on the EC2.
The application makes calls to the Dynamo DB to fetch on certain data. The
application using the DynamoDB SDK to connect with the EC2 instance. Which
of respect to best practice for the security in this scenario?
Answer: The user should be attach an IAM roles with the DynamoDB access to EC2 instance.
Q100) You have an application are running on EC2 Instance, which will allow
users to download the files from a private S3 bucket using the pre-assigned
URL. Before generating to URL the Q101) application should be verify the
existence of file in S3. How do the application use the AWS credentials to
access S3 bucket securely?
Answer:An Create an IAM role for the EC2 that allows list access to objects in S3 buckets. Launch
t o i n s t a n c e w i t h t h i s r o l e , a n d r e t r i e v e a n r o l e s c r e d e n t i a l s f r o m Q101) You use the Amazon CloudWatch as your primary monitoring system for
web application. After a recent to software deployment, your users are to getting
Intermittent the 500 Internal Server to the Errors, when you using web
application. You want to create the CloudWatch alarm, and notify the on-call
engineer let when these occur. How can you accomplish the using the AWS
services?
Answer: An Create a CloudWatch get Logs to group and A define metric filters that assure
capture 500 Internal Servers should be Errors. Set a CloudWatch alarm on the metric and By Use
of Amazon Simple to create a Notification Service to notify an the on-call engineers when prepare
CloudWatch alarm is triggered.
Q102) You are designing a multi-platform of web application for the AWS. The
application will run on the EC2 instances and Till will be accessed from PCs,
tablets and smart phones.Then Supported accessing a platforms are Windows,
MACOS, IOS and Android. They Separate sticky sessions and SSL certificate
took setups are required for the different platform types. Which do describes the
most cost effective and Like performance efficient the architecture setup?
Answer:Assign to multiple ELBs an EC2 instance or group of EC2 take instances running to
common component of the web application, one ELB change for each platform type.Take Session
will be stickiness and SSL termination are done for the ELBs.
Q103) You are migrating to legacy client-server application for AWS. The
application responds to a specific DNS visible domain (e.g. www.example.com)
and server 2-tier architecture, with multiple application for the servers and the
database server. Remote clients use to TCP to connect to the application of
servers. The application servers need to know the IP address of clients in order
to the function of properly and are currently taking of that information from TCP
socket. A Multi-AZ RDS MySQL instance to will be used for database. During the
migration you change the application code but you have file a change request.
How do would you implement the architecture on the AWS in order to maximize
scalability and high availability?
Answer: File a change request to get implement of Proxy Protocol support in the application. Use
of ELB with TCP Listener and A Proxy Protocol enabled to distribute the load on two application
servers in the different AZs.
Q104) Your application currently is leverages AWS Auto Scaling to the grow and
shrink as a load Increases/decreases and has been performing as well. Your
marketing a team expects and steady ramp up in traffic to follow an upcoming
campaign that will result in 20x growth in the traffic over 4 weeks. Your forecast
for approximate number of the Amazon EC2 instances necessary to meet peak
demand is 175. What should be you do avoid potential service disruptions
during the ramp up traffic?
Answer: Check the service limits in the Trusted Advisors and adjust as necessary, so that
forecasted count remains within the limits.
Q105) You have a web application running on the six Amazon EC2 instances,
consuming about 45% of resources on the each instance. You are using the
auto-scaling to make sure that a six instances are running at all times. The
number of requests this application processes to consistent and does not
experience to spikes. Then application are critical to your business and you
want to high availability for at all times. You want to the load be distributed
evenly has between all instances. You also want to between use same Amazon
Machine Image (AMI) for all instances. Which are architectural choices should
you make?
Answer: Deploy to 3 EC2 instances in one of availability zone and 3 in another availability of
zones and to use of Amazon Elastic is Load Balancer.
Q106) You are the designing an application that a contains protected health
information. Security and Then compliance requirements for your application
mandate that all protected to health information in application use to encryption
at rest and in the transit module. The application to uses an three-tier
architecture. where should data flows through the load balancers and is stored
on the Amazon EBS volumes for the processing, and the results are stored in
the Amazon S3 using a AWS SDK. Which of the options satisfy the security
requirements?
Answer: Use TCP load balancing on load balancer system, SSL termination on Amazon to create
EC2 instances, OS-level disk take encryption on Amazon EBS volumes, and The amazon S3 with
server-side to encryption and Use the SSL termination on load balancers, an SSL listener on the
Amazon to create EC2 instances, Amazon EBS encryption on the EBS volumes containing the
PHI, and Amazon S3 with a server-side of encryption.
Q107) An startup deploys its create photo-sharing site in a VPC. An elastic load
balancer distributes to web traffic across two the subnets. Then the load
balancer session to stickiness is configured to use of AWS-generated session
cookie, with a session TTL of the 5 minutes. The web server to change Auto
Scaling group is configured as like min-size=4, max-size=4. The startup is the
preparing for a public launchs, by running the load-testing software installed on
the single Amazon Elastic Compute Cloud (EC2) instance to running in
us-west-2a. After 60 minutes of load-testing, the web server logs of show the
following:WEBSERVER LOGS | # of HTTP requests to from load-tester system |
# of HTTP requests to from private on beta users || webserver #1 (subnet an
us-west-2a): | 19,210 | 434 | webserver #2 (subnet an us-west-2a): | 21,790 | 490 ||
webserver #3 (subnet an us-west-2b): | 0 | 410 || webserver #4 (subnet an
us-west-2b): | 0 | 428 |Which as recommendations can be help of ensure that
load-testing HTTP requests are will evenly distributed across to four web
servers?
Answer:Result of cloud is re-configure the load-testing software to the re-resolve DNS for each
web request.
Q108) To serve the Web traffic for a popular product to your chief financial
officer and IT director have purchased 10 m1.large heavy utilization of Reserved
Instances (RIs) evenly put spread across two availability zones: Route 53 are
used to deliver the traffic to on Elastic Load Balancer (ELB). After the several
months, the product grows to even more popular and you need to additional
capacity As a result, your company that purchases two c3.2xlarge medium
utilization RIs You take register the two c3.2xlarge instances on with your ELB
and quickly find that the ml of large instances at 100% of capacity and the
c 3 . 2 x l a r g e i n s t a n c e s h a v e s i g n i f i c a n t t o c a p a c i t y t h a t option is the most of cost effective and uses EC2 capacity most of effectively?
Answer: To use a separate ELB for the each instance type and the distribute load to ELBs with a
Route 53 weighted round of robin.
Q109) An AWS customer are deploying an web application that is the composed
of a front-end running on the Amazon EC2 and confidential data that are stored
on the Amazon S3. The customer security policy is that all accessing operations
to this sensitive data must authenticated and authorized by centralized access
to management system that is operated by separate security team. In addition,
the web application team that be owns and administers the EC2 web front-end
instances are prohibited from having the any ability to access data that
circumvents this centralized access to management system. Which are
configurations will support these requirements?
Answer:The configure to the web application get authenticate end-users against the centralized
access on the management system. Have a web application provision trusted to users STS
tokens an entitling the download of the approved data directly from a Amazon S3.
Q110) A Enterprise customer is starting on their migration to the cloud, their
main reason for the migrating is agility and they want to the make their internal
Microsoft active directory available to the many applications running on AWS,
this is so internal users for only have to remember one set of the credentials
and as a central point of user take control for the leavers and joiners. How could
they make their actions the directory secures and the highly available with
minimal on-premises on infrastructure changes in the most cost and the
time-efficient way?
Answer: By Using a VPC, they could be create an the extension to their data center and to make
use of resilient hardware IPSEC on tunnels, they could then have two domain consider to
controller instances that are joined to the existing domain and reside within the different subnets
in the different availability zones.
Get AWS Online Training!
Q111) What is Cloud Computing?
Answer:Cloud computing means it provides services to access programs, application, storage,
network, server over the internet through browser or client side application on your PC, Laptop,
Mobile by the end user without installing, updating and maintaining them.
Cloud computing is a
cloud platform service that provides you with theon-demand services that can range from
compute, databases, storage, networking, applications and so on. Cloud computing follows your
pay-as-you-go model where you are going to pay only for what you are using.
Q112) Why we go for Cloud Computing?
Answer:
Lower computing cost
Improved Performance
No IT Maintenance
Business connectivity
Easily upgraded
Device Independent
Q113) What are the deployment models using in Cloud?
Answer:
Private Cloud
Public Cloud
Hybrid cloud
Community cloud 4
Q114) Explain Cloud Service Models?
Answer: SAAS (Software as a Service): It is software distribution model in which application are
hosted by a vendor over the internet for the end user freeing from complex software and
hardware management. (Ex: Google drive, drop box)
PAAS (Platform as a Service): It provides
platform and environment to allow developers to build applications. It frees developers without
going into the complexity of building and maintaining the infrastructure. (Ex: AWS Elastic
Beanstalk, Windows Azure)
IAAS (Infrastructure as a Service): It provides virtualized computing
resources over the internet like cpu, memory, switches, routers, firewall, Dns, Load balancer (Ex:
Azure, AWS)
Q115) What are the advantage of Cloud Computing?
Answer:
Pay per use
Scalability
Elasticity
High Availability
Increase speed and Agility
Go global in Minutes
Q116) What is AWS?
Answer: Amazon web service is a secure cloud services platform offering compute, power,
database, storage, content delivery and other functionality to help business scale and grow.
AWS
is fully on-demand
AWS is Flexibility, availability and Scalability
AWS is Elasticity: scale up and
scale down as needed.
Q117) What is mean by Region, Availability Zone and Edge Location?
Answer: Region: An independent collection of AWS resources in a defined geography. A
collection of Data centers (Availability zones). All availability zones in a region connected by high
bandwidth.
Availability Zones: An Availability zone is a simply a data center. Designed as
independent failure zone. High speed connectivity, Low latency.
Edge Locations: Edge location
are the important part of AWS Infrastructure. Edge locations are CDN endpoints for cloud front to
deliver content to end user with low latency
Q118) How to access AWS Platform?
Answer:
AWS Console
AWS CLI (Command line interface)
AWS SDK (Software Development Kit)
Q119) What is EC2? What are the benefits in EC2?
Amazon Elastic compute cloud is a web service that provides resizable compute capacity in the
cloud.AWS EC2 provides scalable computing capacity in the AWS Cloud. These are the virtual
servers also called as an instances. We can use the instances pay per use basis.
Benefits:
Easier and Faster
Elastic and Scalable
High Availability
Cost-Effective
Q120) What are the pricing models available in AWS EC2?
Answer:
On-Demand Instances
Reserved Instances
Spot Instances
Dedicated Host
Q121) What are the types using in AWS EC2?
Answer:
General Purpose
Compute Optimized
Memory optimized
Storage Optimized
Accelerated Computing (GPU Based)
Q122) What is AMI? What are the types in AMI?
Answer:
Amazon machine image is a special type of virtual appliance that is used to create a
virtual machine within the amazon Elastic compute cloud. AMI defines the initial software that will
be in an instance when it is launched.
Types of AMI:
Published by AWS
AWS Marketplace
Generated from existing instances
Uploaded virtual server
Q123) How to Addressing AWS EC2 instances?
Answer:
Public Domain name system (DNS) name: When you launch an instance AWS creates a DNS
name that can be used to access the
Public IP: A launched instance may also have a public ip address This IP address assigned from
the address reserved by AWS and cannot be specified.
Elastic IP: An Elastic IP Address is an address unique on the internet that you reserve
independently and associate with Amazon EC2 instance. This IP Address persists until the
customer release it and is not tried to
Q124) What is Security Group?
Answer: AWS allows you to control traffic in and out of your instance through virtual firewall
called Security groups. Security groups allow you to control traffic based on port, protocol and
source/Destination.
Q125) When your instance show retired state?
Answer:Retired state only available in Reserved instances. Once the reserved instance reserving
time (1 yr/3 yr) ends it shows Retired state.
Q126) Scenario: My EC2 instance IP address change automatically while
instance stop and start. What is the reason for that and explain solution?
A n s w e r : A W S a s s i g n e d P u b l i c I P a u t o m a t i c a l l y b u t i t s c h a n g e d y n a t h a t c a s e w e n e e d t o a s s i g n E l a s t i c I P f o r t h a t i n s t a n c e , o n c e a s s i automatically.
Q127) What is Elastic Beanstalk?
Answer:AWS Elastic Beanstalk is the fastest and simplest way to get an application up and
running on AWS.Developers can simply upload their code and the service automatically handle
all the details such as resource provisioning, load balancing, Auto scaling and Monitoring.
Q128) What is Amazon Lightsail?
Answer:Lightsail designed to be the easiest way to launch and manage a virtual private server
with AWS.Lightsail plans include everything you need to jumpstart your project a virtual machine,
ssd based storage, data transfer, DNS Management and a static ip.
Q129) What is EBS?
Answer:Amazon EBS Provides persistent block level storage volumes for use with Amazon EC2
instances. Amazon EBS volume is automatically replicated with its availability zone to protect
component failure offering high availability and durability. Amazon EBS volumes are available in
a variety of types that differ in performance characteristics and Price.
Q130) How to compare EBS Volumes?
Answer: Magnetic Volume: Magnetic volumes have the lowest performance characteristics of all
Amazon EBS volume types.
EBS Volume size: 1 GB to 1 TB Average IOPS: 100 IOPS Maximum
throughput: 40-90 MB
General-Purpose SSD: General purpose SSD volumes offers cost-effective
storage that is ideal for a broad range of workloads. General purpose SSD volumes are billed
based on the amount of data space provisioned regardless of how much of data you actually
store on the volume.
EBS Volume size: 1 GB to 16 TB Maximum IOPS: upto 10000 IOPS Maximum
throughput: 160 MB
Provisioned IOPS SSD: Provisioned IOPS SSD volumes are designed to meet
the needs of I/O intensive workloads, particularly database workloads that are sensitive to
storage performance and consistency in random access I/O throughput. Provisioned IOPS SSD
Volumes provide predictable, High performance.
EBS Volume size: 4 GB to 16 TB Maximum IOPS:
upto 20000 IOPS Maximum throughput: 320 MB
Q131) What is cold HDD and Throughput-optimized HDD?
Answer: Cold HDD: Cold HDD volumes are designed for less frequently accessed workloads.
These volumes are significantly less expensive than throughput-optimized HDD volumes.
EBS
Volume size: 500 GB to 16 TB Maximum IOPS: 200 IOPS Maximum throughput: 250 MB
Throughput-Optimized HDD: Throughput-optimized HDD volumes are low cost HDD volumes
designed for frequent access, throughput-intensive workloads such as big data, data warehouse.
EBS Volume size: 500 GB to 16 TB Maximum IOPS: 500 IOPS Maximum throughput: 500 MB
Q132) What is Amazon EBS-Optimized instances?
Answer: Amazon EBS optimized instances to ensure that the Amazon EC2 instance is prepared to
take advantage of the I/O of the Amazon EBS Volume. An amazon EBS-optimized instance uses
an optimized configuration stack and provide additional dedicated capacity for Amazon EBS
I/When you select Amazon EBS-optimized for an instance you pay an additional hourly charge for
that instance.
Q133) What is EBS Snapshot?
Answer:
It can back up the data on the EBS Volume. Snapshots are incremental backups.
If this is your first snapshot it may take some time to create. Snapshots are point in time copies
of volumes.
Q134) How to connect EBS volume to multiple instance?
A n s w e r : W e c a n t a b l e t o c o n n e c t E B S v o l u m e t o m u l t i p l e i n s t a n c e multiple EBS Volume to single instance.
Q135) What are the virtualization types available in AWS?
Answer: Hardware assisted Virtualization: HVM instances are presented with a fully virtualized set
of hardware and they executing boot by executing master boot record of the root block device of
the image. It is default Virtualization.
Para virtualization: This AMI boot with a special boot loader
called PV-GRUB. The ability of the guest kernel to communicate directly with the hypervisor
results in greater performance levels than other virtualization approaches but they cannot take
advantage of hardware extensions such as networking, GPU etc. Its customized Virtualization
image. Virtualization image can be used only for particular service.
Q136) Differentiate Block storage and File storage?
Answer:
Block Storage: Block storage operates at lower level, raw storage device level and
manages data as a set of numbered, fixed size blocks.
File Storage: File storage operates at a
higher level, the operating system level and manage data as a named hierarchy of files and
folders.
Q137) What are the advantage and disadvantage of EFS? Advantages:
Answer:
Fully managed service
File system grows and shrinks automatically to petabytes
Can support thousands of concurrent connections
Multi AZ replication
Throughput scales automatically to ensure consistent low latency Disadvantages:
Not available in all region
Cross region capability not available
More complicated to provision compared to S3 and EBS
Q138) what are the things we need to remember while creating s3 bucket?
Answer:
Amazon S3 and Bucket names are
This means bucket names must be unique across all AWS
Bucket names can contain upto 63 lowercase letters, numbers, hyphens and
You can create and use multiple buckets
You can have upto 100 per account by
Q139) What are the storage class available in Amazon s3?
Answer:
Amazon S3 Standard
Amazon S3 Standard-Infrequent Access
Amazon S3 Reduced Redundancy Storage
Amazon Glacier
Get AWS Online Training
Q140) Explain Amazon s3 lifecycle rules?
Answer: Amazon S3 lifecycle configuration rules, you can significantly reduce your storage costs
by automatically transitioning data from one storage class to another or even automatically delete
data after a period of time.
Store backup data initially in Amazon S3 Standard
After 30 days, transition to Amazon Standard IA
After 90 days, transition to Amazon Glacier
After 3 years, delete
Q141) What is the relation between Amazon S3 and AWS KMS?
Answer: To encrypt Amazon S3 data at rest, you can use several variations of Server-Side
Encryption. Amazon S3 encrypts your data at the object level as it writes it to disks in its data
c e n t e r s a n d d e c r y p t i t f o r y o u w h e n y o u a c c e s s i t l l S S E p e r f o r m e d Management Service (AWS KMS) uses the 256-bit Advanced Encryption Standard (AES).
Q142) What is the function of cross region replication in Amazon S3?
Answer: Cross region replication is a feature allows you asynchronously replicate all new objects
in the source bucket in one AWS region to a target bucket in another region. To enable
cross-region replication, versioning must be turned on for both source and destination buckets.
Cross region replication is commonly used to reduce the latency required to access objects in
Amazon S3
Q143) How to create Encrypted EBS volume?
Answer: You need to select Encrypt this volume option in Volume creation page. While creation a
new master key will be created unless you select a master key that you created separately in the
service. Amazon uses the AWS key management service (KMS) to handle key management.
Q144) Explain stateful and Stateless firewall.
Answer:
Stateful Firewall: A Security group is a virtual stateful firewall that controls inbound and
outbound network traffic to AWS resources and Amazon EC2 instances. Operates at the instance
level. It supports allow rules only. Return traffic is automatically allowed, regardless of any rules.
Stateless Firewall: A Network access control List (ACL) is a virtual stateless firewall on a subnet
level. Supports allow rules and deny rules. Return traffic must be explicitly allowed by rules.
Q145) What is NAT Instance and NAT Gateway?
Answer:
NAT instance: A network address translation (NAT) instance is an Amazon Linux
machine Image (AMI) that is designed to accept traffic from instances within a private subnet,
translate the source IP address to the Public IP address of the NAT instance and forward the
traffic to IWG.
NAT Gateway: A NAT gateway is an Amazon managed resources that is designed to
operate just like a NAT instance but it is simpler to manage and highly available within an
availability Zone. To allow instance within a private subnet to access internet resources through
the IGW via a NAT gateway.
Q146) What is VPC Peering?
A n s w e r : A m a z o n V P C p e e r i n g c o n n e c t i o n i s a n e t w o r k i n g c o n n e c t i o that enables instances in either Amazon VPC to communicate with each other as if they are within
the same network. You can create amazon VPC peering connection between your own Amazon
V P C s o r A m a z o n V P C i n a n o t h e r A W S a c c o u n t w i t h i n a s i n g l e r e g i o Q147) What is MFA in AWS?
Answer: Multi factor Authentication can add an extra layer of security to your infrastructure by
adding a second method of authentication beyond just password or access key.
Q148) What are the Authentication in AWS?
Answer:
User Name/Password
Access Key
Access Key/ Session Token
Q149) What is Data warehouse in AWS?
Data ware house is a central repository for data that can come from one or more sources.
Organization typically use data warehouse to compile reports and search the database using
highly complex queries. Data warehouse also typically updated on a batch schedule multiple
times per day or per hour compared to an OLTP (Online Transaction Processing) relational
database that can be updated thousands of times per second.
Q150) What is mean by Multi-AZ in RDS?
Answer: Multi AZ allows you to place a secondary copy of your database in another availability
zone for disaster recovery purpose. Multi AZ deployments are available for all types of Amazon
RDS Database engines. When you create s Multi-AZ DB instance a primary instance is created in
one Availability Zone and a secondary instance is created by another Availability zone.
Q151) What is Amazon Dynamo DB?
Answer: Amazon Dynamo DB is fully managed NoSQL database service that provides fast and
predictable performance with seamless scalability. Dynamo DB makes it simple and Cost
effective to store and retrieve any amount of data.
Q152) What is cloud formation?
Answer: Cloud formation is a service which creates the AWS infrastructure using code. It helps to
reduce time to manage resources. We can able to create our resources Quickly and faster.
Q153) How to plan Auto scaling?
Answer:
Manual Scaling
Scheduled Scaling
Dynamic Scaling
Q154) What is Auto Scaling group?
Answer: Auto Scaling group is a collection of Amazon EC2 instances managed by the Auto
scaling service. Each auto scaling group contains configuration options that control when auto
scaling should launch new instance or terminate existing instance.
Q155) Differentiate Basic and Detailed monitoring in cloud watch?
Answer:
Basic Monitoring: Basic monitoring sends data points to Amazon cloud watch every five
minutes for a limited number of preselected metrics at no charge.
Detailed Monitoring: Detailed
monitoring sends data points to amazon CloudWatch every minute and allows data aggregation
for an additional charge.
Q156) What is the relationship between Route53 and Cloud front?
Answer: In Cloud front we will deliver content to edge location wise so here we can use Route 53
for Content Delivery Network. Additionally, if you are using Amazon CloudFront you can
configure Route 53 to route Internet traffic to those resources.
Q157) What are the routing policies available in Amazon Route53?
Answer:
Simple
Weighted
Latency Based
Failover
Geolocation
Q158) What is Amazon ElastiCache?
Answer: Amazon ElastiCache is a web services that simplifies the setup and management of
distributed in memory caching environment.
Cost Effective
High Performance
Scalable Caching Environment
Using Memcached or Redis Cache Engine
Q159) What is SES, SQS and SNS?
Answer: SES (Simple Email Service): SES is SMTP server provided by Amazon which is designed
to send bulk mails to customers in a quick and cost-effective manner.SES does not allows to
configure mail server.
SQS (Simple Queue Service): SQS is a fast, reliable and scalable, fully
m a n a g e d m e s s a g e q u e u i n g s e r v i c e . A m a z o n S Q S m a k e s i t s i m p l e a n temporary repository for messages to waiting for processing and acts as a buffer between the
component producer and the consumer.
SNS (Simple Notification Service): SNS is a web service
that coordinates and manages the delivery or sending of messages to recipients.
Q160) How To Use Amazon Sqs? What Is Aws?
Answer:Amazon Web Services is a secure cloud services stage, offering compute power,
database storage, content delivery and other functionality to help industries scale and grow.
Q161) What is the importance of buffer in AWS?
A n s w e r : l o w p r i c e C o n s u m e o n l y t h e a m o u n t o f c a l c u l a t i n g , s t o r a g needed. No long-term assignation, minimum spend or up-front expenditure is required.
Elastic
a n d S c a l a b l e Q u i c k l y R i s e a n d d e c r e a s e r e s o u r c e s t o a p p l i c a t i o n and control costs. Avoid provisioning maintenance up-front for plans with variable consumption
speeds or low lifetimes.
Q162) What is the way to secure data for resounding in the cloud?
Answer:
A v o i d s t o r a g e s e n s i t i v e m a t e r i a l i n t h e c l o u d . &
R e a d t h e u s e r c o n t r a c t t o f i n d o u t h o w y o u r c l o u d s e r v i c e s t o r i n B e s e r i o u s a b o u t p a s s w o r d s . &
E n c r y p t . &
Use an encrypted cloud service.
Q163) Name The Several Layers Of Cloud Computing?
Answer:Cloud computing can be damaged up into three main services: Software-as-a-Service
(SaaS), Infrastructure-as-a-Service (IaaS) and Platform-as-a-Service (PaaS). PaaS in the middle,
and IaaS on the lowest
Q164) What Is Lambda edge In Aws?
Answer:Lambda Edge lets you run Lambda functions to modify satisfied that Cloud Front
delivers, executing the functions in AWS locations closer to the viewer. The functions run in
response to Cloud Front events, without provisioning or managing server.
Q165) Distinguish Between Scalability And Flexibility?
Answer:Cloud computing offers industries flexibility and scalability when it comes to computing
needs:
F l e x i b i l i t y . C l o u d c o m p u t i n g a g r e e s y o u r w o r k e r s t o b e m o r e f l e x i the workplace. Workers can access files using web-enabled devices such as smartphones,
laptops and notebooks. In this way, cloud computing empowers the use of mobile technology.
One of the key assistances of using cloud computing is its scalability. Cloud computing allows
your business to easily expensive or downscale your IT requests as and when required. For
example, most cloud service workers will allow you to increase your existing resources to
accommodate increased business needs or changes. This will allow you to support your
commercial growth without exclusive changes to your present IT systems.
Q166) What is IaaS?
A n s w e r : I a a S i s a c l o u d s e r v i c e t h a t r u n s s e r v i c e s o n p a y - f o r - w h a t IaaS workers
include Amazon Web Services, Microsoft Azure and Google Compute Engine
Users: IT
Administrators
Q167) What is PaaS?
Answer:PaaS runs cloud platforms and runtime environments to develop, test and manage
software
Users: Software Developers
Q168) What is SaaS?
Answer:In SaaS, cloud workers host and manage the software application on a pay-as-you-go
pricing model
Users: End Customers
Q169) Which Automation Gears Can Help With Spinup Services?
Answer:The API tools can be used for spin up services and also for the written scripts. Persons
scripts could be coded in Perl, bash or other languages of your preference. There is one more
option that is flowery management and stipulating tools such as a dummy or improved
descendant. A tool called Scalar can also be used and finally we can go with a controlled
explanation like a Right scale. Which automation gears can help with pinup service.
Q170) What Is an Ami? How Do I Build One?
Answer:An Amazon Machine Image (AMI) explains the programs and settings that will be applied
when you launch an EC2 instance. Once you have finished organizing the data, services, and
submissions on your ArcGIS Server instance, you can save your work as a custom AMI stored in
Amazon EC2. You can scale out your site by using this institution AMI to launch added instances
Use the following process to create your own AMI using the AWS Administration Console:
*Configure an EC2 example and its attached EBS volumes in the exact way you want them
created in the custom AMI.
1. Log out of your instance, but do not stop or terminate it.
2. Log in to the AWS Management Console, display the EC2 page for your region, then click
Instances.
3. Choose the instance from which you want to create a custom AMI.
4. Click Actions and click Create Image.
5. Type a name for Image Name that is easily identifiable to you and, optionally, input text for
Image Description.
6. Click Create Image.
Read the message box that appears. To view the AMI standing, go to the AMIs page. Here you can
see your AMI being created. It can take a though to create the AMI. Plan for at least 20 minutes, or
s l o w e r i f y o u v e c o n n e c t e d a l o t o f a d d i t i o n a l a p p l i c a t i o n s o r d a t a Q171) What Are The Main Features Of Amazon Cloud Front?
Answer:Amazon Cloud Front is a web service that speeds up delivery of your static and dynamic
web content, such as .html, .css, .js, and image files, to your users.CloudFront delivers your
content through a universal network of data centers called edge locations
Q172) What Are The Features Of The Amazon Ec2 Service?
Answer:Amazon Elastic Calculate Cloud (Amazon EC2) is a web service that provides secure,
resizable compute capacity in the cloud. It is designed to make web-scale cloud calculating easier
f o r d e s i g n e r s . A m a z o n E C 2 s s i m p l e w e b s e r v i c e i n t e r f a c e a l l o w s y o capacity with minimal friction.
Q173) Explain Storage For Amazon Ec2 Instance.?
Answer:An instance store is a provisional storing type located on disks that are physically
a t t a c h e d t o a h o s t m a c h i n e . & T h i s a r t i c l e w i l l p r e s e n t y o u t o t h e type, compare it to AWS Elastic Block Storage (AWS EBS), and show you how to backup data
stored on instance stores to AWS EBS
Amazon SQS is a message queue service used by
scattered requests to exchange messages through a polling model, and can be used to decouple
sending and receiving components
Q174) When attached to an Amazon VPC which two components provide
connectivity with external networks?
Answer:
Internet Gateway {IGW)
Virtual Private Gateway (VGW)
Q175) Which of the following are characteristics of Amazon VPC subnets?
Answer:
Each subnet maps to a single Availability Zone.
By defaulting, all subnets can route between each other, whether they are private or public.
Q176) How can you send request to Amazon S3?
Answer:Every communication with Amazon S3 is either genuine or anonymous. Authentication is
a process of validating the individuality of the requester trying to access an Amazon Web
Services (AWS) product. Genuine requests must include a autograph value that authenticates the
r e q u e s t s e n d e r . T h e a u t o g r a p h v a l u e i s , i n p a r t , c r e a t e d f r o m t h e r (access key identification and secret access key).
Q177) What is the best approach to anchor information for conveying in the
cloud ?
Answer:Backup Data Locally. A standout amongst the most vital interesting points while
overseeing information is to guarantee that you have reinforcements for your information,
A v o i d S t o r i n g S e n s i t i v e I n f o r m a t i o n . &
U s e C l o u d S e r v i c e s t h a t E n c r y p t D a t a . &
E n c r y p t Y o u r D a t a . &
I n s t a l l A n t i - i n f e c t i o n S o f t w a r e . &
M a k e P a s s w o r d s S t r o n g e r . &
Test the Security Measures in Place.
Q178) What is AWS Certificate Manager ?
Answer:AWS Certificate Manager is an administration that lets you effortlessly arrangement,
oversee, and send open and private Secure Sockets Layer/Transport Layer Security (SSL/TLS)
endorsements for use with AWS administrations and your inward associated assets. SSL/TLS
declarations are utilized to anchor arrange interchanges and set up the character of sites over the
Internet and additionally assets on private systems. AWS Certificate Manager expels the tedious
manual procedure of obtaining, transferring, and reestablishing SSL/TLS endorsements.
Q179) What is the AWS Key Management Service
Answer:AWS Key Management Service (AWS KMS) is an overseen benefit that makes it simple
f o r y o u t o m a k e a n d c o n t r o l t h e e n c r y p t i o n k e y s u s e d t o s c r a m b l e is additionally coordinated with AWS CloudTrail to give encryption key use logs to help meet your
inspecting, administrative and consistence needs.
Q180) What is Amazon EMR ?
Answer:Amazon Elastic MapReduce (EMR) is one such administration that gives completely