This is also called a builder tool, assists programmers by displaying toolbars, menus, windows, and dialog boxes that are designed to facilitate coding and debugging
What is integrated development environment (IDE) or complier?
public class MyFirstJavaProgram
What is a public class?
import java.swing.JOptionPane
What is JOption classes and Objects for GUI's
Import javax.swing.JOptionPane;
What importing the swing Gui classes or objects?
this was named after George Boole
What is a boolean variable?
// or /* */
What is commenting?
Names used for classes, variables, and methods are called
What are identifiers?
<= , >=, ==, >, <
What are relational operators?
Takes into account two sets of circumstances
What is if/else?
required writing more than one statement in an if statement
what are opening and closing curly braces { }
prewritten classes that outputs to the monitor
What is System.out.println?
Specific words reserved for Java (for example, if, else, int...)
What are keywords?
A named storage location in a computer’s memory
What is a variable?
in Java a textbox will be displayed with what method and object?
When a statement returns as false
what is an else condition?
This can be used to create components for use by Prewritten blocks of code that can be used by Java programmers
What are methods (or classes)?
true or false
What is boolean?
when using strings this symbol is used +
what is concatenation?
when you need to convert a string to an interger
What is parseInt?
a condition that checks for true
What is if (a conditional statement)