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

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;

15 Cards in this Set

  • Front
  • Back

integrated development enviornment

provide tools that support the soft-ware development process, such as editors and debuggers for locating logic errors

javac

the command that compiles the program

compiler

a computer program that transforms source code written in a programming language into another computer language

source language

code written in computer programming language

object code

a computer language in binary form

.class file

the file created if a code successfully compiles

java application

a computer program that executes when you use the java command

class declaration

the statement at the beginning of the code that chooses a class ie. public or private




it is followed by the word class and then the class name

public class

a public class must be placed in a file using the format NewClass.java




by convention the first letter of each new word is capitalized

identifier

a series of characters consisting of letters, digits, underscores, and dollar signs that does not begin with a digit and does not contain spaces




a class name is an identifier

{ }

a left brace will begin the body of every class declaration and a right brace will end it




braces also surround the body of every method delcaration

main(String[] args)

the parenthesis after the identifier main indicate its a program building block called a method




for a Java application, one of the methods must be defined as such

keyword void

the keyword void indicates that this method will not return any information

string

together, quotations marks and everything between them is a string

System.out

the standard output object, this allows the Java application to display information in the command window