Multiple Choice
Java is a strongly typed language. What is meant by "strongly typed"?
A) Every variable must have an associated type before it can be used.
B) Variables can be used without declaring their types.
C) Every variable has a single type associated with it throughout its existence in the program and the variable can only store values of that type.
D) Variables are allowed to change type during their existence in a program so long as the value a variable currently stores is of the type it currently declared to be.
E) Variables are allowed to change types during their existence in a program but only if the change is to a narrower type.
Correct Answer:

Verified
Correct Answer:
Verified
Q4: What are the syntax errors from the
Q5: If you want to output a double
Q6: What will be the result of the
Q7: Unlike the String class where you must
Q8: Write a program which will input an
Q10: Given three int variables with the values
Q11: How many ways are there to test
Q12: Write an assignment statement to compute the
Q13: Given four int values, x1, x2, y1,
Q14: The following statement will output _ lines