Linux

 48 Minutes
 24 Questions


This test is designed to assess a candidate's knowledge of Linux technology. It will cover topics such as processes, network, I/O redirection, files and file system, basics, and Bash scripting. The test is intended to evaluate the candidate's ability to use Linux technology in a professional setting.


Example Question:

Multiple-Choice
What will be the output of the following script?
[root@rnd /]# cat test.sh
#!/bin/bash
a=30
if [$a < 60 ]
then
echo $a
fi
[root@rnd /]# . test.sh