Card 2 / 76: Which statement is not true about package statements?
A)
Package statements are optional.
B)
Package statements are limited to one per source file.
C)
Standard Java coding convention for package names reverses the domain name of the organization or group creating the package.
D)
The package names beginning with javas.* and javaw.* are reserved.
Answer:
D) The package names beginning with javas.* and javaw.* are reserved.
Previous Card | ← Previous Card Button |
Next Card | → Next Card Button |
Flip Card | Space-Bar |
Package names beginning with javas.* and javaw.* are NOT reserved and can be freely used.
However, the package names beginning with java.* and javax.* ARE reserved.
A, B, and C are incorrect answers because they are all true statements and the question was looking for the false statement.
|