Question
From the following letters, select the sixth and
fourteenth letters from your right and select the fifth and twentieth letter from your left and form a meaningful word. ABCDEFGHIJKLMNOPQRSTUVWXYZ Which of the following options is correct regarding that word?Solution
Given letters: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 6th and 14th letter from the right is U and M . The 5th and 20th letters are E and T . So, the letters are U, M, E, T. The meaningful word can be formed from U, M, E, T is MUTE . Hence, "M is the first letter of that word" is the correct answer.
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