Discuss the below:
Task:
You coded the following on line 10 of the class MyApplet.java:
Color c = Color.Blue; //line 10
When you compile, you get the following message:
Myapplet.java:10: Cannot find symbol
Color C = Color.blue; //line 10
Symbol: variable blue
Location Class Color
1 error
Q: Explain what the problem is and how to fix it.