Chapter 2 Flashcards
What is a statement?
A single command that causes something to happen
What punctuation mark terminates every statement in Java?
a semicolon (;)
A group of statements between an opening brace – { – and a closing brace – } – is called a…
block, or block statement
What is the difference between an instance variable and a local variable?
An instance variable defines an attribute of an object.
A local variable is used inside a method definition, or within even smaller blocks of statements inside the method. They cease to exist afterwards.
How would you declare a variable named “loanLength” that will hold an integer representing the length of a loan?
int loanLength;
How would you declare a variable named “message” that will hold text?
String message;
What is the most efficient way of declaring three String variables called “street,” “city” and “state”?
String street, city, state;
If you declare a Boolean variable without specifying its value, what initial value is it given automatically?
A value of “false”
How do you declare an integer variable called “box” that has an initial value of 200?
int box = 200;
Explain what would be wrong about declaring a variable like the following:
int 2013spending = 3000;
Variables may not begin with numbers.
They may begin with a letter, underscore character or dollar sign.
Describe the formatting convention that most Java programmers use when naming a variable.
Join several words together that describe the variable’s content.
Use lowercase for the first letter, then capitalize each successive word.
Why are data types such as integers and Booleans called “primitive” types?
They are built-in parts of the Java language. They are not objects, which makes them easier to create and use.
Since byte, short, int and long are all data types for storing integers, when might you set up a variable as a “byte” data type rather than an “int”?
A “byte” variable, which is limited to the range of -128 to 127, would use less memory. But since memory is more plentiful in today’s computers, it’s better to use larger data types like int.
What is the largest number that an “int” variable can hold?
just over 2 billion (2,147,483,647)
What are floating-point numbers?
Numbers with a decimal point
What are the two kinds of floating-point variables?
float
double
When would you need to use the “double” data type?
You would only use this if dealing with decimal numbers where the size of the numbers will be more than 3.4 followed by 38 zeros.
What is the “char” data type used for?
individual characters, including letters, numbers, punctuation and other symbols.
“Void” is a data type. What does it represent?
Nothing – it’s used in methods to indicate they do not return a value.
In addition to the primitive data types, what can be used to specify the data type of a variable?
A class.
If a variable has a class as its type, the variable refers to an object of that class or one of its subclasses.
What symbol is used as the assignment operator, to assign a value to a variable?
= (equals sign)
What is a constant?
A variable with a value that never changes
What statement could you use to set the value of “pi” to 3.141592 and make it a constant?
final float PI = 3.141592;
Note: “final” is the keyword that turns a variable into a constant.
What naming convention do most Java programmers use when they want to make it clear that the variable is a constant?
They capitalize all letters.
Example: PI
How would you add a comment to the end of a line of code without causing a compiler error?
Use two slashes (//).
Example:
int creditHours = 3; // This is a comment
How do you begin and end a multi-line comment?
Single slash (/).
Example:
/ This is a multiline comment
we are using for demonstration purposes. /
When specifying a large integer literal such as 3800000, how can you make it more readable?
You can insert underscore characters where you would put commas.
Example:
3_800_000
Is there a numeric equivalent for the boolean values of true and false?
No.
Some other languages equate true with 1 and false with zero. Not Java.
How do you specify a new line in a print statement?
\n
In Java, are string objects real objects?
Yes.
The “String” data type is capitalized, indicating it is a class.
Since strings in Java are handled as objects, is it necessary to create a new object when working with them?
No. You get the power and flexibility of objects, but Java saves you the trouble of having to create them yourself.
The mathematical symbols such as +, - and * are known as …
Operators
What will be the value of x below?
int x = 27 / 10;
2, since an integer can only store whole numbers.
The comparison operator that compares two values or variables is …
==
double equal signs
The comparison operator that means “not equal to” is …
!=
question mark followed by equal sign
What symbol do you use to combine two or more boolean expressions in an “AND” combination?
& (both sides will always be evaluated)
&& (if left side is false, right side will not be evaluated)
What symbol do you use to combine two or more boolean expressions in an “OR” combination?
| || (if left side is false, right side will not be evaluated)
(both sides will always be evaluated)
What symbols are used for grouping expressions?
( )
What symbol is used for concatenating two or more strings?
+