What does a rotation matrix for 90 degrees look like?
A). [[1, 0], [0, 1]]
B). [[0, -1], [1, 0]]
C). [[0, 1], [-1, 0]]
D). [[-1, 0], [0, -1]]
What does a scaling matrix look like?
A). [[1, 0], [0, 1]]
B). [[0, 1], [1, 0]]
C). [[s, 0], [0, s]]
D). [[0, s], [s, 0]]
What is the determinant of a scaling matrix?
A). Always 1
B). Always 0
C). Depends on the scaling factor
D). Always -1
Which matrix operation is used for shearing?
A). Addition
B). Subtraction
C). Multiplication
D). Division
What does a translation matrix look like?
A). [[1, 0], [0, 1]]
B). [[0, 1], [1, 0]]
C). [[1, 0, tx], [0, 1, ty], [0, 0, 1]]
D). [[1, tx], [ty, 1]]
Which transformation does a skewing matrix perform?
A). Rotation
B). Scaling
C). Shearing
D). Reflection
What does a transformation matrix do?
A). Adds two matrices
B). Multiplies two matrices
C). Divides two matrices
D). Subtracts two matrices
What is the result of multiplying an object by the identity matrix?
A). It is rotated
B). It is scaled
C). It is translated
D). It remains unchanged
How do you combine transformation matrices for multiple operations?
A). Add them together
B). Multiply them in reverse order
C). Multiply them in the given order
D). Divide them
What happens to a vector multiplied by the zero matrix?
A). It is rotated
B). It is scaled
C). It becomes a zero vector
D). It becomes an identity vector