You are on page 1of 4

Q1: If the variable $var1 is set to 10 and the $var2 is set to the character var1, what's the

value of $$var2??

a $$var2 contains the value 10.

b $$var2 contains the value 1.

c None

d $$var2 contains the value 5

e $$var2 contains the value 20

f None

Q2: Which function returns reference to Array of row values??

a Fetch()

b Fetchrow_array()

c Fetchrow_hashref()

d None

e Fetchrow_arrayref()

f Fetchrow_refarray()

Q3: Applications inside the containers accept configuration parameters in the form of
environment variables. These variables can tell the app to listen on a specific port but you
can't use a specific password.?

a None

b None

c False

d None

e True

f None
Q4: What does the PHP error 'Parse error in PHP - unexpected T_variable at line x' means??

a This is a PHP logical error expressing that a mistake at the line x stops parsing and
executing the program.

b None

c This is a PHP warning error expressing that a mistake at the line x stops parsing
and executing the program.

d None

e None

f This is a PHP syntax error expressing that a mistake at the line x stops parsing and
executing the program.

Q5: You can install Docker Engine directly to servers you have on cloud providers. The
providers supported are:?

a None

b Google Cloud

c Amazon Web Services (AWS)

d None

e Digital Ocean

f Microsoft Azure

Q6: What is the correct syntax of the usermeta function in Wordpress??

a get_user( int $user_id, string $key = '', bool $single = true )

b None

c get_user_meta( int $user_id, string $key = '', bool $single = false )

d get_user_meta( int $user_id, string $key = '', bool $single = true )

e None

f None
Q7: What does the unset() function do??

a The unset() function is dedicated for variable management. It will make a variable
undefined.

b None

c None

d None

e None

f The unset() function is not dedicated for variable management. It will make a
variable defined.

Q8: Which of the following is true for Kube-proxy??

The correct Answer is: None

b Kube-proxy is a network proxy that runs only on the master node

The correct Answer is: None

The correct Answer is: None

The correct Answer is: None

f Kube-proxy can run on each and every node and can do simple TCP/UDP packet
forwarding across backend network service.

Q9: How do you call a function named "myFunction"??

a None

b None

c call function myFunction()

d None

e call myFunction()

f myFunction()
Q10: In which variable is the users IP address stored??

a $DOMAIN

b $GLOBALS

c None

d $_ENV

e None

f $REMOTE_ADDR

Q11: Which option can be used with ‘rm’ command to prompt for file removal??

a -ask

b -n

c None

d -i

e None

f -c

Q12: What is the most common procedure for compiling programs under Linux??

a None

b gcc file_name

c None

d compile file_name

e make file_name

f ./configure && make && make install

You might also like