Chapter 1: Building blocks Flashcards

1
Q

The java command launches the Java Virtual Machine (JVM) before running bytecode. If false, why?

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

The javac command converts .java source files into .class bytecode. If false, why?

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

The jar command is used to package multiple files together in Java. If false, why?

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

The javadoc command generates documentation for Java source code. If false, why?

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

A Java class can have both methods and fields. If false, why?

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

The void keyword in Java means a method does not return any value. If false, why?

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Parameters in a method provide values from the calling method. If false, why?

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

The javac command is used to execute Java programs. If false, why?

A

False – The javac command compiles source code into bytecode, but does not execute it.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

An object and a class in Java are the same thing. If false, why?

A

False – A class is a blueprint, while an object is an instance of that class.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

A reference variable in Java holds the actual object. If false, why?

A

False – A reference variable holds the memory address of an object, not the object itself.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

A Java class must always contain at least one method. If false, why?

A

False – A class can be empty, such as public class Animal {}.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

The simplest Java class must include a main method. If false, why?

A

False – A Java class only needs to be defined; a main method is required only for execution.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

The String class in Java is a primitive data type. If false, why?

A

False – String is a class, not a primitive type; it is an object in Java.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

The public keyword restricts a method’s access to only within the same class. If false, why?

A

False – public allows the method to be accessed from other classes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

A single-line comment in Java starts with // and extends to the end of the line.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

A multiline comment in Java starts with /** and ends with **/.

A

(Correct: It starts with /* and ends with */.)

17
Q

Javadoc comments can only be used inside methods.

A

(Correct: Javadoc comments can be used for classes, methods, and fields.)

18
Q

Java ignores all comments, including Javadoc comments, at runtime and compile time.

A

(Correct: Javadoc comments can be processed by the Javadoc tool.)

19
Q

A Java source file can contain multiple public classes.

A

(Correct: Only one top-level class can be public.)

20
Q

If a class is not declared public, it must be declared private.

A

(Correct: A top-level class can be package-private if no access modifier is specified.)

21
Q

A Java file with a public class does not have to match the filename.

A

(Correct: The filename must match the public class name exactly.)

22
Q

The Javadoc @author tag is required for all classes.

A

(Correct: It is optional and used for documentation purposes.)

23
Q

Comments can slow down Java code execution.

A

(Correct: Comments are ignored by the compiler and do not affect execution speed.

24
Q

A Javadoc comment must include an @param tag.

A

(Correct: The @param tag is only needed if documenting method parameters.)