<< Chapter < Page Chapter >> Page >
This module contains review questions and answers keyed to the module titled Jb0120: Java OOP: A Gentle Introduction to Java Programming.

Revised: Sun Mar 27 19:22:43 CDT 2016

Table of contents

Preface

This module contains review questions and answers keyed to the module titled Jb0120: Java OOP: A Gentle Introduction to Java Programming .

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 again.

Questions

Question 1 .

True or false? All data is stored in a computer in numeric form. Computer programs do what they do by executing a series of calculations on numeric data.It is the order and the pattern of those calculations that distinguishes one computer program from another.

Answer 1

Question 2

True or false? When we program using Java, we must perform most of the detailed work.

Answer 2

Question 3

True or false? As the computer program performs its calculations in the correct order, it is often necessary for it to store intermediate resultssomeplace, and then come back and get them to use them in subsequent calculations later.

Answer 3

Question 4

True or false? The structured solution to a computer programming problem is often called an algorithm.

Answer 4

Question 5

Which, if any of the following activities is not commonly believed to be fundamental activities of any computer program:

  • A. sequence
  • B. selection
  • C. loop

Answer 5

Question 6

True or false? As a programmer using a high-level language such as Java, you usually don't have to be concerned about the numeric memory addresses ofvariables.

Answer 6

Question 7

Why is modern computer memory often referred to as RAM?

Answer 7

Question 8

True or false? The process of declaring a variable

  • causes memory to be set aside to contain a value, and
  • causes that chunk of memory to be given an address.

Answer 8

Question 9

True or false? A value of the type int must be an integer.

Answer 9

Question 10

True or false? In programmer jargon, storing a value in a variable is also referred to as assigning a value to a variable.

Answer 10

Question 11

True or false? A reference to a variable name in Java code returns the value stored in the variable.

Answer 11

What is the meaning of the following two images?

This image was inserted here simply to insert some space between the questions and the answers to keep them from being visible on the screen at thesame time.

The image is also an example of the kinds of things that we do in my course titled ITSE 2321, Object-Oriented Programming.

Missing image

This image was also inserted for the purpose of inserting space between the questions and the answers.

Missing image

Answers

Answer 11

True.

Back to Question 11

Answer 10

True.

Back to Question 10

Answer 9

True.

Back to Question 9

Answer 8

False. The process of declaring a variable

  • causes memory to be set aside to contain a value, and
  • causes that chunk of memory to be given a name .

Back to Question 8

Answer 7

Modern computer memory is often called RAM or random access memory because it can be accessed in any order.

Back to Question 7

Answer 6

True. You are able to think about variables and refer to them in terms of their names. (Names are easier to remember than numeric addresses). However, deep inside the computer, these names are cross-referenced to addresses and atthe lowest level, the program works with memory addresses instead of names.

Back to Question 6

Answer 5

None. All three are commonly believed to be the fundamental activities of any computer program.

Back to Question 5

Answer 4

True.

Back to Question 4

Answer 3

True.

Back to Question 3

Answer 2

False. Fortunately, when we program using a high-level programming language such as Java, much of the detailed work is done for us behind the scenes.

Back to Question 2

Answer 1

True.

Back to Question 1

Miscellaneous

This section contains a variety of miscellaneous information.

Housekeeping material
  • Module name: Jb0120r Review for A Gentle Introduction to Java Programming.
  • File: Jb0120r.htm
  • Published: 12/20/12
Disclaimers:

Financial : Although the Connexions site makes it possible for you to download aPDF file for this module at no charge, and also makes it possible for you to purchase a pre-printed version of the PDF file, youshould be aware that some of the HTML elements in this module may not translate well into PDF.

I also want you to know that, I receive no financial compensation from the Connexions website even if you purchase the PDF version ofthe module.

In the past, unknown individuals have copied my modules from cnx.org, converted them to Kindle books, and placed them for sale onAmazon.com showing me as the author. I neither receive compensation for those sales nor do I know who does receive compensation. If you purchase such a book, please be aware that it is a copy of a modulethat is freely available on cnx.org and that it was made and published without my prior knowledge.

Affiliation : I am a professor of Computer Information Technology at Austin Community College in Austin, TX.

-end-

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Object-oriented programming (oop) with java. OpenStax CNX. Jun 29, 2016 Download for free at https://legacy.cnx.org/content/col11441/1.201
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Object-oriented programming (oop) with java' conversation and receive update notifications?

Ask