chapter 1 Flashcards
What are 8 benefits of Java?
- Object Oriented
- Encapsulation
- Platform Independent
- Robust
- Simple
- Secure
- Multithreaded
- Backward Compatibility
What are the the basic building blocks in java programs?
classes
What is an oject?
A runtime instance of a class in memory.
What is a reference?
A variable that points to an object.
What are the two primary elements of a class in Java?
methods and fields (variables).
What makes up a method signature?
method name and parameter types.
What makes up a method declaration?
method name, parameter types, and return type.
Describe three different types of comments in java.
single line comment // comment multi line comments /**/ or /** * Java Doc comment */
Where does a Java program begin execution?
the main()
What must a file have to compile Java code?
A .java file extension and a filename that matches the class name.
What is the result of compiling a .java file?
A file of bytecode by the same name but with a .class extension.
How many public classes are allowed in a file?
one.
What is the syntax for the single-file source-code-command?
java HelloWorld.java
What is the single-file source-code-command
Command to run java programs that exist in a single file.
Does the single-file source-code-command produce a .class file?
No, the program is contained in memory.
What are the constraints placed on programs run with the single-file source-code-command?
They are for programs with only one class.
Can only import code that came with the JDK.
What are packages?
Logical groupings of classes.
What do import statements do?
Tell java which package to look in for a class.
How do you know a package comes from the JDK?
The package name starts with java or javax.
What is the “*” in the context of importing packages in Java?
A wildcard that matches all classes in a package.
What is the one package that is automatically imported in Java?
java.lang.
Is it required to import a class that is in the same package?
No, Java automatically looks in the current package for other classes.
How do you resolve two package imports with wildcards where there are class name conflicts? (e.g. Date class)
Explicitly import one class name, it takes precedence over any wildcards present. import java.util.Date; import java.sql.*;
How can you use two classes with the same name in Java?
Use the fully qualified class name. public class foo { java.util.Date date; java.sql.Date sqlDate; }
What option is used with the javac command to specify the directory to place generated class files?
- d
e. g. javac -d classes foo/Bar.java
What are the options to specify the class path when running the java command?
-cp
-classpath
–class-path
Location of classes needed to compile a program.
What does the jar command do?
Creates an archive for classes and resources, and can manipulate or restore individual classes or resources from an archive.
What is the command to create a jar file?
jar - jarName.jar currentDir
what does the -c, –create option with the jar command do?
Creates a new JAR file.
What does the -v, –verbose option with the jar command do?
Prints details when working with JAR files.
What does the -f , –file option with the jar command do?
Provides the jar name.
What does the -C option with the jar command do?
Provides the directory containing files to be used to create the JAR.
Is a package declaration required in a class file?
No.
Are import statements required in a class file?
No.
Is a class declaration required in a class file?
Yes.
Are field declarations required in a class file?
No.
Are method declarations required in a class file?
No.
Where does a package declaration go in a class file?
First line in the file.
Where do import statements go in a class file?
Immediately after the package (if present).
Where does the class declaration go in a class file?
Immediately after the import statements (if any).
Where do field declarations go in a class file?
Any top level element in a class.
Where do method declarations go in a class file?
Any top level element in a class.
What must the public class name in a file match?
The name of the file.
How many classes can be defined in a file?
multiple.
During the OCM exams, what are common cases where you don’t need to check for imports?
- Code that begins with a class name.
- Code that begins with a method declaration.
- Code snippets that would normally be inside a class or method.
- Code that has line numbers that don’t begin with 1.
What does JDK stand for?
Java Devlopment Kit.
What does the JDK contain?
The compiler and JVM launcher.
What does JVM stand for?
Java Virtual Machine.
What does the JVM run?
bytecode.