Rules:
If the letter is a consonant:
If the letter is a vowel:
What is the word "_____" in Backwards Bounce?
ttue
23 % 5 or 23 MOD 5 is
3
Convert 222 into binary
11011110
This compression algorithm is better at reducing the number of bits needed to represent a piece of data
Lossy
Finding and removing errors in a program
Debugging
Rules:
If the letter is a consonant:
If the letter is a vowel:
What is the word "____" in Backwards Bounce?
mmnuppq
43 % 9 is
7
Convert 90 into binary
01011010
This type of compression allows a data file to be reduced in size while still being completely restorable to its original version
Lossless
When a program is structurally sound but will not run due to incorrect instructions
Logic error
Rules:
If the letter is a consonant:
If the letter is a vowel:
What is the word "_____" in Backwards Bounce?
sstarrsffginnoggh
x = 7
y = x
x = x + 4
y = y - 2
What are the values of X and Y when this runs?
X = 11
Y = 5
What is 00001111 in decimal?
15
Creative Commons enables content creators to freely distribute their _____________, which would otherwise be copyrighted.
Intellectual Property
This concept in coding refers to the process of making decisions by choosing between different paths or actions based on a condition, often using if or else statements.
Selection
Rule: Each letter is either even or odd depending on where it sits in the alphabet (A would be odd since it's the 1st letter, B would be even cause it's 2nd, etc.)
What is "No Cap" for the word ______?
C3A1p16
found ← false
newPlayer ← INPUT()
FOR EACH player IN team
IF player = newPlayer
found ← true
ENDIF
ENDFOR
IF NOT found
APPEND(team, newPlayer)
ENDIF
What does this function perform?
Adds a new player is added to the team only if the player is not already on the team.
What is 01011011 in decimal?
91
Annel wants to use a song for his YouTube channel. He found one that he liked online from a random artist. This is the only way Annel can use this song.
He can use it only if it is licensed for reuse/redistribute/reshare with a specific purpose and with a Creative Commons.
The structure of a program. Also known as its language.
Syntax
Rule: Each letter is either even or odd depending on where it sits in the alphabet (A would be odd since it's the 1st letter, B would be even cause it's 2nd, etc.)
What is "No Cap" for the word bookkeeper?
b2O15015K11K11E5E5p16E5r18
found ← false
searchWord ← INPUT()
FOR EACH word IN sentence
IF word = searchWord
found ← true
ENDIF
ENDFOR
IF found
OUTPUT("Word found!")
ELSE
OUTPUT("Word not found.")
ENDIF
What does this function perform?
Checks if a specific word exists in a sentence. It outputs "Word found!" if the word is present and "Word not found." if it is not.
Computers represent data in binary, or 1's and 0's. They are also known as this. (Ouch Charlie!)
Bits
Toby finds a video clip online that he wants to use for a school project and he wants to copy it, change it, and share it with his partners. Which CC license lets him do this?
Share Alike (SA)
A data type that only checks true or false.
Boolean