How would you convert the string input to a int.
string score = “32”;
int score1 = Convert.ToInt32(score);
What does const in the following example mean.
const int max = 4;
that the variable can not be modified
What would you wrap around the letter A in the example to store a char into a variable?
char firstletter = A;
char firstletter = ‘A’;
What are the different Jumping statements?
break continue goto return throw
How would you change this string into a float?
string answer = “23”;
float answer2 = float.Parse(answer);