Coding Terms Flashcards
Computer processes the steps line-by-line from top to bottom.
Each step is created by writing a statement.
Script
Computer graphics that you can move via code; a 2D player that walks is an animated ______.
Sprites
They check for a condition and run the code in them until the condition is no longer true
While loops
Getting a computer to act w/o explicitly being programmed to do so.
Machine Learning
This is a part of C++ and is called when the program starts
Main function
Check for a condition and then run a code block
Loops
The first word of the name is lowercase and each new word after that is capitalized
Camel case
How long do while loops run?
Unknown amount of times
Main difference between for loops and while loops?
For loops run a block of code a set # of times
These statements evaluate to true or false
Conditional
Runs a block of code on whether or not a condition is true
If statement
Where you type your code and run your programs.
A software that makes coding simpler
Integrated Development Environment
A type of IDE, handles Python specifically
Jupyter Notebook
A library developed by Google to facilitate the creation and training of machine learning models and neural networks
TensorFlow
Name the different types of variables.
String Char Int Double/Float Bool