Coding Terms Flashcards

1
Q

Computer processes the steps line-by-line from top to bottom.

Each step is created by writing a statement.

A

Script

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

Computer graphics that you can move via code; a 2D player that walks is an animated ______.

A

Sprites

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

They check for a condition and run the code in them until the condition is no longer true

A

While loops

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

Getting a computer to act w/o explicitly being programmed to do so.

A

Machine Learning

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

This is a part of C++ and is called when the program starts

A

Main function

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

Check for a condition and then run a code block

A

Loops

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

The first word of the name is lowercase and each new word after that is capitalized

A

Camel case

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

How long do while loops run?

A

Unknown amount of times

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

Main difference between for loops and while loops?

A

For loops run a block of code a set # of times

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

These statements evaluate to true or false

A

Conditional

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

Runs a block of code on whether or not a condition is true

A

If statement

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

Where you type your code and run your programs.

A software that makes coding simpler

A

Integrated Development Environment

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

A type of IDE, handles Python specifically

A

Jupyter Notebook

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

A library developed by Google to facilitate the creation and training of machine learning models and neural networks

A

TensorFlow

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

Name the different types of variables.

A
String 
Char
Int
Double/Float
Bool
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How people create instructions for computers to follow.

A

Coding

17
Q

A computers way to represent information

A

Binary #s

18
Q

What are bits?

A

The individual 1s & 0s you see in binary

19
Q

Containers that hold variables; they’re used to group together similar variables

Think of these like shelves at a pet store.

The ______ would be the shelf, and the animals in cages are the variables inside

A

Arrays

20
Q

A way to provide more information to a function

A

Argument