Pre-Work Flashcards

1
Q

GUI

A

Graphical User Interface- the visual and/or graphic component of a computer

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

Terminal

A

Text based interface that allows a user to interact with the computer by entering commands on a command line.

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

Command Line Prompt

A

The snippet of text left of the cursor

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

Path

A

The unique location of a file or folder in the file system hierarchy. Ex- Users/Andrea/Pictures/fun-day.jpg is the path for the image fun-day.jpg.

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

Directory

A

Another name for folder in the file system hierarchy.

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

Subdirectory

A

Directory within a directory

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

mv file-name new-file-name

A

Moves contents of first file to second file

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

cp file-name new-file-name

A

Creates an exact copy of the contents of the first file into the second

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

rm file-name

A

Deletes file

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

rm-r directory-name

A

Deletes directory and all files inside

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

Text editor

A

Software designed to write text in a raw format without formatting or styling added

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

TextEdit/Notepad

A

The default text editor on Mac/Windows

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

Package Manager

A

Software that is designed to help manage other programs that are installed or need to be installed on a device.

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

Git

A

A system of tracking changes between different versions of code

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

GitHub

A

A website that works with Git to store, share, organize, and update code.

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

Version Control System

A

A system that helps developers manage the various versions of their code.

17
Q

Commit

A

In Git, a snapshot of all the folders and files of a project that is saved to the project history.

18
Q

Repository

A

In Git, a container that holds all of the source code for a project.

19
Q

Vim

A

Default text editor designed for the use of the command line.

20
Q

Global

A

An option in many command line commands that applies the chance everywhere instead of just in the current directory.