Name two of the companies we've visited.
AirXOS
LogMeIn
MassChallenge
What is the language we use for our robots called?
Arduino C
What is a boolean?
A data type that can either be set to True or False.
HTML and Javascript
What language is typically used for Data Science?
Python
Name three people who work at GE.
Nicole Leber
Tobi Polland
Morgan Wessel
What does BOE stand for?
Board of Education
Name the two types of loops in Python.
For Loops
While Loops
How do you add style to a webpage?
CSS (Cascading Style Sheets)
What is the name of the organization that provides free data sets?
CORGIS
What does a Computer Vision Scientist do?
What are the two "bad" types of circuits?
Open Circuits
Short Circuits
Define a tuple.
A tuple is an immutable list of values marked by parentheses.
What does this code do:
<h1> Hello World </h1>
Makes the header of the web page "Hello World"
Explain what histogram bins are used for?
They are used to divide data into intervals.
How many calories are in a bag of Skinny Pop?
39 in 1 cup
150 in the bag
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.
What does the following function do?
def mystery(mystery1):
return (mystery1 % 2 == 0)
A function that determines if a number is even.
Application Programming Interface
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"}
What is the name of the mascot for salesforce?
Codey the Bear
In Arduino when you use writeMicroseconds for the servos, what is the number for counter-clockwise rotating?
1700
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']
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.
Name atleast five keys in the Twitter Tweet object?
- id
- text
- user
- place
- entities
- screen_name
- hashtags