Module 10 Review Quiz Flashcards

1
Q

Which of the following cloud delivery models uses containers exclusively to run Web apps?

a. SaaS	
b. PaaS	
c. IaaS	
d. XaaS
A

b. PaaS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Websites on a Web server provide the front end for most Web apps.

a. True
b. False

A

a. True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

In a continuous deployment scenario, which software creates a container or virtual machine on a cloud server to test the functionality of a new Web app version?

a. Orchestration	
b. Code repository	
c. Workflow	
d. Build automation
A

d. Build automation

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Block storage is a cheaper alternative to object storage on public cloud providers.

a. True
b. False

A

b. False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

To which of the following groups should you assign NTFS/ReFS permissions for Web app content in order to provide anonymous user access?

a. IUSRS	
b. .NET_USRS	
c. IIS_IUSRS	
d. WWWUSRS
A

c. IIS_IUSRS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What must you configure in IIS Manager to allow users to access a help desk ticketing system Web app using the URL https://www.sample.com/helpdesk? (Choose all that apply.)

a. A helpdesk virtual directory
b. Request filtering
c. An HTTPS protocol binding
d. The WebSocket protocol

A

a. A helpdesk virtual directory
c. An HTTPS protocol binding

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Which of the following IIS configuration features is used to specify the default webpage or Web app file that a client views?

a. Directory Browsing	
b. Handler Mappings	
c. Request Filtering	
d. Default Document
A

d. Default Document

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

The docker command is also called the Docker daemon.

a. True
b. False

A

b. False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Which docker command displays container images available on Docker Hub?

a. docker images	
b. docker container images	
c. docker search	
d. docker pull
A

c. docker search

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Nano Server containers must be run as a Hyper-V container on Windows Server 2019.

a. True
b. False

A

a. True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Which command can you execute to create a container from the microsoft/iis container image that runs in the background and automatically maps port 80 in the container to a port above 32767 on the underlying operating system?

a. docker run -d -P microsoft/iis

b. docker run -d -p *:80 microsoft/iis

c. docker exec -it -P microsoft/iis

d. docker exec -it -p *:80 microsoft/iis

A

a. docker run -d -P microsoft/iis

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

After a container is running, you cannot configure its contents until the container is stopped.

a. True
b. False

A

b. False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Which of the following commands can be used to display containers that are no longer running?

a. docker ps	
b. docker list	
c. docker images	
d. docker ps -a
A

d. docker ps -a

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

The Windows Subsystem for Linux (WSL) allows you to execute Web apps in a virtual machine on Windows Server 2019.

a. True
b. False

A

b. False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Which of the following Linux distributions are supported for use with WSL? (Choose all that apply.)

a. Fedora
b. Ubuntu
c. OpenSUSE Leap
d. Debian GNU/Linux

A

a. Fedora
b. Ubuntu
c. OpenSUSE Leap
d. Debian GNU/Linux

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

The Linux Containers on the Windows (LCOW) feature of Windows Server 2019 allows you to run Linux containers only if Docker EE was obtained using the DockerMsftProvider Windows PowerShell module.

a. True
b. False

A

b. False

17
Q

Which of the following commands can be used to start the Apache Web server in a Linux container or WSL Linux distribution on a Windows Server 2019 system?

a. httpstart	
b. apachectl start	
c. apt-get start apache	
d. apt-get start http
A

b. apachectl start

18
Q

Each Linux container run on Windows Server 2019 using LCOW is automatically run as a Hyper-V container that executes on a Linux kernel provided by the LinuxKit component of Docker EE.

a. True
b. False

A

a. True

19
Q

You are tasked with deploying a private cloud in your organization that needs to host both Windows and Linux Web apps using a SaaS delivery model on a single Windows Server 2019 system. What technology should you configure on the Windows Server 2019 system?

a. WSL	
b. LCOW	
c. Hyper-V	
d. Docker EE
A

a. WSL

20
Q

Your organization develops a containerized Linux Web app that is run on a public cloud provider. To minimize cloud costs, a continuous deployment process is not used. Instead, Web app developers must add new versions of their Linux Web app to a container and test its functionality locally before running it on the public cloud provider. What could you configure on an existing Windows Server 2019 system to allow the Web app developers in your organization to test new versions of their containerized Linux Web app? (Choose all that apply.)

a. Hyper-V
b. IIS
c. Docker EE
d. LCOW

A

a. Hyper-V
c. Docker EE
d. LCOW