Summer Special Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: exc65

Which of the following statements are true about container-based virtualization? (Choose two.)

A.

Each container runs its own operating system kernel.

B.

Different containers may use different distributions of the same operating system.

C.

Container-based virtualization relies on hardware support from the host system's CPU.

D.

All containers run within the operating system kernel of the host system.

E.

Linux does not support container-based virtualization because of missing kernel APIs.

What is true aboutcontainerd?

A.

It is a text file format defining the build process of containers.

B.

It runs in each Docker container and provides DHCP client functionality

C.

It uses rune to start containers on a container host.

D.

It is the initial process run at the start of any Docker container.

E.

It requires the Docker engine and Docker CLI to be installed.

Which directory is used bycloud-initto store status information and configuration information retrieved from external sources?

A.

/var/lib/cloud/

B.

/etc/cloud-init/cache/

C.

/proc/sys/cloud/

D.

/tmp/.cloud/

E.

/opt/cloud/var/

If aDockerfilecontains the following lines:

WORKDIR /

RUN cd /tmp

RUN echo test > test

where is the filetestlocated?

A.

/ting/test within the container image.

B.

/root/tesc within the container image.

C.

/test within the container image.

D.

/tmp/test on the system running docker build.

E.

test in the directory holding the Dockerf ile.

Which statement is true regarding the Linux kernel module that must be loaded in order to use QEMU with hardware virtualization extensions?

A.

It must be loaded into the kernel of the host system only if the console of a virtual machine will be connected to a physical console of the host system

B.

It must be loaded into the kernel of each virtual machine that will access files and directories from the host system's file system.

C.

It must be loaded into the Kernel of the host system in order to use the visualization extensions of the host system's CPU

D.

It must be loaded into the kernel of the first virtual machine as it interacts with the QEMU bare metal hypervisor and is required to trigger the start of additional virtual machines

E.

It must be loaded into the kernel of each virtual machine to provide Para virtualization which is required by QEMU.

After creating a new Docker network using the following command:

docker network create --driver bridge isolated_nw

which parameter must be added todocker createin order to attach a container to the network?

A.

--eth0=isolated_nw

B.

--alias=isolated_nw

C.

--ethernet=isolated_nw

D.

--network=isolated_nw

E.

--attach=isolated_nw

Which of the following types of guest systems does Xen support? (Choose two.)

A.

Foreign architecture guests (FA)

B.

Paravirtualized quests (PVI

C.

Emulated guests

D.

Container virtualized guests

E.

Fully virtualized guests

Which of the following statements is true regarding the following output ofxl list:

A.

Both Debian and Ubuntu require xl commands to start running.

B.

The domain with ID 2 uses Para virtualization.

C.

CentOS is the domain which has consumed the most CPU time.

D.

Ubuntu is idle or waiting for I/O.

E.

It is necessary to use the xl command to change Ubuntu’s state to running.

Which of the following commands lists all differences between the disk images vm1-snap.img and vm1.img?

A.

virt-delta -a vm1-snap.img -A vm1.img

B.

virt-cp-in -a vm1-snap.img -A vm1.img

C.

virt-cmp -a vm1-snap.img -A vm1.img

D.

virt-history -a vm1-snap.img -A vm1.img

E.

virt-diff -a vm1-snap.img -A vm1.img

How does Packer interact with system images?

A.

Packer has to be installed within the target image and is executed during the image's first boot in order to execute preparation tasks.

B.

Packer installs a client within the image which has to be run periodically via cron in order to retrieve the latest template from the Packer server and apply it locally.

C.

Packer periodically connects through the network to the Packer daemons of all running Packer images in order to re-apply the whole template to the running instance.

D.

Packer downloads and extracts an image in order to make changes to the image's file system, repack the modified image and upload it again.

E.

Packer creates an instance based on a source image, prepares the instance through a network connection and bundles the resulting instance as a new system image.