AWS modul 2-5 cloud developing

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/39

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 7:35 AM on 4/8/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

40 Terms

1
New cards

What are the last three phases of the SDLC (after plan, define, and design)?

Develop, deploy, and maintain

2
New cards

Which task is performed during the develop stage of the SDLC?

New components are obtained and installed (testing also happens here)

3
New cards

Which AWS service should an administrator use to assign a new developer to a developer group?

AWS Identity and Access Management (IAM)

4
New cards

Which of the following is an important benefit of AWS CloudShell?

It inherits your credentials from the AWS Management Console

5
New cards

What are three ways to interact with AWS service APIs? (pick 3)

AWS Management Console, AWS CLI, AWS SDKs

6
New cards

Which tool enables users to control AWS services from the command line and automate service management with scripts?

AWS Tools for PowerShell

7
New cards

What is Amazon Q Developer?

A generative AI-powered coding assistant

8
New cards

Which statements describe AWS resource APIs? (pick 2)

They provide access to resources through objects and collections; They have at least one class per conceptual resource

9
New cards

Which method enables a Boto3 developer to specify the AWS Region?

By setting the Region when they instantiate the service client

10
New cards

Which HTTP response code series does a developer receive when calling an API on an S3 bucket that doesn't exist?

400 series

11
New cards

Which option is a use case for Amazon S3?

Data lake

12
New cards

What organizes the Amazon S3 namespace at the highest level?

Bucket

13
New cards

A developer receives a BucketAlreadyExists error. What must they do?

Rename the bucket — S3 bucket names are globally unique

14
New cards

Which URL is the virtual-hosted-style URL for an S3 static website in bucket "frank-martha-cafe" in us-east-1?

https://frank-martha-cafe.s3-website-us-east-1.amazonaws.com

15
New cards

After versioning is enabled on an S3 bucket, can it be disabled?

False — it can only be suspended, never fully disabled

16
New cards

What is the largest object size uploadable to S3 in a single PUT operation?

5 GB

17
New cards

Which mechanism should a developer apply to an S3 bucket to grant an IAM user full access, following AWS recommendations?

Bucket policy

18
New cards

What can a developer share to grant time-limited access to a private S3 object without requiring AWS credentials?

A presigned URL

19
New cards

Which method encrypts S3 objects in transit?

SSL/TLS

20
New cards

A static website in S3 references images from another S3 bucket, but they don't display. What is likely the problem?

CORS has not been enabled on the bucket where the assets are stored

21
New cards

Which two options is the AWS customer responsible for under the shared responsibility model?

Security group configuration and client-side data

22
New cards

Which IAM resource explicitly grants or denies permissions to a user or group?

IAM policies

23
New cards

What is the correct term for the process of verifying a user's identity?

Authentication

24
New cards

Which two statements about IAM user authentication are true?

AWS credentials must be provided to authenticate with services; A username and password must be provided to authenticate to the console

25
New cards

What is the AWS recommendation for securing credentials for applications running on EC2?

Create an IAM role and attach it to the EC2 instance

26
New cards

In what format are IAM policies written?

JSON

27
New cards

A policy is attached to an IAM group — what type of policy is this?

Identity-based policy

28
New cards

Which statement reflects best practice when granting IAM permissions?

Create policies that follow the principle of least privilege

29
New cards

A policy uses "Effect: Deny" with "NotResource" listing specific ARNs. What is the effect?

Denies actions on DynamoDB and S3 for all resources EXCEPT the ones listed in NotResource

30
New cards

Which two statements about IAM policy evaluation logic are true?

An explicit deny overrides an explicit allow; By default, all requests are denied

31
New cards

Which statement best describes Amazon DynamoDB?

A key-value and document database that scales horizontally and works well for internet-scale applications

32
New cards

Which component is part of a DynamoDB table?

Attributes

33
New cards

A DynamoDB table has a partition key (sensor ID) and a sort key (timestamp). Which statement is true?

It is impossible for two items to have the same primary key (combination of partition key + sort key)

34
New cards

Which statement about DynamoDB partitions is true?

If a table has a simple primary key, DynamoDB stores and retrieves each item based on its hash attribute

35
New cards

A developer wants to query a DynamoDB table by cuisine type and customer rating (not part of the primary key). What should they do?

Set up a global secondary index (GSI) on cuisine and customer rating

36
New cards

What DynamoDB feature should be used to manage complex, all-or-nothing changes across multiple items?

DynamoDB transactions

37
New cards

Which two scenarios are use cases for DynamoDB Streams?

Sending notifications when a friend uploads a picture; Monitoring table changes and taking action when a value hits a threshold

38
New cards

Which statement about DynamoDB global tables is true?

When a global table is created, DynamoDB automatically creates identical tables and propagates data changes to specified Regions

39
New cards

How far back can a DynamoDB table be restored using point-in-time recovery?

The last 35 days

40
New cards

Which DynamoDB API operations are considered control operations?

Create and manage DynamoDB tables