Question: Which statement is the correct way to create a variable called rate and assign it the value 100?

  1. `let rate = 100;`
  2. `let 100 = rate;`
  3. `100 = let rate;`
  4. `rate = 100;`

Answer: The correct answer of the above question is Option A:`let rate = 100;`