본문 바로가기

컴퓨터 과학/AWS 자격증 dump문제

Amazon AWS Certified Cloud Practitioner dump문제 해설(151~160)

반응형
Question #151Topic 1

A company would like to host its MySQL databases on AWS and maintain full control over the operating system, database installation, and configuration.
Which AWS service should the company use to host the databases?

  • A. Amazon RDS
  • B. Amazon EC2
  • C. Amazon DynamoDB
  • D. Amazon Aurora

B. Amazon EC2:

  • 정답입니다. Amazon EC2는 가상 서버를 제공하며, 사용자는 운영 체제, 데이터베이스 설치, 및 구성에 대한 완전한 제어를 갖습니다. MySQL을 직접 설치하고 구성할 수 있습니다.

A. Amazon RDS:

  • Amazon RDS는 관리형 데이터베이스 서비스로, 사용자가 데이터베이스 엔진의 운영 체제나 데이터베이스 소프트웨어를 직접 제어하지 않습니다. 따라서 이 경우에는 완전한 제어를 원하는 것과 부합하지 않습니다.

C. Amazon DynamoDB:

  • Amazon DynamoDB는 완전히 관리되는 NoSQL 데이터베이스 서비스이며, MySQL 데이터베이스를 호스팅하고자 하는 상황에는 적합하지 않습니다.

D. Amazon Aurora:

  • Amazon Aurora는 Amazon RDS의 일종으로 MySQL과 호환되는 관리형 데이터베이스 엔진입니다. 이 서비스는 MySQL 데이터베이스를 제공하면서도 RDS의 관리 기능을 활용합니다. 하지만 완전한 운영 체제 및 데이터베이스 제어를 원한다면, Amazon EC2가 더 적합합니다.

따라서, MySQL 데이터베이스를 AWS에서 호스팅하면서 완전한 제어를 유지하려면 B. Amazon EC2를 사용해야 합니다.

 

 

Question #152Topic 1

How does the AWS global infrastructure offer high availability and fault tolerance to its users?

  • A. The AWS infrastructure is made up of multiple AWS Regions within various Availability Zones located in areas that have low flood risk, and are interconnected with low-latency networks and redundant power supplies.
  • B. The AWS infrastructure consists of subnets containing various Availability Zones with multiple data centers located in the same geographic location.
  • C. AWS allows users to choose AWS Regions and data centers so that users can select the closest data centers in different Regions.
  • D. The AWS infrastructure consists of isolated AWS Regions with independent Availability Zones that are connected with low-latency networking and redundant power supplies.
Question #153Topic 1

A company is using Amazon EC2 Auto Scaling to scale its Amazon EC2 instances.
Which benefit of the AWS Cloud does this example illustrate?

  • A. High availability
  • B. Elasticity
  • C. Reliability
  • D. Global reach

B. Elasticity:

  • 정답입니다. Amazon EC2 Auto Scaling을 사용하면 애플리케이션의 수요에 따라 EC2 인스턴스를 자동으로 확장하거나 축소할 수 있습니다. 이것이 탄력성(elasticity)의 개념입니다. 즉, 필요에 따라 자원을 쉽게 조정하고 확장할 수 있습니다.

A. High availability:

  • 고가용성은 시스템이 지속적으로 가동되고 사용 가능한 상태를 유지하는 데 중점을 둡니다. Amazon EC2 Auto Scaling은 인스턴스 수요에 따라 자동으로 확장하고 축소함으로써 가용성을 향상시킬 수 있습니다. 그러나 직접적인 고가용성을 나타내는 것은 아닙니다.

C. Reliability:

  • 신뢰성은 시스템이 기대대로 작동하며 장애가 발생할 때 회복할 수 있는 능력에 중점을 둡니다. Amazon EC2 Auto Scaling은 이를 지원하여 자동으로 실패한 인스턴스를 대체하고 서비스를 유지할 수 있습니다. 그러나 직접적인 신뢰성을 나타내는 것은 아닙니다.

D. Global reach:

  • "Global reach"는 AWS의 글로벌 인프라 및 서비스 제공이 어디서나 사용 가능하다는 개념을 나타냅니다. Amazon EC2 Auto Scaling은 탄력성과 관련이 있지만 "Global reach"와 직접적으로 연결되지는 않습니다.

따라서, Amazon EC2 Auto Scaling을 사용하여 Amazon EC2 인스턴스를 확장하는 예제는 B. Elasticity (탄력성)의 이점을 나타냅니다.

Question #154Topic 1

Which AWS service or feature is used to send both text and email messages from distributed applications?

  • A. Amazon Simple Notification Service (Amazon SNS)
  • B. Amazon Simple Email Service (Amazon SES)
  • C. Amazon CloudWatch alerts
  • D. Amazon Simple Queue Service (Amazon SQS)

A. Amazon Simple Notification Service (Amazon SNS):

  • 정답입니다. Amazon SNS는 토픽을 사용하여 분산된 애플리케이션에서 푸시 메시지를 전송할 수 있습니다. 이메일, SMS, HTTP 엔드포인트 등을 통해 여러 종류의 메시지를 전송할 수 있습니다.

B. Amazon Simple Email Service (Amazon SES):

  • 이 서비스는 전자 메일 전송을 위한 것이며, 텍스트와 이메일 메시지 모두를 보낼 수 있습니다. 그러나 Amazon SNS가 분산된 애플리케이션 메시지 전송에 더 적합합니다.

