ExamGecko
Home Home / Juniper / JN0-213

Juniper JN0-213 Practice Test - Questions Answers, Page 2

Question list
Search
Search

You want to limit the memory, CPU, and network utilization of a set of processes running on a Linux host.

Which Linux feature would you configure in this scenario?

A.
network namespaces
A.
network namespaces
Answers
B.
slicing
B.
slicing
Answers
C.
virtual routing and forwarding instances
C.
virtual routing and forwarding instances
Answers
D.
control groups
D.
control groups
Answers
Suggested answer: D

Explanation:

Control groups (cgroups) is a Linux kernel feature that limits, accounts for, and isolates the CPU, memory, disk I/O, and network usage of one or more processes678. It allows you to allocate resources among user-defined groups of processes running on a system.You can monitor the groups of processes, deny the groups of processes access to certain resources, or even freeze groups of processes

Which component of Kubernetes runs on all nodes and ensures that the containers are running in a pod?

A.
kube-proxy
A.
kube-proxy
Answers
B.
kubelel
B.
kubelel
Answers
C.
container runtime
C.
container runtime
Answers
D.
kube controller
D.
kube controller
Answers
Suggested answer: B

Explanation:

The kubelet is a component of Kubernetes that runs on all nodes in the cluster and ensures that containers are running in a pod910.It takes a set of PodSpecs that are provided through various mechanisms and ensures that the containers described in those PodSpecs are running and healthy

Which two statements are correct about containers? (Choose two.)

A.
Containers include the entire operating system.
A.
Containers include the entire operating system.
Answers
B.
Containers reduce deployment efficiency.
B.
Containers reduce deployment efficiency.
Answers
C.
Containers have faster boot times than VMs. www*
C.
Containers have faster boot times than VMs. www*
Answers
D.
Containers require an underlying operating system.
D.
Containers require an underlying operating system.
Answers
Suggested answer: C, D

Explanation:

Containers are lightweight because they don't need the extra load of a hypervisor, but run directly within the host machine's kernel1. This means they start up almost instantly and use less RAM.Images are constructed from layered filesystems and share common files, making disk usage and image downloads much more efficient1. Containers are isolated from each other and the host system.They have their own filesystem and networking, and can be constrained to not allow root access outside the container1.They run on top of a host operating system1.

What are two Kubernetes objects? (Choose two.)

A.
cluster
A.
cluster
Answers
B.
namespace
B.
namespace
Answers
C.
pod
C.
pod
Answers
D.
service
D.
service
Answers
Suggested answer: C, D

Explanation:

In Kubernetes, a Pod is the smallest and simplest unit in the Kubernetes object model that you create or deploy23.A Pod represents processes running on your cluster23.A Service in Kubernetes is an abstraction which defines a logical set of Pods and a policy by which to access them23.

Which two statements are correct about an overlay network? (Choose two.)

A.
The overlay network can only be built using a Layer 3 underlay network.
A.
The overlay network can only be built using a Layer 3 underlay network.
Answers
B.
The overlay network provides physical connectivity between devices.
B.
The overlay network provides physical connectivity between devices.
Answers
C.
The overlay network is built using encapsulation tunnels.
C.
The overlay network is built using encapsulation tunnels.
Answers
D.
The overlay network is the virtual network used to connect multiple virtual machines (VMs).
D.
The overlay network is the virtual network used to connect multiple virtual machines (VMs).
Answers
Suggested answer: C, D

Explanation:

An overlay network is a virtual network that is built on top of another network.Nodes in the overlay network are connected by virtual or logical links, each of which corresponds to a path, perhaps through many physical links, in the underlying network45.For example, distributed systems such as peer-to-peer networks and client-server applications often overlay their own network connections over the physical network connections provided by the Internet

Your company has a Web app hosted in Kubernetes with a fluctuating number of pods.

In this scenario, which Kubernetes service type would provide equal access to all nodes using a single URL?

A.
ExternalName
A.
ExternalName
Answers
B.
NodePort
B.
NodePort
Answers
C.
LoadBalancer
C.
LoadBalancer
Answers
D.
ClusterIP
D.
ClusterIP
Answers
Suggested answer: C

Explanation:

The LoadBalancer service type in Kubernetes exposes the service externally using a cloud provider's load balancer67.NodePort and ClusterIP services, to which the external load balancer routes, are automatically created

Which two Linux commands would you use to show the amount of RAM in your system? (Choose two.)

A.
cat /proc/cpuinfo
A.
cat /proc/cpuinfo
Answers
B.
free -h
B.
free -h
Answers
C.
cat /proc/meminto
C.
cat /proc/meminto
Answers
D.
df -h
D.
df -h
Answers
Suggested answer: B, C

Explanation:

hefree -hcommand in Linux displays the total amount of free and used physical and swap memory in the system, as well as the buffers used by the kernel89.Thecat /proc/meminfocommand displays real-time information about the system's memory usage as well as the buffers and shared memory used by the kernel1

Which statement is correct about overlay or underlay networks or fabrics?

A.
Underlay fabrics decouple network services from the overlay infrastructure.
A.
Underlay fabrics decouple network services from the overlay infrastructure.
Answers
B.
Overlay networks are Layer 3 networks that must use OSPF for routing purposes.
B.
Overlay networks are Layer 3 networks that must use OSPF for routing purposes.
Answers
C.
Underlay fabrics enable multitenancy through virtualization.
C.
Underlay fabrics enable multitenancy through virtualization.
Answers
D.
Overlay networks are virtual networks.
D.
Overlay networks are virtual networks.
Answers
Suggested answer: D

Explanation:

Overlay networks are indeed virtual networks.They are logical constructs that stitch together disparate, dispersed network infrastructure, often referred to as underlay1.Underlay networks refer to the physical network infrastructure, while overlay networks implement network virtualization concepts2. Reference from Juniper site:Baeldung on Computer Science,PacketFabric,Cisco,HPE Aruba Networking

Which two statements are correct about Kubernetes resources? (Choose two.)

A.
A deploymentConfig is a Kubernetes resource.
A.
A deploymentConfig is a Kubernetes resource.
Answers
B.
A daemonSet ensures that a replica of a pod is running on all nodes.
B.
A daemonSet ensures that a replica of a pod is running on all nodes.
Answers
C.
A ClusterIP type service can only be accessed within a Kubernetes cluster.
C.
A ClusterIP type service can only be accessed within a Kubernetes cluster.
Answers
D.
NodePort service exposes the service externally by using a cloud provider load balancer.
D.
NodePort service exposes the service externally by using a cloud provider load balancer.
Answers
Suggested answer: B, C

Explanation:

A daemonSet in Kubernetes ensures that a replica of a pod is running on all nodes3.A ClusterIP type service can only be accessed within a Kubernetes cluster3. Reference from Juniper site:Kubernetes Documentation

Which Docker component builds, runs, and distributes Docker containers?

A.
docker cli
A.
docker cli
Answers
B.
containerd
B.
containerd
Answers
C.
dockerd
C.
dockerd
Answers
D.
docker registry
D.
docker registry
Answers
Suggested answer: C

Explanation:

The Docker component that builds, runs, and distributes Docker containers is dockerd. Dockerd is the persistent process that manages containers. Docker uses different binaries for different tasks. For example, it uses the docker binary for CLI commands and dockerd for the daemon process.

Total 65 questions
Go to page: of 7