AP CSA - Vocab Group 4 Flashcards


Set Details Share
created 1 year ago by AMAC0672
2 views
show moreless
Page to share:
Embed this setcancel
COPY
code changes based on your size selection
Size:
X
Show:

1

Decimal

base-10 numbering system

2

Multiple Inheritance

having more than 1 parent (Java is not defined this way)

3

Scope

the location of where the data can be used

4

Hardware

The physical parts of a computer

5

Return Type

the type of the data that is being sent back to the driver program

6

Widening Conversion

when placing an integer into a double variable -adding information

7

Lexicographic Ordering

an ordering of characters/words that says capital letters come before lowercase letters

8

Binary Search

a search that splits the data in half as you are proceeding through to find your item

9

Boolean

Either true or false value

10

Application

Another name for a program

11

Object

An instance of a class

12

Class Hierarchy

a way to figure out who the parent class is versus who the children are when doing inheritance

13

Arithmetic operator

an operator that takes numbers as operands

14

Return

the data that is being sent back to the driver program

15

String concatenation

Adding more than one string together with the + sign

16

Primitive data type

an int, double, char or boolean

17

Pass by value

Primitive data - the number is actually copied to the parameter's address

18

Relational operator

used when making a comparison ->, <, <=, >=, ==, !=

19

Void

When a method does not return anything

20

Constant

something that cannot change -use the reserved word "final"