1/27
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
What does coding mean?
Writing a series of instructions in the syntax of a particular language so that a computer will execute a series of tasks.
What is a shell scripting language?
Uses commands that are specific to an operating system.
What is a general-purpose scripting language?
Uses statements and modules that are independent of the operating system; executed by an interpreter that implements the language for a particular OS.
What is a programming language used for (vs scripting)?
Compile an executable file that can be installed on an OS and run as an app.
What are scripting types often described as?
Glue languages.
What is a glue language used for?
Automate and orchestrate functions of multiple different OS and app software.
What does “script support” in an editor mean?
The editor can parse the syntax of the script and highlight elements of it appropriately.
What does an IDE provide for complex scripts/programming languages?
Autocomplete features and debugging tools.
What file extension does a Linux shell script use by convention?
.sh
What does the shebang line in a shell script do?
Designates which interpreter to use, such as Bash or Ksh.
What must be set for a Linux script file to run?
Execute permission (for the user, group, or world).
How do you execute a script from the working directory if PATH to the script has not been configured?
Precede the filename with ./