Module 10 Review Quiz Flashcards
Which of the following cloud delivery models uses containers exclusively to run Web apps?
a. SaaS b. PaaS c. IaaS d. XaaS
b. PaaS
Websites on a Web server provide the front end for most Web apps.
a. True
b. False
a. True
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
d. Build automation
Block storage is a cheaper alternative to object storage on public cloud providers.
a. True
b. False
b. False
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
c. IIS_IUSRS
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 helpdesk virtual directory
c. An HTTPS protocol binding
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
d. Default Document
The docker command is also called the Docker daemon.
a. True
b. False
b. False
Which docker command displays container images available on Docker Hub?
a. docker images b. docker container images c. docker search d. docker pull
c. docker search
Nano Server containers must be run as a Hyper-V container on Windows Server 2019.
a. True
b. False
a. True
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. docker run -d -P microsoft/iis
After a container is running, you cannot configure its contents until the container is stopped.
a. True
b. False
b. False
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
d. docker ps -a
The Windows Subsystem for Linux (WSL) allows you to execute Web apps in a virtual machine on Windows Server 2019.
a. True
b. False
b. False
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. Fedora
b. Ubuntu
c. OpenSUSE Leap
d. Debian GNU/Linux
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
b. False
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
b. apachectl start
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. True
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. WSL
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. Hyper-V
c. Docker EE
d. LCOW