Which of the following is the correct /* implementation */ code for the constructor in the card class?
public class Card {
private String suit;
private int value; // 0 to 12
public Card(String cardSuit, int cardValue)
{ /* implementation */ }
// Other methods not shown
}
Group of answer choices
a. suit = cardSuit; b. value = cardValue;
c, this.suit = suit; d. this.value = value;
e. cardSuit = suit; f. cardValue = value;
g. Card = new Card(suit, value);