• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/5

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

5 Cards in this Set

  • Front
  • Back

Record data type

Type

DECLARE a : Primitive data type

DECLARE b : Primitive data type

(More if needed)

ENDTYPE

Declaring Record as a type and point nontation

DECLARE Something : X




X.b← "put what data is needed"

Enumerated data type

TYPE


TYPE < Identifier 1> = (Hearts, Spades, Clubs, Diamonds)




TYPE < Identifier 2> = (1,2,3,4,5)




TYPE< Identifier 3> = (A,2,3,4,5,6,7,8,9,10,J,Q,K)


ENDTYPE

Declaring Enumerated data type

DECLARE Suit1 : < Identifier 1>


DECLARE Five : < Identifier 2>


DECLARE Card_Rank_Highest : < Identifier 3>

Assignment within Enumerated Data types

Suit1 Hearts


Five ← 5


Card_Rank_Highest ← K