Questions
Welcome
I recommend that you also make use of my online Java tutorial lessons, which are designed from a more conventional textbook approach. Those tutorial lessons are published at Gamelan.com.
For your convenience, I also maintain a consolidated Table of Contents on my personal web site that links to the individual lessons on the Gamelan site.
Insofar as possible, I will make use of Sun Java in these lessons. However, it will not be possible for me to go back and do a full update each time Sun releases a new version, so over the course of time, I expect to use different versions of Sun Java.
Just in case you would like to sneak a peek, the answers to the questions, and the explanations of those answers are located (in reverse order) at the end of this file.
The questions and the answers are connected by hyperlinks to make it easy for you to navigate from the question to the answer and back. It is recommended that you make your first pass through the questions in the order that they appear so as to avoid inadvertently seeing the answer to a question before you provide your own answer.
1. True or false? The only access control modifiers supported by Java are
- public
- protected
- private
2. What output is produced by the following program?
- A. A compiler error
- B. A runtime error
- C. 15
class Q32{ |
3. What output is produced by the following program?
- A. A compiler error
- B. A runtime error
- C. 15
- D. 10
class Q33{ |
4. Which of the following are valid syntax for the main() method required by a Java application?
- A. public static void main(String args[]){}
- B. static public void main(String args[]){}
- C. static public void main(String[] args){}
- D. public static void main(String[] args){}
- E. static public void main(String args){}
5. True or false? Friendly or package access applies to all classes in the current working directory that are not declared to be public, private, or protected.
6. What output is produced by the following program?
- A. A compiler error
- B. AAA
- C. BBB
import java.awt.*; |
7. What output is produced by the following program?
- A. A compiler error
- B. AAA
- C. BBB
import java.awt.*; |
8. What output is produced by the following program?
- A. A compiler error
- B. AAA
- C. BBB
class Q39{ |
9. What output is produced by the following program?
- A. A compiler error
- B. AAA
- C. BBB
final class Q40{ |
10. What output is produced by the following program?
- A. A compiler error
- B. AAA
- C. BBB
abstract class Q41{ |
Copyright 2000, Richard G. Baldwin. Reproduction in whole or in part in any form or medium without express written permission from Richard Baldwin is prohibited.
About the author
Richard Baldwin is a college professor and private consultant whose primary focus is a combination of Java and XML. In addition to the many platform-independent benefits of Java applications, he believes that a combination of Java and XML will become the primary driving force in the delivery of structured information on the Web.
Richard has participated in numerous consulting projects involving Java, XML, or a combination of the two. He frequently provides onsite Java and/or XML training at the high-tech companies located in and around Austin, Texas. He is the author of Baldwin’s Java Programming Tutorials, which has gained a worldwide following among experienced and aspiring Java programmers. He has also published articles on Java Programming in Java Pro magazine.
Richard holds an MSEE degree from Southern Methodist University and has many years of experience in the application of computer technology to real-world problems.
Answers and Explanations
Answer 10
Explanation 10
Answer 9
Explanation 9
Answer 8
Explanation 8
Answer 7
Explanation 7
Answer 6
Explanation 6
Answer 5
Explanation 5
Answer 4
Explanation 4
Answer 3
Explanation 3
Answer 2
Explanation 2
Answer 1
Explanation 1
Copyright 2000, Richard G. Baldwin. Reproduction in whole or in part in any form or medium without express written permission from Richard Baldwin is prohibited.
About the author
Richard Baldwin is a college professor and private consultant whose primary focus is a combination of Java and XML. In addition to the many platform-independent benefits of Java applications, he believes that a combination of Java and XML will become the primary driving force in the delivery of structured information on the Web.
Richard has participated in numerous consulting projects involving Java, XML, or a combination of the two. He frequently provides onsite Java and/or XML training at the high-tech companies located in and around Austin, Texas. He is the author of Baldwin’s Java Programming Tutorials, which has gained a worldwide following among experienced and aspiring Java programmers. He has also published articles on Java Programming in Java Pro magazine.
Richard holds an MSEE degree from Southern Methodist University and has many years of experience in the application of computer technology to real-world problems.