FSD-Unit One: Section 1 Flashcards

1
Q

Software

A

A collection of instructions for a computer to execute|syn: program, app, application

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

Application

A

Software designed for an end user|app

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

Source Code

A

Code that builds software and is readable to a human| source, src

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

Open Source

A

Source code that is available to view and use| OSS

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

Hello, World!

A

A program that prints “Hello, World!”

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

Local Machine

A

Your very own computer in front of you| local

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

Code of Conduct

A

A written set of norms for a community, typically outlining rules, responsibilities, and accountability

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

Interface

A

A medium that takes information from one source, and passes it to another source. The interface usually a meaningful translation between the two sources.

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

Folder

A

A named container of files and other folders (normally named sub-folders). Can be inside another folder.

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

Root Directory

A

The nickname of the top-most folder that exists on the machine

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

pwd

A

Print the the path of the current working directory

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

ls

A

List the visible files and folders that are inside of the current directory

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

ls -A

A

List all the files and folders inside of the current directory

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

cd some_folder

A

Change the working directory to the given path. This path is a relative path from the current location

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

cd ..

A

Change the working directory to the given path… And .. is a nickname for the “parent folder of the current directory.”

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

cd ~

A

Change the working directory to the home directory.

17
Q

mkdir new-folder-name

A

Creates a new folder with the given path and folder name. By default, this will create a new folder as a sub-folder in the current working directory

18
Q

touch new_file.py

A

Creates a new file with the given path and file name. By default, this creates a new file inside the current working directory

19
Q

rm -rf folder-name

A

Deletes the folder with the given path and folder name, and all of the files and folders inside of it. By default, this deletes the folder in the current working directory

20
Q
A