Question
Seven persons—T, U, V, W, X, Y and Z are sitting
along a circle facing the centre. T is between Z and W. V is second to the right of W and is between U and Y. U is not the neighbour of X. Who among the following sits fourth to the right of T?Solution
What does the #!/bin/bash line at the beginning of a shell script indicate?
Which command is used to display all currently running processes in Linux?
How can you make a shell script executable?
Which construct allows embedding a block of text in shell scripts as input?
In shell scripting, which command is used to read input from the user?
Which character is used to denote a single-line comment in a shell script?
What does #!/bin/bash at the start of a script mean?
Extended globbing in bash allows:
In Bash, which syntax is used for arithmetic expansion?
What will be the output of the following script snippet?
  for item in Apple Banana Cherry; do
 echo $item
done