CH. 3 INTRO TO CLASSES, OBJECTS, METHODS, STRINGS Flashcards
Each class declaration that begins with keyword _____
must be stored in a file that has exactly the same name as the class and ends with the .java file name extension.
public
Keyword _____ in a class declaration is followed immediately by the class’s name.
class
Ex: pulbic class Welcome1
Keyword ____ requests memory from teh system to store an object, then calls the corresponding class’s constructor to initialize the object
new
EACH PARAMETER MUST SPECIFY BOTH
A ____ AND A ____
TYPE AND A NAME
BY DEFAULT, CLASSES THAT ARE COMPILED IN THE SAME DIRECTORY ARE CONSIDERED TO BE IN THE SAME PACKAGE, KNOWN AS THE _____
DEFAULT PACKAGE
WHEN EACH OBJECT OF A CLASS MAINTAINS ITS OWN COPY OF AN ATTRIBUTE, THE FIELD THAT REPRESENTS THE ATTRIBUTE IS ALSO KNOWN AS A ___________
INSTANCE VARIABLE
JAVA PROVIDES TWO PRIMITIVE TYPES FOR STORING FLOATING POINT NUMBERS IN MEMORY:
______ AND _____
FLOAT AND DOUBLE
VARIABLES OF TYPE DOUBLE REPRESENT ______
FLOATING POINT NUMBERS
DOUBLE PRECISION
SCANNER METHOD ____ RETURNS A DOUBLE VALUE
nextDOUBLE
KEYWORD PUBLIC IS AN ACCESS ______.
MODIFIER
RETURN TYPE _____ INDICATES THAT A METHOD WILL NOT RETURN A VALUE
VOID
SCANNER METHOD _______
READS CHARACTERS UNTIL IT ENCOUNTERS A NEWLINE CHARACTER, THEN RETURNS THOSE CHARACTERS AS A STRING
nextLine
CLASS STRING IS IN PACKAGE ______
java.lang
A(n) ______ is not required if you always refer to a class with its fully qualified class name.
import declaration
A ______ IS A NUMBER WITH A DECIMAL POINT, SUCH AS 7.33, 0.9775 OR 1000.0123
FLOATING POINT NUMBER
VARIABLE of type float represent _____ floating point numbers
SINGLE PRECISION
The format specifier _____ is used to output values of type float or double
%f
Types in Java are divided into two categories
______ types and ______ types
PRIMITIVE AND PARAMETER
Primitive Types: Whole Number Types ( byte, short, int, long) Deciamal Types (float and double)
By convention, method names begin with an uppercase first letter, and all subsequent words in the name begin with a capital first letter.
True or False
FALSE
By convention, method names begin with lowercase first letter and all subsequent words in the name begin with a capital first letter
An import declaration is not required when one class in a package uses another in the same package
TRUE
Empty parentheses following a method name in a method declaration indicate that the method does NOT require any parameters to perform a task
TRUE
Variables or methods declared with access modifier “private” are accessible only to methods of the class in which they’re declared
TRUE
A primitive-type variable can be used to invoke a method.
FALSE
A primitive-type variable cannot be used to invoke a method - a reference to an object is requried to invoke the objects methods
Variable declared in the body of a particular method are known as instance variables and can be used in all methods of the class.
FALSE
Such variables are called “local vairables” and can used only in the method in which they are declared in.
Every method’s body is delimited by left and right braces ( { } )
TRUE
Primitive-type local variables are initialized by default.
FALSE
Primitive type instance variables are initialized by default
Reference-type instance variables are initialized by default to the valule null.
TRUE
Any class that contains
***public static void*** main ( String [] args )
can be used to execute an application
TRUE
The number of arguments in the method call must match the number of parameters in the method declaration’s parameter list.
TRUE
Floating-point values that appear in source code are known as floating-point literals and type float by default
FALSE
Such literals are of type double by default
What is the difference between local variable and a field
Local variable is declared in the body of a method and can be used only from the point at which it is declared through the end of the method declaration.
A field is declared in a class, but not in the body of any of the class’s methods. Are accessible to all methods of the class.
Explain the purpose of a method parameter.
What is the difference between a parameter and an argument?
Parameter represents additional info that a method requries to perform a task, Each parameter rquired by a mehtod is specified in the method’s declaration.
Argument is the actual value for teh method parameter.