Quiz 6!

A short quiz to test your understanding of symbols and algebra.

We'll cover the following...
Technical Quiz
1.

What is the correct code to assign mutiple symbols to variable?

Note: This question can have multiple answers.

A.
x, y, z = symbols('x y z')
B.
x, y, z = Symbols('x y z')
C.
x = Symbol('x')
y = Symbol('y')
z = Symbol('z')
D.
x = symbols('x')
y = symbols('y')
z = symbols('z')

1 / 4

The ...