Multiple choice Which of the following methods set the frame surface color to pink? setBackground(Color.pink); setColor(PINK); Background(pink); None of the above Reveal answer Fill a bubble to check yourself A Correct answer Explanation The setBackground(Color) method, inherited from Component, sets the background color of any component including Frame. Color.pink is the correct way to specify pink color in Java AWT.