Intro to CS Study Guide 2023 Flashcards
What does HTML stand for?
Hypertext Markup Language π©
How do you add a paragraph into an HTML code?
By putting <p> and ending it with </p> π©
What does CSS stand for?
Cascading Style Sheets π©
In this line of code, what is the meaning of the two numbers?
rect(100,100)
x,y π©
True or false:
A sprite is a character on the screen with properties that describes its location, movement, and look.
Trueπ©
What is Machine Learning?
Machine learning is how computers recognize patterns & make decisions w/o being explicitly programmed. π₯
What is Input?
The information computers get from users, devices, or other computers. π©
What is Output?
The information computers give to users, devices, or other computers. π©
What is Processing?
The thinking work computers do to turn input to output. π¨
What does Bias mean?
When a decision favors some things and de-prioritizes or excludes others. π¨
What is a Model Card?
Model cards can help evaluate and analyze machine learning models. π¨
What is Categorical Data?
Data that can be put into categories. π©
What is Numerical Data?
Data that can be counted or measured. π©
In App Lab, how do you change the whole theme of the app?
To change the theme, you have to go on the βdesignβ tab, click on βtheme,β and then change it from default to your preferrable theme. π¨
In App Lab, how do you change ONE design aspect of the app?
You can change the font in App Lab by clicking βtext inputβ or βtext areaβ then writing whatever you want, then changing the font family.π¨
What does Ethics mean?
Guidelines for good behavior. π¨
What line color is variables, data, and UI controls?
WORD BANK: purple, green, and yellow.
Variables- purple- VPN. π©
Data- green- DOG
UI controls- yellow- UYI.
What is Computer Science?
The study of the principals and use of computers (programming, too.) π¨
What is Decomposition?
Decomposition is breaking down a problem or task into smaller and more manageable parts. π¨
What does Sequencing mean?
A programmed (coded) algorithm.π₯
What is Pseudocode?
Pseudocode is informal description of a computer program or algorithm.π₯
What is a Loop?
A loop is when we repeat the code over and over. The block is βrepeat __ times do.β π©
What is a Nested Loop?
A nested loop is when you have two loops inside each other.π¨
What is a Conditional Loop?
A conditional loop is is when thereβs a loop but smt has to happen for it to start. π©
In your Code Builder, you have a command that moves your Agent. How many directions can your Agent be coded to move? Name the directions.
There is 6 directions the Agent can move; forward, back, left, right, up, and down.π©
What does the βon chat commandβ mean?
The βon chat commandβ helps you do wtv you typed in the code. (Ex: if you type βjump,β u jump.)π₯
What does the βwhile true doβ block mean?
This code is a conditional loop.π₯
What does the βagent collect allβ block mean?
This block makes the Agent follow the player & collect any nearby blocks/items. π₯