Question: Which statement is the correct way to create a variable called rate and assign it the value 100?
- `let rate = 100;`
 - `let 100 = rate;`
 - `100 = let rate;`
 - `rate = 100;`
 
Answer: The correct answer of the above question is Option A:`let rate = 100;`