Question
In order to reduce fraudulent activities, the
e-ticketing and catering arm of Indian Railways, IRCTC has entered into a partnership with ___________.Solution
In order to reduce fraudulent activities, the e-ticketing and catering arm of Indian Railways, Indian Railway Catering and Tourism Corporation (IRCTC) has entered into a partnership with caller identification platform Truecaller to assure passengers that critical communication such as booking details as well as PNR status is being delivered only by the e-ticketing corporation.
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