Create a 'Card" class that models a single playing card. Each card should have suit (Char data type, 'D' for diamond, 'S' for spade, 'C' for club, and 'H' for heart), color (Char data type, 'R' for red and 'B' for black), and number (numbers, 1 to 13). Use 11, 12, and 13 to represent Jack, Queen, and King, respectively. Each card should have methods 'getSuit()', 'getColor()', 'getNumber()', 'set- Suit()', 'setColor()', and 'setNumber()'. 'setSuit()', 'setColor()', and 'setNumber()' functions sets the suit, color, and number, respectively for the card, while 'getSuit()', 'getColor()', and 'get- Number()' returns the suit, color, and number, respectively.