You are on page 1of 3

Q1: How can we access the data sent through the URL with the POST method??

a $_POST["var"];

b None

c $_PUT["var"];

d $_GET["var"];

e $_REQUEST["var"];

f None

Q2: __________________ is responsible for health check of the pods running on individual nodes?

a Kube controller manager

b Kubectl

c Kubelet

d Kube scheduler

The correct Answer is: None

The correct Answer is: None

Q3: How to list all pods that are either labelled with env=development or with
env=production?

The correct Answer is: None

b $ kubectl get pods 'env in (production, development)'

The correct Answer is: None

The correct Answer is: None

The correct Answer is: None

f $ kubectl get pods -l 'env in (production, development)'

Q4: What does the FROM instruction do in a Dockerfile??


a FROM is an invalid instruction

b None

c FROM specifies the creator of the image

d None

e FROM creates a layer from a base Docker image.

f FROM adds files from your Docker client’s current directory

Q5: How do you list all the running Docker containers??

The correct Answer is: None

b $ docker ps

The correct Answer is: None

d $ docker --ps

e $ -docker ps

The correct Answer is: None

Q6: To use 'mysqldbcopy' which privileges are required on the source server??

a None

b UPDATE

c INSERT

d SELECT

e None

f CREATE

Q7: The HTML global attribute, "contenteditable" is used to:?

a Specify whether the content of an element should be editable or not

b None
c Update content from the server

d Specifies a context menu for an element. The menu appears when a user right-
clicks on the element

e Return the position of the first found occurrence of content inside a string

f None

Q8: How can you list only the directories in your current directory using ls command??

a ls -ld

The correct Answer is: None

c ls -d

The correct Answer is: None

e ls --dir

f ls -l|grep “^d”

You might also like