65.6k views
3 votes
Which of the following statements is false? a. Each object of a class shares one copy of the class's instance variables. b. A class has attributes, implemented as instance variables. Objects of the class carry these instance variables with them throughout their lifetimes. c. Class, property and method names begin with an initial uppercase letter (i.e., Pascal case); variable names begin with an initial lowercase letter (i.e., camel case). d. Each class declaration is typically stored in a file having the same name as the class and ending with the .cs filename extension

User Vajapravin
by
5.3k points

1 Answer

5 votes

Answer:

a) Each object of a class shares one copy of the class's instance variables.

Step-by-step explanation:

User Noway
by
5.5k points