Q. Which keyword is used to define an immutable variable in Rust?
β
Correct Answer: (A)
let
Explanation: In Rust, 'let' defines an immutable variable by default. 'mut' is used to make it mutable.