Q. What does the 'unwrap()' method do on a Result type?
β
Correct Answer: (B)
Returns the value or panics
Explanation: 'unwrap()' returns the value if Ok, or panics if Err.