wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Docker and Kubernetes - Day-2

Total questions: 11

Worksheet time: 2mins

Name
Class
Date
1.

The smallest execution unit in Kubernetes is:

a)

Deployment

b)

Container

c)

Pod

d)

Node

2.

Kubernetes was originally designed and developed by:

a)

RedHat

b)

Amazon

c)

Cloud Native Computing Foundation

d)

Google

3.

What type of Kubernetes Service can easily expose the application to the Internet?

a)

NodePort

b)

LoadBalancer

c)

ClusterIP

d)

EgressIP

4.

Which Kubernetes cluster component stores cluster configuration?

a)

API Server

b)

etcd

c)

kubelet

d)

Configuration Controller

5.

What is responsible of managing and enforcing the state of PODs in Kubernetes?

a)

API Server

b)

Control Plane

c)

kubelet

d)

Container runtime

6.
  1. Which field in Resource declaration lets a ReplicaSet target specific Pods?

a)

port

b)

label selector

c)

name

d)

replicas

7.

What happens when a control plane in Kubernetes fails?

a)

All existing PODs will be terminated

b)

You can not schedule new PODs

c)

You can still schedule new PODs because the kubelet still works on all nodes

d)

All existing PODs will go to hung state

8.

The short for of Kubernetes name is:

a)

kubernet

b)

kubelet

c)

k8s

d)

kubectl

9.

In a multi-container Pod, what will be the IP addresses of individual Containers?

a)

The same for all containers

b)

Each container will get individual IP address

c)

Only containers which listen on certain port will get individual IP address

d)

You have to specify which container will get the first IP address

10.

How are Pod names created by Deployment?

a)

<ReplicaSet>-<Deployment>-<randomString>

b)

<Deployment>-<ReplicaSet>-<randomString>

c)

<Deployment>-<randomString>

d)

<ReplicaSet>-<randomString>

11.

The Kubernetes is written in which programming language?

a)

C++

b)

JavaScript

c)

Go

d)

Rust