Java An Introduction to Problem Solving and Programming Chapter 1.2 (Notes)

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/3

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

4 Terms

1
New cards

Applications and Applets

ā€¢ Applications are normal programs.
ā€¢ Applets run within a Web Browser

2
New cards

A First Java Application Program

ā€¢ A user runs and interacts with a program.
ā€¢ A package is a library of classes.
ā€¢ A class contains methods.
ā€¢ Every application has a main method.
ā€¢ Objects perform actions when you call its methods.
ā€¢ Variables store data.
ā€¢ A data type specifies a set of values and their operations.
ā€¢ A program gets, or reads, data from a user.
ā€¢ Syntax is the set of grammatical rules for a language.

3
New cards

Writing, Compiling, and Running a Java Program

ā€¢ You write a Java program.
ā€¢ Each class is in a file whose name end in .java.
ā€¢ You have to compile a Java program.
ā€¢ Use the command javac to compile,
example: javac MyClass.java.
ā€¢ Bytecode is in a file whose name ends in.class.
ā€¢ Use the command java to execute,
example: java FirstProgram
Note: You write the class name, not the name of the file containing the class or its bytecode.

4
New cards