Chapter 1: Computers
Chapter 2: Intro to Java
Chapter 3: Simple Data Types
Chapter 4: Methods& Parameters
Miscellaneous
100

A chip that stores permanent information and is not erased when the computer is turned off?

What is ROM (read only memory)?



100

Java program statements end with

What is a semi-colon (;)?

100

byte, short, long, int are examples of?

Who is Java integer data types?

100

Encapsulation, Polymorphism, and Inheritance are?

What is features of OOP (Object-Oriented Programming)?

100

About how many bytes are in a gigabyte?

What is 1 billion?

200

Small enough to fit on a desk, programmed with languages like Java and use microchips

What is characteristics of a modern computer?

200

If a Java file is named Babbage.java, then what line must be in the source code?

What is public class Babbage?

200

What value is stored by the statement: int number = 100 / 3;

What is 33?

200

The action modules in a Java class are called

What is methods?

200

Extensions do Java bytecode files have?

What is .class?

300

A chip that stores temporary information and is erased when the computer is turned off.



What is RAM (random access memory)?

300

If you compile a file called Abacus.java, what file is created?

What is Abacus.class?

300

What value is stored by the statement: int number = 100 % 3;

What is 1?

300

Synonym for parameter

What is argument?

300

What does JDK stand for

What is Java Development Kit?

400

It uses 1s and 0s, representing electrical current that is on or off.

What is binary system?

400

Which symbol is used to create a Single-Line Comment?

What is // (two forward slashes)?

400

Which real number data type is the most accurate for decimal numbers?

What is a double?

400

What is the value of result in the following statement?

double result = Math.sqrt(sqrt(81);

What is ERROR?

400

The statement num += 10 is the same as the statement

What is num = num + 10?

500

The first successful programming language

What is FORTRAN?

500

public, static, void, main are examples of?

What is Java reserved words?

500

(5 + 8) * 3 + 2

What is 41?

500

What is the value of result in the following statement?

double result = Math.min( Math.max(11,22), Math.max(33.0,44.0));

What is 22.0?

500

What is the value of result in the following statement?

double result = Math.sqrt(Math.sqrt(256));


Who is 4.0 ?