C. Amazon CloudWatch alerts:

  • Amazon CloudWatch는 모니터링 및 경고에 사용되는 서비스이지만, 텍스트와 이메일 메시지를 보내는 주요 목적은 아닙니다.

D. Amazon Simple Queue Service (Amazon SQS):

  • Amazon SQS는 분산된 애플리케이션 간에 메시지 큐를 통해 통신할 수 있도록 하는 서비스입니다. 그러나 직접적으로 텍스트와 이메일 메시지를 보내는 목적에는 적합하지 않습니다.

따라서, 분산된 애플리케이션에서 텍스트와 이메일 메시지를 보내기 위해 사용되는 AWS 서비스나 기능은 A. Amazon Simple Notification Service (Amazon SNS)입니다.

Question #155Topic 1

A user is able to set up a master payer account to view consolidated billing reports through:

  • A. AWS Budgets.
  • B. Amazon Macie.
  • C. Amazon QuickSight.
  • D. AWS Organizations.
Question #156Topic 1

According to the AWS shared responsibility model, which task is the customer's responsibility?

  • A. Maintaining the infrastructure needed to run AWS Lambda
  • B. Updating the operating system of Amazon DynamoDB instances
  • C. Maintaining Amazon S3 infrastructure
  • D. Updating the guest operating system on Amazon EC2 instances
Question #157Topic 1

A company wants to migrate a small website and database quickly from on-premises infrastructure to the AWS Cloud. The company has limited operational knowledge to perform the migration.
Which AWS service supports this use case?

  • A. Amazon EC2
  • B. Amazon Lightsail
  • C. Amazon S3
  • D. AWS Lambda

B. Amazon Lightsail:

  • 정답입니다. Amazon Lightsail은 간단하고 사용하기 쉬운 클라우드 서비스로, 웹사이트 및 데이터베이스 마이그레이션을 지원합니다. Lightsail은 사전 구성된 템플릿을 사용하여 애플리케이션을 빠르게 시작할 수 있으며, 제한된 운영 경험을 가진 사용자도 쉽게 사용할 수 있습니다.

A. Amazon EC2:

  • Amazon EC2는 가상 서버를 제공하는 서비스로, 기업은 EC2를 사용하여 애플리케이션을 배포하고 운영할 수 있습니다. 그러나 EC2는 더 많은 운영 지식이 필요한 서비스이며, 빠른 마이그레이션을 위해서는 추가적인 설정이 필요할 수 있습니다.

C. Amazon S3:

  • Amazon S3는 객체 스토리지 서비스로, 정적 웹사이트 호스팅에 사용될 수 있지만, 데이터베이스 마이그레이션에는 직접적으로 적합하지 않습니다.

D. AWS Lambda:

  • AWS Lambda는 서버리스 컴퓨팅 서비스이며, 작은 웹사이트와 데이터베이스 마이그레이션을 위한 적합한 서비스는 아닙니다. Lambda는 이벤트 기반의 함수 실행을 위해 설계되었으며, 전체 웹사이트 및 데이터베이스를 마이그레이션하는 데는 다른 서비스가 더 적합합니다.

따라서, 기업이 작은 웹사이트와 데이터베이스를 빠르게 AWS 클라우드로 마이그레이션하고 제한된 운영 경험을 가진 경우에는 B. Amazon Lightsail이 가장 적절합니다.

Question #158Topic 1

A company is moving multiple applications to a single AWS account. The company wants to monitor the AWS Cloud costs incurred by each application.
What can the company do to meet this requirement?

  • A. Set up invoiced billing.
  • B. Use AWS Artifact.
  • C. Set budgets in Cost Explorer.
  • D. Create cost allocation tags.

D. Create cost allocation tags:

  • 정답입니다. 비용 할당 태그를 사용하면 비용을 특정 애플리케이션 또는 프로젝트에 할당할 수 있습니다. 각 리소스에 태그를 적용하여 비용을 세분화하고, 이를 통해 Cost Explorer나 다양한 비용 보고서에서 특정 애플리케이션에 대한 비용을 추적할 수 있습니다.

A. Set up invoiced billing:

  • 인보이스처리된 빌링은 계정에 청구서를 제공하는 방식이며, 각 애플리케이션에 대한 비용을 상세하게 파악하기 어렵습니다.

B. Use AWS Artifact:

  • AWS Artifact는 AWS 서비스 문서, 보고서 및 컨텐츠를 제공하는 서비스로, 비용 모니터링에 직접적으로 사용되는 서비스는 아닙니다.

C. Set budgets in Cost Explorer:

  • 예산은 특정 비용 한도에 도달하거나 초과할 때 경고를 설정하는 데 사용됩니다. 그러나 이는 특정 애플리케이션에 대한 비용을 정확하게 추적하지는 않습니다.

따라서, 여러 애플리케이션을 하나의 AWS 계정으로 이동하면서 각 애플리케이션에 대한 AWS 클라우드 비용을 모니터링하는 가장 효과적인 방법은 D. Create cost allocation tags를 사용하는 것입니다.

Question #159Topic 1

Which design principle is achieved by following the reliability pillar of the AWS Well-Architected Framework?

  • A. Vertical scaling
  • B. Manual failure recovery
  • C. Testing recovery procedures
  • D. Changing infrastructure manually
Question #160Topic 1

A user needs to quickly deploy a non-relational database on AWS. The user does not want to manage the underlying hardware or the database software.
Which AWS service can be used to accomplish this?

  • A. Amazon RDS
  • B. Amazon DynamoDB
  • C. Amazon Aurora
  • D. Amazon Redshift

 

반응형