Variables Practice

Variables Practice#

This question is to assess your understanding of the syntax and use of variables.

Question

Suppose I now wanted to create a variable called year that stores a student’s year (as a Freshman). What would be the correct syntax to create this variable?

  1.  string year = "Freshman";
    
  2.  String year = 'Freshman';
    
  3.  String year = Freshman;
    
  4.  String year = "Freshman";