Q. Which keyword is used to define a mutable variable in Rust?
β
Correct Answer: (B)
mut
Explanation: Rust uses 'mut' to make a variable mutable; 'let' alone creates an immutable variable.