Java Terms Flashcards

1
Q

Abstract Window Toolkit (AWT)

A

A collection of graphical user interface (GUI) components that were implemented using native-platform versions of the components. These components provide that subset of functionality which is common to all native platforms. Largely supplanted by the Project Swing component set.

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

Abstract

A

A Java(TM) programming language keyword used in a class definition to specify that a class is not to be instantiated, but rather inherited by other classes. An abstract class can have abstract methods that are not implemented in the abstract class, but in subclasses.

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

Abstract Class

A

A class that contains one or more abstract methods, and therefore can never be instantiated. Abstract classes are defined so that other classes can extend them and make them concrete by implementing the abstract methods.

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

Abstract Method

A

A method that has no implementation.

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

Actual Parameter List

A

The arguments specified in a particular method call

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

Alpha Value

A

A value that indicates the opacity of a pixel.

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

API

A

Application Programming Interface. The specification of how a programmer writing an application accesses the behavior and state of classes and objects.

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

Appliances

A

Networked devices such as printers, Java(TM) technology-enabled terminals, and clients, that are managed using applications built using the Java Management API (JMAPI).

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

Applet

A

A program written in the Java(TM) programming language to run within a web browser compatible with the Java platform, such as HotJava(TM) or Netscape Navigator(TM).

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

Argument

A

A data item specified in a method call. An argument can be a literal value, a variable, or an expression.

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

Array

A

A collection of data items, all of the same type, in which each item’s position is uniquely designated by an integer.

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

ASCII

A

American Standard Code for Information Interchange. A standard assignment of 7-bit numeric codes to characters.

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

Atomic

A

Refers to an operation that is never interrupted or left in an incomplete state under any circumstance.

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

Bean

A

A reusable software component. Beans can be combined to create an application.

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

Binary Operator

A

An operator that has two arguments.

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

Bit

A

The smallest unit of information in a computer, with a value of either 0 or 1.

17
Q

Bitwise Operator

A

An operator that manipulates two values comparing each bit of one value to the corresponding bit of the other value.

18
Q

Block

A

In the Java(TM) programming language, any code between matching braces. Example: { x = 1; }.

19
Q

Boolean

A

Refers to an expression or variable that can have only a true or false value. The Java(TM) programming language provides the boolean type and the literal values true and false.

20
Q

Bounding Box

A

For a Raster object, the smallest rectangle that completely encloses all the pixels that are not fully transparent.