Vocab Flashcards

1
Q

access specifier

A

word that indicates whether its public or private (accessibility)

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

accessor method

A

method that accesses info about object

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

api

A

library of code

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

assignment

A

placing value on variable

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

bug

A

error

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

byte

A

number of 8 bits, unit of storage

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

class

A

programmer defined data type

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

constructor

A

method that initializes (constructs) new object

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

initialization

A

construction + assignment, setting a variable to a well defined value when created

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

method

A

a sequence of statements

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

object

A

a value of a class type

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

parameter

A

information specified to to method when it is called

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

parameter variable

A

called in head of method, initialized when method is called

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

state

A

current value of object

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

statement

A

syntactical unit

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

type

A

set of values and operations that can be carried out with them

17
Q

variable

A

symbol that identifies storage location and can hold values

18
Q

local variable

A

declared in body, scope is a block