Labour Day Sale Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: buysanta

Exact2Pass Menu

Question # 4

After setting up a data container using the following command:

docker create -v /data --name datastore debian /bin/true

how is an additional new container started which shares the/datavolume with the datastore container?

A.

docker run --share-with datastore --name service debian bash

B.

docker run -v datastore:/data --name service debian bash

C.

docker run --volumes-from datastore --name service debian bash

D.

docker run -v /data --name service debian bash

E.

docker run --volume-backend datastore -v /data --name service debian bash

Full Access
Question # 5

Which of the following commands executes a command in a running LXC container?

A.

lxc-accach

B.

lxc-batch

C.

lxc-run

D.

lxc-enter

E.

lxc-eval

Full Access
Question # 6

Which of the following values would be valid in the FROM statement in aDockerfile?

A.

ubuntu:focal

B.

docker://ubuntu: focal

C.

registry:ubuntu:focal

D.

file:/tmp/ubuntu/Dockerfile

Full Access
Question # 7

Virtualization of which hardware component is facilitated by CPUs supporting nested page table extensions, such as Intel Extended Page Table (EPT) or AMD Rapid Virtualization Indexing (RVI)?

A.

Memory

B.

Network Interfaces

C.

Host Bus Adapters

D.

Hard Disks

E.

IO Cache

Full Access
Question # 8

FILL BLANK

What command is used to run a process in a new Linux namespace? (Specify ONLY the command without any path or parameters.)

Full Access
Question # 9

Which of the following values are valid in thefirmwareattribute of aelement in a libvirt domain definition?(Choose two.)

A.

scsi

B.

virtio

C.

efi

D.

bios

E.

pcie

Full Access
Question # 10

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

Full Access
Question # 11

Which of the following tasks are part of a hypervisor’s responsibility? (Choose two.)

A.

Create filesystems during the installation of new virtual machine quest operating systems.

B.

Provide host-wide unique PIDs to the processes running inside the virtual machines in order to ease inter-process communication between virtual machines.

C.

Map the resources of virtual machines to the resources of the host system.

D.

Manage authentication to network services running inside a virtual machine.

E.

Isolate the virtual machines and prevent unauthorized access to resources of other virtual machines.

Full Access
Question # 12

In an IaaS cloud, what is a common method for provisioning new computing instances with an operating system and software?

A.

Each new instance is connected to the installation media of a Linux distribution and provides access to the installer by logging in via SSH.

B.

Each new instance is created based on an image file that contains the operating system as well as software and default configuration for a given purpose.

C.

Each new instance is a clone of another currently running instance that includes all the software, data and state of the original instance.

D.

Each new instance is connected via a VPN with the computer that started the provisioning and tries to PXE boot from that machine.

E.

Each new instance contains a minimal live system running from a virtual CD as the basis from which the administrator deploys the target operating system.

Full Access
Question # 13

What is the purpose of capabilities in the context of container virtualization?

A.

Map potentially dangerous system calls to an emulation layer provided by the container virtualization.

B.

Restrict the disk space a container can consume.

C.

Enable memory deduplication to cache files which exist in multiple containers.

D.

Allow regular users to start containers with elevated permissions.

E.

Prevent processes from performing actions which might infringe the container.

Full Access
Question # 14

FILL BLANK

What LXC command starts a new process within a running LXC container? (Specify ONLY the command without any path or parameters.)

Full Access
Question # 15

Which of the following resources can be limited by libvirt for a KVM domain? (Choose two.)

A.

Amount of CPU lime

B.

Size of available memory

C.

File systems allowed in the domain

D.

Number of running processes

E.

Number of available files

Full Access
Question # 16

Ifdocker stackis to be used to run a Docker Compose file on a Docker Swarm, how are the images referenced in the Docker Compose configuration made available on the Swarm nodes?

A.

docker stack builds the images locally and copies them to only those Swarm nodes which run the service.

B.

docker stack passes the images to the Swarm master which distributes the images to all other Swarm nodes.

C.

docker stack instructs the Swarm nodes to pull the images from a registry, although it does not upload the images to the registry.

D.

docker stack transfers the image from its local Docker cache to each Swarm node.

E.

docker stack triggers the build process for the images on all nodes of the Swarm.

Full Access
Question # 17

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

Full Access
Question # 18

Which of the following commands deletes all volumes which are not associated with a container?

A.

docker volume cleanup

B.

docker volume orphan -d

C.

docker volume prune

D.

docker volume vacuum

E.

docker volume garbage-collect

Full Access