What school is Mr.Jones teaching at next year
Riverside
What district are we in?
SD43
what is wrong with the following line of code:
Print("hello world")
Capital P
Is Blender free?
Yes
What type of coding did we use?
Block coding
What is Mr. Jones's first name
Spencer
where is area 51 located (state)?
Nevada
<, > , ==, !=
are all examples of what?
Boolean Expressions
A point on blender is called a?
vertices
What inputs can we use on our microbits
A, B, A+B and shake
How old is Mr. Jones
23
What is the strongest geometric shape?
Triangle
What does pop do?
Removes an item based on its location from a list
Before manipulating an object we have to be in what mode?
Edit
How do you pair to microbits?
Use radio set group
What post secondary schools did Mr. Jones attend
Douglas, BCIT, UBC
Who is the most followed person on instagram?
Cristiano Ronaldo
What is the italic part of this function called?
x = function(a,b,c)
arguments
What view mode allows us to see through our object only at the lines of our structure
wire frame
What type of statements are our else and if statements
logic
Where is Mr.Jones taking his masters?
UBC
Taylor Swift just went on tour, what was the name of her tour?
Eras tour
What is wrong with the following code?
1.response = input("What temperature F is it today?")
2.fahrenheit = int(response)
3.celsius = 5/9 * (fahrenheit - 32)
4.print(str(fahrenheit) + F is + str(celsius) + C)
1.response = input("What temperature F is it today?")
2.fahrenheit = int(response)
3.celsius = 5/9 * (fahrenheit - 32)
4.print(str(fahrenheit) + "F is " + str(celsius) + "C“)
When opening a blender file what are the 3 starting items?
light, object, camera
Write this in python
def on_received_number(receivedNumber):
if receivedNumber == 0:
basic.show_leds("""
. . # . .
. . # # .
# # # # #
. . # # .
. . # . .
""")