Question: What is the difference between the declarations of COLOR and SIZE?
- Since `COLOR` and `SIZE` are both immutable, they are identical internally
- Both are immutable, but the use of the keyword const makes `COLOR` slower and less space efficient than `SIZE`
- const makes `COLOR` faster, but not compatible with Java. Without const, `SIZE` is still compatible with Java
- Both are immutable, but the use of the keyword const makes `COLOR` faster and more space efficient than `SIZE`
Answer: The correct answer of the above question is Option D:Both are immutable, but the use of the keyword const makes `COLOR` faster and more space efficient than `SIZE`