Solved

Which of the Following Statements Is False

Question 30

Multiple Choice

Which of the following statements is false


A) In any class that does not explicitly declare a constructor, the compiler provides a public default constructor (which always has no parameters) .
B) When a class has only the default constructor, the class's instance variables are initialized to their default values: 0 for numeric simple types, false for simple type bool and null for all other types.
C) If you declare one or more constructors for a class, the compiler will not create a default constructor for that class.
D) If the compiler does not create a default constructor for an Account class, you will not be able to create an Account object with the expression new Account() .

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions