Question: (Java Eclipse) Reference: You need to implement the following static methods associated with the DrawingApp class. Feel free to add any private static methods you
(Java Eclipse)
Reference:
You need to implement the following static methods associated with the DrawingApp class. Feel free to add any private static methods you think can help.
private static boolean isValidColor(char color) - This method returns true if the color parameter corresponds to one of the following characters: 'R' (red), 'G' (green), 'B' (blue), 'Y' (yellow), '*' (black), '.' (white).
Work:
public static char getRandomColor(Random random) - Using the random.nextInt(6) method call generate a random integer value between 0 and 5. The character to return for a particular integer will be:
0 'R'
1 'G'
2 'B'
3 'Y'
4 '*'
5 '.'
Expected Result: YR ("YR" should be the result printed after code is ran, please provide work and explanation behind use of code if possible).
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
