Final answer:
The false statement among the options is 'b. When you instantiate objects, each has its own copy of each static data field in the class.' The correct information is that all instances share the same copy of static data fields.
Step-by-step explanation:
Among the statements provided, the false one is:
b. When you instantiate objects, each has its own copy of each static data field in the class.
This statement is not accurate because when an object is instantiated from a class, all instances of the class share the same copy of static data fields, rather than each having their own copy. The correct statement would be:
When you instantiate objects, they all share the same copy of each static data field in the class.
The other statements are as follows:
a. A class header contains an optional access specifier, the keyword class, and an Identifier. (True)
c. Most fields in a class are private, and most methods are public. (Generally true)