Wild Card
Robotics
Python
Web Development
Data Science
100

Name two of the companies we've visited.

AirXOS

LogMeIn

MassChallenge


100

What is the language we use for our robots called?

Arduino C 

100

What is a boolean?

A data type that can either be set to True or False. 

100
Name two of the languages used for Web Development. 

HTML and Javascript 

100

What language is typically used for Data Science?

Python 

200

Name three people who work at GE.

Nicole Leber

Tobi Polland 

Morgan Wessel 

200

What does BOE stand for?

Board of Education 

200

Name the two types of loops in Python. 

For Loops

While Loops

200

How do you add style to a webpage? 

CSS (Cascading Style Sheets)

200

What is the name of the organization that provides free data sets?

CORGIS

300

What does a Computer Vision Scientist do? 

They use cameras and images to sense when certain actions occur. Their programs automatically detect change through pictures. Also image recognition in general. 
300

What are the two "bad" types of circuits? 

Open Circuits

Short Circuits 

300

Define a tuple. 

A tuple is an immutable list of values marked by parentheses. 

300

What does this code do:

<h1> Hello World </h1>

Makes the header of the web page "Hello World" 

300

Explain what histogram bins are used for? 

They are used to divide data into intervals.  

400

How many calories are in a bag of Skinny Pop?

39 in 1 cup 

150 in the bag 

400

In a circuit which leg in the LED light is connected to power and which is connected to ground? 

The longer leg is connected to power. The shorter leg is connected to ground. 

400

What does the following function do?

def mystery(mystery1):

      return (mystery1 % 2 == 0)

 A function that determines if a number is even. 

400
What does API stand for? 

Application Programming Interface

400

What does this code do:

def mystery(mysteryList):

      empty = {}

      for i in range(len(mysteryList)):

           if mysteryList[i] == "hello":

                  empty[i] = mysterList[i] 

return empty 

     

Empty will return with a key value pair wherever the "hello" string appears in the list. 

Ex. {1: "hello"} or {2: "hello"}

500

What is the name of the mascot for salesforce? 

Codey the Bear 

500

In Arduino when you use writeMicroseconds for the servos, what is the number for counter-clockwise rotating? 

1700 

500

Explain what the following code does:

List1 = ["a", "b", "c", "d"]

List2 = [1,2,3,4]

List3 = []

for i in range(len(List1)):

     for num in List2:

             List3.append(List1[i] + str(num)) 

return List3


Output: 

['a1', 'a2', 'a3', 'a4', 'b1', 'b2', 'b3', 'b4', 'c1', 'c2', 'c3', 'c4', 'd1', 'd2', 'd3', 'd4']

500

Whats the difference between Synchronous and Asynchronous calls?

Synchronous calls do nothing between program calls - it waits. Asychronous calls multitask and don't wait between calls. 

500

Name atleast five keys in the Twitter Tweet object?

- id 

- text

- user

- place

- entities

- screen_name

- hashtags 

M
e
n
u