No Cap / Backward Bounce
Math and Coding
Binary and conversion
Data and Compression
Basic Vocab
100

Rules: 

If the letter is a consonant:

  • Repeat the letter.
  • Add the next letter alphabetically.

If the letter is a vowel:

  • Reverse the vowel sequence ("a" becomes "u," "e" becomes "o," etc.).

What is the word "_____" in Backwards Bounce?

ttue

100

23 % 5 or 23 MOD 5 is 

3

100

Convert 222 into binary

11011110

100

This compression algorithm is better at reducing the number of bits needed to represent a piece of data

Lossy 

100

Finding and removing errors in a program

Debugging


200

Rules: 

If the letter is a consonant:

  • Repeat the letter.
  • Add the next letter alphabetically.

If the letter is a vowel:

  • Reverse the vowel sequence ("a" becomes "u," "e" becomes "o," etc.).

What is the word "____" in Backwards Bounce?

mmnuppq

200

43 % 9 is 

7

200

Convert 90 into binary

01011010

200

This type of compression allows a data file to be reduced in size while still being completely restorable to its original version

Lossless

200

When a program is structurally sound but will not run due to incorrect instructions

Logic error

300

Rules: 

If the letter is a consonant:

  • Repeat the letter.
  • Add the next letter alphabetically.

If the letter is a vowel:

  • Reverse the vowel sequence ("a" becomes "u," "e" becomes "o," etc.).

What is the word "_____" in Backwards Bounce?

sstarrsffginnoggh

300

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 

300

What is 00001111 in decimal?

15

300

Creative Commons enables content creators to freely distribute their _____________, which would otherwise be copyrighted.

Intellectual Property

300

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

400

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

  • Capitalize it if its position in the alphabet is odd.
  • Lowercase it if its position in the alphabet is even.
  • Put the number of where it is in the alphabet right after (baby = b2A1b2Y25)

What is "No Cap" for the word ______?

C3A1p16

400

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.

400

What is 01011011 in decimal?

91

400

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.

400

The structure of a program. Also known as its language. 

Syntax

500

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

  • Capitalize it if its position in the alphabet is odd.
  • Lowercase it if its position in the alphabet is even.
  • Put the number of where it is in the alphabet right after (baby = b2A1b2Y25)

What is "No Cap" for the word bookkeeper?

b2O15015K11K11E5E5p16E5r18

500

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.

500

Computers represent data in binary, or 1's and 0's. They are also known as this. (Ouch Charlie!)

Bits

500

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)

500

A data type that only checks true or false. 

Boolean