A development team must have a website that is accessible to other development teams. HTML, CSS, client-side JavaScript, and graphics comprise the website's content.
Which form of website hosting is the MOST cost-effective?
- A. Containerize the website and host it in AWS Fargate.
- B. Create an Amazon S3 bucket and host the website there.
- C. Deploy a web server on an Amazon EC2 instance to host the website.
- D. Configure an Application Load Balancer with an AWS Lambda target that uses the Express.js framework.
한글 번역
개발 팀에는 다른 개발 팀이 액세스할 수 있는 웹 사이트가 있어야 합니다. HTML, CSS, 클라이언트측 JavaScript 및 그래픽은 웹사이트의 콘텐츠를 구성합니다.
어떤 형태의 웹사이트 호스팅이 가장 비용 효율적입니까?
- A. 웹 사이트를 컨테이너화하고 AWS Fargate에서 호스팅합니다.
- B. Amazon S3 버킷을 생성하고 거기에서 웹 사이트를 호스팅합니다.
- C. Amazon EC2 인스턴스에 웹 서버를 배포하여 웹 사이트를 호스팅합니다.
- D. Express.js 프레임워크를 사용하는 AWS Lambda 대상으로 Application Load Balancer를 구성합니다.
정답
- B. Create an Amazon S3 bucket and host the website there.
해설
Static vs Dynamic Website :
In Static Websites, Web pages are returned by the server which are prebuilt.
They use simple languages such as HTML, CSS, or JavaScript.
There is no processing of content on the server (according to the user) in Static Websites. Web pages are returned by the server with no change therefore, static Websites are fast.
There is no interaction with databases.
Also, they are less costly as the host does not need to support server-side processing with different languages.
============
In Dynamic Websites, Web pages are returned by the server which are processed during runtime means they are not prebuilt web pages but they are built during runtime according to the user’s demand.
These use server-side scripting languages such as PHP, Node.js, ASP.NET and many more supported by the server.
So, they are slower than static websites but updates and interaction with databases are possible.
위 문제에서는 정적 컨텐츠만 존재하므로 따로 인프라가 필요하지 않기 때문에 S3 버킷을 생성한 후 웹 사이트를 호스팅 하면 된다.
20221031
개발 팀에는 다른 개발 팀이 액세스할 수 있는 웹 사이트가 있어야 합니다. HTML, CSS, 클라이언트측 JavaScript 및 그래픽은 웹사이트의 콘텐츠를 구성합니다.
어떤 형태의 웹사이트 호스팅이 가장 비용 효율적입니까?
웹 호스팅을 하는데 정적으로 웹 호스팅을 하기 때문에 정적 웹사이트 호스팅을 할수 있는 서비스로는 S3로 가능하다. 가장 저렴하며 정적인 콘텐츠만 존재하기 때문에 다른 서비스나 인프라가 필요하지 않기 때문에 S3 버킷을 생성하여 해당 S3 버킷을 웹 호스팅을 하면 서비스가 가능하기 때문에 정답은 B가 된다.
'[AWS] > AWS SAA EXAMTOPICS' 카테고리의 다른 글
[AWS][SAA][EXAMTOPICS][공유][시험 출제] Question 89 (확인) (0) | 2022.11.08 |
---|---|
[AWS][SAA][EXAMTOPICS] Question 88 (확인) (0) | 2022.11.08 |
[AWS][SAA][EXAMTOPICS] Question 87 (확인) (0) | 2022.11.07 |
[AWS][SAA][EXAMTOPICS] Question 86 (확인) (0) | 2022.11.07 |
[AWS][SAA][EXAMTOPICS] Question 84 (확인) (0) | 2022.10.31 |
[AWS][SAA][EXAMTOPICS] Question 83 (확인) (0) | 2022.10.31 |
[AWS][SAA][EXAMTOPICS] Question 82 (확인) (0) | 2022.10.31 |
[AWS][SAA][EXAMTOPICS] Question 81 (확인) (1) | 2022.10.04 |
댓글