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

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

1/14

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.

15 Terms

1
New cards

Variables

ā€¢ A variable is a program component used to store or represent data.
ā€¢ variables represent memory locations.
ā€¢ Choose meaningful variable names.
ā€¢ Declare variables before using them.

2
New cards

Data Types

ā€¢ A data type specifies a set of values and operations.
ā€¢ Class types and primitive types.
ā€¢ A floating-point number has a fractional part.
ā€¢ Single quotes enclose a character.

3
New cards

Primitive Types

ā€¢ byte
ā€¢ short
ā€¢ int
ā€¢ long
ā€¢ float
ā€¢ double
ā€¢ char
ā€¢ boolean

4
New cards

Java Identifiers

ā€¢ Java is case sensitive.
ā€¢ Legal identifiers:
- Can contain only letters.
- Can contain digits from 0 - 9.
- And underscore character ( _ ).
ā€¢ Illegal identifiers:
- First first character can not be a digit.
- The name may not have a space.
- can not contain characters such as dot ( . ) or an asterisk ( * ).
ā€¢ Java keywords have special meanings.

5
New cards

Assignment Statements

ā€¢ An assignment statement gives a value a variable.
ā€¢ " * " means mulitply
ā€¢ The same variable can occur on both sides of the " = "
Example: count = count + 10;

6
New cards

Programmer Tip

ā€¢ You can initialize a variable when you declare it.
ā€¢ Variables that are not been given a value when declared is known as uninitialized.
ā€¢ All primitive variables have a default value, it has been known to change over time and should not be depended on.

7
New cards

Simple Input

Use the standard class Scanner to accept keyboard input.

8
New cards

Constants

ā€¢ A constant does not change in value.
ā€¢ Java's e notation is like scientific notation.
example: 8650000000 is the same as
- 8.65 x 10^8 or 8.65e8
- the e8 resembles 10^8

9
New cards

Named Constants

ā€¢ Name important constants all in capital letters and underscores.

10
New cards

Assignment Compatibilities

ā€¢ A value can be assigned to a variable whose type allows more precision.
- byte -> short -> int -> long -> float -> double
- small cups can fit in bigger cups, but bigger cups can't fit in smaller cups.

11
New cards

Type Casting

ā€¢ A type cast changes the data type of a value.
- Remember the cups.
- To make a big cup fit a smaller cup use type casting.
example: double distance = 9.9;
int points = distance;
points value will be 9.
ā€¢ Truncation discards the fractional part.
- 9.9 will be 9, it doesn't round up or down, but instead removes that after the dot.

12
New cards

Arithmetic Operators

ā€¢ An arithmetic expression combines operands, operators, and parentheses.
ā€¢ Operands in an arithmetic expression can have mixed data types.
ā€¢ Integer division truncates the result.
ā€¢ The % operator gets the remainder after division.

13
New cards

Parentheses and Precedence Rules

ā€¢ From highest precedence to lowest precedence:
- +=; -=; !; ++; and --;
- *; /; and %.
- + and -.
ā€¢ Precedence rules and parentheses determine the order of operations.

14
New cards

Specialized Assignment Operators

ā€¢ You can combine an arithmetic operator with = as a shorthand notation.
example: amount += 5; is the same as amount = amount + 5;

15
New cards

Increment and Decrement Operators

ā€¢ Increase operator ++.
ā€¢ Decrease operator --.
ā€¢ Be careful if you use the operators ++ and -- in expressions.

- int n = 3;
int m = 4;
int result = n * (++m);
will have value of 15.

- int n = 3;
int m = 4;
int result = n * (m++);
will have value of 12.