How many bits does a nibble contain - CORRECT ANSWER-4 bits
In the following sequence of events,
What are the BASES for the following systems:
hexadecimal, binary, decimal - CORRECT ANSWER-16, 2, 10
In Ubuntu, using terminal mode, move to your pgm1 folder - CORRECT ANSWER-cd
pgm1
Name 5 current text editors explained in this class - CORRECT ANSWER-Pico, Nano,
Gedit, VM, Notepad
Using Windows Batch language
Write a While loop that will display FIU in five (5) different lines - CORRECT ANSWER-
COUNTER=0
:while
if (%COUNTER%==5)
{
GOTO END
}
else
{echo FIU
set /p COUNTER=!COUNTER! + 1
}
GOTO
while
:END
Using shell commands, display your current directory name - CORRECT ANSWER-
echo "My current directory name is: $PWD";
What is the Major Problems of Virtual Machines explained in this class - CORRECT
ANSWER-When the host fails all VMs get disconnected
Using shell commands, select the command that display a new empty screen -
CORRECT ANSWER-clear
What is the decimal value of the hexadecimal number AC9 - CORRECT ANSWER-
2761