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

List of questions
Question 11

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?
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
Question 12

Which component of Kubernetes runs on all nodes and ensures that the containers are running in a pod?
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
Question 13

Which two statements are correct about containers? (Choose two.)
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.
Question 14

What are two Kubernetes objects? (Choose two.)
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.
Question 15

Which two statements are correct about an overlay network? (Choose two.)
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
Question 16

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?
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
Question 17

Which two Linux commands would you use to show the amount of RAM in your system? (Choose two.)
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
Question 18

Which statement is correct about overlay or underlay networks or fabrics?
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
Question 19

Which two statements are correct about Kubernetes resources? (Choose two.)
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
Question 20

Which Docker component builds, runs, and distributes Docker containers?
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.
Question