1/87
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
Java was used for developing web applications and applets that run in web browsers.
Consists of a backslash (\) followed by a character or a combination of digits
Using System.out.printf()
Draw an If Statement Flowchart
Done!
Draw an If Else Statement Flowchart
Done!
Draw a Switch Statement Diagram
Done!
Draw a While Statement Flowchart
Done!
Draw a Do-While Statement Flowchart
Done!
A runtime error occurs while running if the environment detects an operation that is impossible to carry out.
A logic error occurs when a program does not perform the way it was intended to.
Postdecrement (i--): The current value of i is used first, then i is decremented.
Predecrement (--i): i is decremented first, then the updated value is used.