Linux - Study Mode
[#401] What is the output of this program? #!/bin/bash
a=10
b=$(( $a<0?10:$a<100 ))
echo $b
exit 0
Correct Answer
(C) 1
[#402] Which screen manipulation command sets the screen back to normal?
Correct Answer
(C) tput rmso
[#403] If we have multiple source files, then during the debugging with GDB
Correct Answer
(B) break point can be set by "break" command with a filename
[#404] In GDB, we can refer to machine register contents, in expressions, as variables with names starting with
Correct Answer
(A) $
[#405] The command syntax to display the file 'sample.txt' one page at a time is
Correct Answer
(C) cat sample.txt|more