Intro to CS Study Guide 2023 Flashcards

1
Q

What does HTML stand for?

A

Hypertext Markup Language 🟩

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

How do you add a paragraph into an HTML code?

A

By putting <p> and ending it with </p> 🟩

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

What does CSS stand for?

A

Cascading Style Sheets 🟩

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

In this line of code, what is the meaning of the two numbers?
rect(100,100)

A

x,y 🟩

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

True or false:
A sprite is a character on the screen with properties that describes its location, movement, and look.

A

True🟩

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

What is Machine Learning?

A

Machine learning is how computers recognize patterns & make decisions w/o being explicitly programmed. πŸŸ₯

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

What is Input?

A

The information computers get from users, devices, or other computers. 🟩

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

What is Output?

A

The information computers give to users, devices, or other computers. 🟩

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

What is Processing?

A

The thinking work computers do to turn input to output. 🟨

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

What does Bias mean?

A

When a decision favors some things and de-prioritizes or excludes others. 🟨

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

What is a Model Card?

A

Model cards can help evaluate and analyze machine learning models. 🟨

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

What is Categorical Data?

A

Data that can be put into categories. 🟩

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

What is Numerical Data?

A

Data that can be counted or measured. 🟩

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

In App Lab, how do you change the whole theme of the app?

A

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. 🟨

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

In App Lab, how do you change ONE design aspect of the app?

A

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.🟨

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

What does Ethics mean?

A

Guidelines for good behavior. 🟨

16
Q

What line color is variables, data, and UI controls?
WORD BANK: purple, green, and yellow.

A

Variables- purple- VPN. 🟩
Data- green- DOG
UI controls- yellow- UYI.

17
Q

What is Computer Science?

A

The study of the principals and use of computers (programming, too.) 🟨

18
Q

What is Decomposition?

A

Decomposition is breaking down a problem or task into smaller and more manageable parts. 🟨

19
Q

What does Sequencing mean?

A

A programmed (coded) algorithm.πŸŸ₯

20
Q

What is Pseudocode?

A

Pseudocode is informal description of a computer program or algorithm.πŸŸ₯

21
Q

What is a Loop?

A

A loop is when we repeat the code over and over. The block is β€œrepeat __ times do.” 🟩

22
Q

What is a Nested Loop?

A

A nested loop is when you have two loops inside each other.🟨

23
Q

What is a Conditional Loop?

A

A conditional loop is is when there’s a loop but smt has to happen for it to start. 🟩

24
Q

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.

A

There is 6 directions the Agent can move; forward, back, left, right, up, and down.🟩

25
Q

What does the β€œon chat command” mean?

A

The β€œon chat command” helps you do wtv you typed in the code. (Ex: if you type β€œjump,” u jump.)πŸŸ₯

26
Q

What does the β€œwhile true do” block mean?

A

This code is a conditional loop.πŸŸ₯

27
Q

What does the β€œagent collect all” block mean?

A

This block makes the Agent follow the player & collect any nearby blocks/items. πŸŸ₯