Weekend Sale - Special 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 70dumps

305-300 Questions and Answers

Question # 6

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 # 7

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 # 8

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.

Full Access
Question # 9

Which functionality is provided by Vagrant as well as by Docker? (Choose three.)

A.

Both can share directories from the host file system to a guest.

B.

Both start system images as containers instead of virtual machines by default.

C.

Both can download required base images.

D.

Both can apply changes to a base image.

E.

Both start system images as virtual machines instead of containers bv default.

Full Access
Question # 10

Which of the following kinds of data cancloud-initprocess directly from user-data? (Choose three.)

A.

Shell scripts to execute

B.

Lists of URLs to import

C.

ISO images to boot from

D.

cloud-config declarations in YAML

E.

Base64-encoded binary files to execute

Full Access
Question # 11

Which of the following statements are true regarding VirtualBox?

A.

It is a hypervisor designed as a special kernel that is booted before the first regular operating system starts.

B.

It only supports Linux as a guest operating system and cannot run Windows inside a virtual machine.

C.

It requires dedicated shared storage, as it cannot store virtual machine disk images locally on block devices of the virtualization host.

D.

It provides both a graphical user interface and command line tools to administer virtual machines.

E.

It is available for Linux only and requires the source code of the currently running Linux kernel to be available.

Full Access
Question # 12

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 # 13

What is the purpose of the commandvagrant init?

A.

It executes a provisioning tool in a running box.

B.

It starts a Vagrant box.

C.

It creates a Vagrant configuration file.

D.

It installs Vagrant on a Linux host.

E.

It downloads a Vagrant box.

Full Access
Question # 14

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

E.

http://docker.example.com/images/ubuntu-focal.iso

Full Access
Question # 15

What is the purpose of the packer inspect subcommand?

A.

Retrieve files from an existing Packer image.

B.

Execute commands within a running instance of a Packer image.

C.

List the artifacts created during the build process of a Packer image.

D.

Show usage statistics of a Packer image.

E.

Display an overview of the configuration contained in a Packer template.

Full Access
Question # 16

Which of the following statements about the commandlxc-checkpointis correct?

A.

It creates a clone of a container.

B.

It doubles the memory consumption of the container.

C.

It only works on stopped containers.

D.

It writes the status of the container to a file.

E.

It creates a container image based on an existing container.

Full Access
Question # 17

What does IaaS stand for?

A.

Information as a Service

B.

Intelligence as a Service

C.

Integration as a Service

D.

Instances as a Service

E.

Infrastructure as a Service

Full Access
Question # 18

What kind of virtualization is implemented by LXC?

A.

System containers

B.

Application containers

C.

Hardware containers

D.

CPU emulation

E.

Paravirtualization

Full Access