killuminati** Flashcards

1
Q

abstract

A

Indicates that the details of a class, a method, or an interface are given elsewhere in the code.

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

assert

A

Tests the truth of a condition that the programmer believes is true.

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

boolean

A

Indicates that a value is either true or false..

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

break

A

Jumps out of a loop or switch.

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

byte

A
  1. Indicates that a value is an 8-bit whole number.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

case

A

Introduces one of several possible paths of execution in a switch statement.

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

catch

A

Introduces statements that are executed when something interrupts the flow of execution in a try clause.

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

char

A

Indicates that a value is a character (a single letter, digit, punctuation symbol, and so on) stored in 16 bits of memory.

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

class

A

Introduces a class – a blueprint for an object.

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

const

A

You can’t use this word in a Java program. The word has no meaning. Because it’s a keyword, you can’t create a const variable.

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

continue

A

Forces the abrupt end of the current loop iteration and begins another iteration.

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

default

A

Introduces a path of execution to take when no case is a match in a switch statement.

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

do

A

Causes the computer to repeat some statements over and over again (for example, as long as the computer keeps getting unacceptable results).

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

double

A

Indicates that a value is a 64-bit number with one or more digits after the decimal point.

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

else

A

Introduces statements that are executed when the condition in an if statement isn’t true.

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

enum

A

Creates a newly defined type — a group of values that a variable can have.

17
Q

extends

A

Creates a subclass — a class that reuses functionality from a previously defined class.

18
Q

final

A

indicates that a variable’s value cannot be changed, that a class’s functionality cannot be extended, or that a method cannot be overridden.

19
Q

finally

A

introduces the last will and testament of the statements in a try clause.

20
Q

float

A

Indicates that a value is a 32-bit number with one or more digits after the decimal point.