A step-by-step set of instructions used to complete a specific task or solve a problem.
(What is an Algorithm?)
This term refers to human prejudices or errors in data that can cause an AI to make unfair decisions.
(What is Algorithmic Bias?)
This HTML tag is used to create the largest possible heading on a webpage.
(What is <h1>?)
This argument is used inside a shape function to change the color of the interior.
(What is fill?)
Write code that draws a 5 pointed blue star with a radius of 20 anywhere that the user clicks on the canvas.
def onMousePress(x, y):
Star(x, y, 20, 5, fill = 'blue')
This concept involves filtering out unnecessary details to focus on the essential features of a problem.
(What is Abstraction?)
This is the name for the information fed into a machine learning model to help it learn.
(What is Dataset or Training Data?)
This file type is used to style webpages.
What is CSS?
These are the coordinates for the top-left corner of the canvas.
(What is 0, 0?)
This type of statement (like if-else) allows a program to choose between different paths based on a condition.
(What is Selection?)
This process involves checking how accurate a model is by using a separate set of data it hasn't seen before.
(What is Testing?)
This HTML tag is used to create a hyperlink to another page.
(What is the <a> or Anchor tag?)
In Circle(200, 200, 50), the number 50 represents this part of the circle.
(What is the Radius?)
This is the process of breaking a complex problem down into smaller, more manageable parts.
(What is Decomposition?)
A sorted set of information accessed by an AI during training.
What is a dataset?
This specific CSS value is paired with a class and used with the display property to create flexible, one-dimensional layouts.
(What is flex or Flexbox?)
This CMU function is used to animate, or iterate through a list of commands.
What is onStep( )?