Coding Vocab
Whats the Output
Type of code, or science fiction?
Find the Bug!
TECHNOLOGY GRAB BAG!
100

What is a program?

An algorithm (or collection of algorithms) that has been coded into something that can be run by a machine

100

print("Hello my dudes")

Hello my dudes

100

C++

REAL CODE!

100

int numOPeople = 5

don't need to include int

100

What company codes phones (that sometime explode), washer machines, and now FRIDGES!

Samsung

200

What is looping?

The act of doing something over and over again

200

while(True):

             print("Pie Shenanigans");

infinite loop of "Pie Shenanigans"

200

DOGO

Real code!

200

firstName = Reginald

Missing quotes around Reginald

200

This American city's public transportation system runs ENTIRELY off of pullies and cables.

What is San Francisco (cable cars)

300

What are conditionals?

Programs or "rewards" that only run when certain parameters are met.

300

x = "banana"

print("x")

x

300

LOLCODE

Code!

300

numOfStudent = "5"

numOfStudent += 1

trying to add 1 to a string

300

This technology allows for computer aided designs to be built to their exact specifications, in real time.

What is a 3D Printer

400

What is Camel Casing

The practice of writing compound words or phrases such that each word or abbreviation in the middle of the phrase begins with a capital letter, with no intervening spaces or punctuation

400

x = 0

while(x < 5):

            print(x)

            x += 1

0

1

2

3

4

400

Chicken

CODE

400

x = 5

print (x)


x needs to be casted as a string

400

This company wants to use drones to deliver packages

Amazon

500

What is a bug?

a error in the code

500

x = input("Enter a Number")

if (x >= 0):

         print("Greater than 0")

if (x <= 0):

         print("Less than 0")

If the input = 0 - infinity it will print out: "Greater than 0"

If the input = 0 -negative infinity it will print out: "Less than 0"


500

ColdFusion

CODE! Used by Adobe

500

x = "ABCDEF"

x[2] = 'c'

can't modify a string

500

This well known tech genius is one of the foremost names in clean energy and transportation. He also met with our president elect the other day

Elon Musk