Vocab Flashcards

1
Q

absolute path

A

A path that refers to a particular location in a file system. Absolute paths are usually written with respect to the file system’s root directory, and begin with either “/” (on Unix) or “\” (on Microsoft Windows). An example of an absolute path is /home/appacademy/Downloads which would be the path for the directory that contains downloads for the “appacademy” account.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

command line interface

A

A user interface based on typing commands that interacts with files and the operating system. On Windows, you will use the Ubuntu environment for that. On macOS, you will use Terminal.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

current working directory

A

”.” or “dot”

The directory that relative paths are calculated from; equivalently, the place where files referenced by name only are searched for. The current working directory is usually referred to using the shorthand notation “.” (pronounced “dot”).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

file system

A

A set of files and directories. A file system may be spread across many physical devices, or many file systems may be stored on a single physical device; the operating system manages access.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

filename extension

A

The portion of a file’s name that comes after the final “.” character. By convention this identifies the file’s type: .txt means “text” file, .png means “Portable Network Graphics” file, and so on. These conventions are not enforced by most operating systems: it is perfectly possible (but confusing!) to name an MP3 sound file “homepage.html” which makes it look like an HTML file for showing content in a Web browser!

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

home directory

A

The default directory associated with an account on a computer system. By convention for your account, all of your files are stored in or below your home directory. On macOS, that is found in the /Users/«your-name»k directory. On Ubuntu, you can find your home directory under /home/«your-name». On Windows, you will find it under C:\Users\«your-name». On Ubuntu and macOS, the shortcut for your home directory is “~”.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

operating system

A

Software that manages interactions between users, hardware, and software processes. Common examples are Linux, macOS, and Windows.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

parent directory

A

The directory that “contains” the one in question. Every directory in a file system except the root directory has a parent. A directory’s parent is usually referred to using the shorthand notation “..” (pronounced “dot dot”).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

path

A

A unique description that specifies the location of a file or directory within a file system. There are two kinds of paths: absolute paths and relative paths.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

relative path

A

A path that specifies the location of a file or directory with respect to the current working directory. Any path that does not begin with a path separator character, “/” on Ubuntu and macOS, is a relative path. The path “Documents/Contracts/” is a relative path from the current working directory into a “Contracts” subdirectory under a “Documents” subdirectory. You know that “Contracts” is a subdirectory because there’s another path separator (“/”) after it.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

root directory

A

The top-most directory in a file system. On macOS and Ubuntu, its name is “/”.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

shell

A

A command-line interface such as Bash or Z shell that allows you to interact with the operating system.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

subdirectory

A

A directory contained within another directory. All directories except the root directory are subdirectories.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

wildcard

A

A character used to specify a pattern to match. In Bash or Z shell, the wildcard character “” matches zero or more characters. This means that “.txt” would match any name that ends with “.txt”.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

GUI

A

graphical user interface - With a GUI, we give instructions by touching portions of the screen or clicking a mouse to interact with elements of the GUI.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q
A