• 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/19

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;

19 Cards in this Set

  • Front
  • Back

Data type

A characteristic of a program value; a variable or constant's data type describes the kind of values it can hold and the types of operations that can be performed with it.

Numeric

Describes data that consists of numbers and with which numeric operations can be performed.

String

Describes data that is non-numeric.

Integer

A whole number

Floating-point

A fractional, numeric variable that contains a decimal point; also known as "real numbers".

Numeric constant (literal numeric constant)

A specific numeric value

String constant (literal string constant)

A specific group of characters enclosed with quotation marks.

Alphanumeric values

The set of values that includes alphabetic characters, numbers, and punctuations.

Unnamed constants

A literal numeric or string value.

Variable

Named memory locations whose contents can vary or differ.

Declaration

A statement that names a variable and its data type.

Numeric variable

A variable that holds numeric values

String variable

A variable that can hold text that includes letters, digits, and special characters, such as punctuation marks.

Type safety

The feature of programming languages that prevents assigning values of an incorrect data type

Identifier

A program component's name

Keywords

The limited word set that is reserved in a language

Assignment statement

A statement that stores a value on its right side to the named location on its left side.

Assignment operator

The equal sign; always requires the name of a memory locatin in its left side

Binary operator

An operator that requires two operands- one on each side