Question: What two functions within the NumPy library could you use to solve a system of linear equations?
- `linalg.eig() and .matmul()`
- `linalg.inv() and .dot()`
- `linalg.det() and .dot()`
- `linalg.inv() and .eye()`
Answer: The correct answer of the above question is Option A:`linalg.eig() and .matmul()`