Mr.Jones
General Knowledge
Python
Blender
Microbits
100

What school is Mr.Jones teaching at next year

Riverside

100

What district are we in?

SD43

100

what is wrong with the following line of code:

Print("hello world")

Capital P

100

Is Blender free?

Yes

100

What type of coding did we use?

Block coding

200

What is Mr. Jones's first name

Spencer


200

where is area 51 located (state)?

Nevada

200

 <, > , ==, !=

are all examples of what?

Boolean Expressions

200

A point on blender is called a?

vertices 

200

What inputs can we use on our microbits

A, B, A+B and shake

300

How old is Mr. Jones

23

300

What is the strongest geometric shape?

Triangle

300

What does pop do?

Removes an item based on its location from a list

300

Before manipulating an object we have to be in what mode?

Edit

300

How do you pair to microbits?

Use radio set group

400

What post secondary schools did Mr. Jones attend

Douglas, BCIT, UBC

400

Who is the most followed person on instagram?

Cristiano Ronaldo

400

What is the italic part of this function called?

x = function(a,b,c)

arguments

400

What view mode allows us to see through our object only at the lines of our structure

wire frame

400

What type of statements are our else and if statements

logic

500

Where is Mr.Jones taking his masters?

UBC

500

Taylor Swift just went on tour, what was the name of her tour?

Eras tour

500

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

500

When opening a blender file what are the 3 starting items?

light, object, camera

500

Write this in python


def on_received_number(receivedNumber):

    if receivedNumber == 0:

        basic.show_leds("""

            . . # . .

            . . # # .

            # # # # #

            . . # # .

            . . # . .

            """)