Checkpoint 13.4.1.
Based on your observations from the active code above, the cards in
deck
are initialized to the correct suits and ranks of a standard deck of 52 cards.
- True - we used the buildDeck function with a few modifications to do this.
- How do we create the deck?
- True - we wrote a Deck constructor to do this.
- The for loops in the Deck constructor initialize each card to its proper value.
- False - we used the buildDeck function with a few modifications to do this.
- Look at the active code. How do we create the deck?
- False - we wrote a Deck constructor to do this.
- Look at the active code.