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

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;

24 Cards in this Set

  • Front
  • Back

if

A statement used to create a decision structure.

boolean

A data type that can be true or false

char

A data type that can store a single letter that is enclosed in single quotation marks.

class

A Java key word that indicates the beginning of a class definition

Double

A primitive data type that uses floating-point numbers to store data

double

A primitive data type that uses floating-point numbers to store data

else

A statement that provides a separate group from a given if statement to be executed if the if statement isn't true.

false

A boolean data type that causes an if statement to move on to the else or next else if statement.

float

A primitive data type that is a floating-point number

import

A statement that tells the Java compiler where in the Java library to find a class and makes it available to your program

int

A primitive data type that is an integer number. Must be a whole number.

long

A primitive data type that is an integer data type, and must be a whole number.

new

A Java key word that creates an object in memory

null

Used with JOptionPane.showMessageDialog to display a message dialog

null

Used with JOptionPane.showMessageDialog to display a message dialog. It is a reference to nothing.

private

A Java key word that is an access specifier that controls where the class may be accessed from, in this case restricted.

public

A Java key word that is an access specifier that controls where the class may be accessed from. Public means access to the class is unrestricted.

public

A Java key word that is an access specifier that controls where the class may be accessed from. Public means access to the class is unrestricted.

short

A primitive data type that is an integer data type and must be a whole number

static

A Java key word and a method which is associated with the class, but is not a specific object of that class.

true

A boolean data type that allows an if or else if statement to be executed

void

Used in the method header, means that the method has no return value

const

aka final, makes a variable so it cannot be redefined

const

aka final, makes a variable so it cannot be redefined