Question: Which command will create a column vector with the values 7, 8, and 9?

  1. `c = [7,8,9]`
  2. `c = [7: 8: 9]`
  3. `c = [7; 8; 9]`
  4. `c = [7 8 9]`

Answer: The correct answer of the above question is Option C:`c = [7; 8; 9]`