AP Computer Science A Ultimate Guide

4.6(18)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/59

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

60 Terms

1
New cards

Symbol(s) used to add a comment

//
2
New cards

Identifiers

Names that are given to show data that are stored in the memory of a computer when a program is being executed in a computer

3
New cards

Logical error

An error because of the incorrect way a code is structured.

4
New cards

Run-time error

A compiler doesn’t catch this error. It just causes an error with the execution of the program.

5
New cards

Print statement

System.out.print(""); 
6
New cards

Code to assign value to identifier

type identifier = value;
7
New cards

Primitive data

Basic types of data

8
New cards

Integer (int)

It represents any number that is an integer. All positive, negative numbers and zero. Cannot store decimals.

9
New cards

Double

A number that can be positive, negative, or zero, and it can be a fraction or decimal.

10
New cards

Boolean

A value that is either true or false. True = 1, False = 0 in machine code.

11
New cards

Character (char)

It represents a single character that can be represented on a computer. It includes any character that you type on the keyboard. Stored with the use of single quotation marks or an apostrophe.

12
New cards

Modulus operator

% - Returns the remainder once two numbers are divided.

13
New cards

Casting

A process in which data is forced to look like another type of data to the compiler.

14
New cards

Casting double to an int

int x;
double y = 4.5;
x = (int) y;
15
New cards

Casting int to a double

int x = 4;
double y;
y = (double) x;
16
New cards

Increment operator

(++) This increases the value of a number by one.

17
New cards

Decrement operator

(--) This decreases the value of a number by one.

18
New cards
a += b
a = a + b
19
New cards
a -= b
a = a - b
20
New cards

Object

A data type created in Java.

21
New cards

String

An object data type which has a class with many methods that describe the behavior of an object.

22
New cards

Immutable class

Once an object is created, the assigned value cannot change.

23
New cards

Object

data type created in Java

24
New cards

Class

used to build objects

25
New cards

“if” statement

conditional statement that is used in Java to help control the flow of the program

26
New cards

Boolean Operator

==

27
New cards

Logical And

&&

28
New cards

Logical Or

||

29
New cards

Not Equal To

!=

30
New cards

DeMorgan’s Law

to simplify common compound conditions, distribute the ! into the parenthesis and change the && to ||, or vice versa

31
New cards

while loop

loop cycles through again and again, while the condition is considered true

32
New cards

infinite loop

loop that repeats forever because of condition

33
New cards

for loop

statement 1 is executed (one time) before the execution of the code block.

statement 2 defines the condition for executing the code block.

statement 3 is executed (every time) after the code block has been executed.

34
New cards

class

when a group of statements, such as control structures, are all put together to be referred to this

35
New cards

method

group of code that performs specific task

36
New cards

object class

This class houses the “guts” of the methods that the driver class calls.

37
New cards

header

defines method function

38
New cards

constructor

sets object’s initial values for instance variables

39
New cards

instance variables

attributes in a class, also known as fields

40
New cards

precondition

a comment that is intended to inform the user more about the condition of the method and guarantees it to be true.

41
New cards

postcondition

a condition that must always be true just after the execution of a section of code, or after an operation in a formal specification.

42
New cards

aggregate class

Made up of other data, and instances of other classes.

43
New cards

static variable

attribute that is shared among all instances of a class

44
New cards

arrays

a data structure that makes it easier to handle similar types of data

45
New cards

sequential searches

These search through the data one by one in order, and take a long time to execute

46
New cards

binary searches

These search through the data for the desirable value by dividing it into half each time until the desired value is found

47
New cards

sorting algorithms

They take data in an array, and rearrange it into a particular order. They are very powerful because they can accomplish tasks faster, and can make your programs even more efficient.

48
New cards

selection sort

This sort searches and swaps. Once it finds the lowest value, it will swap its position in the array with the data at index 0. The first element is now sorted. The process repeated for index 1. The rest of the array will be searched for the lowest value and is swapped with the data that is found at index 1.

49
New cards

insertion sort

It compares the first 2 elements, and depending on the outcome of this it inserts the second value in front of the first value into index 0, which moves the first value to index 1. The first 2 elements are sorted. Then the third element is checked and this process continues until it’s entirely sorted.

50
New cards

merge sort

This type of sort uses recursion. An array is split into 2 pieces. The piece is sorted. The 2 sorted pieces are merged together into one sorted list. Then in order to sort each of the 2 pieces, the same method is used again until it is fully sorted.

51
New cards

array lists

A huge limitation of arrays is that it has a fixed length, and can only store, one specific type of data.

52
New cards

dynamically sized

used to describe an array list which becomes bigger / smaller as elements are added / removed

53
New cards

2D array

array within an array, like a vending machine

54
New cards

inheritance

A way to create a relationship amongst classes.

55
New cards

inheritance hierarchy

A way to determine how information travels amongst the classes. Ex: The subclasses inherit characteristics of the parent class.

56
New cards

multiple inheritance

when a class has more than 1 superclass, it is defined as ______. not allowed in java

57
New cards

overridden

new version of code takes over old version

58
New cards

polymorphism

When many classes are related to each other by inheritance. Inheritance lets us inherit attributes and methods from another class. uses those methods to perform different tasks.

59
New cards

recursive call

characteristic to call a method itself

60
New cards

base case

Signal the execution to stop the recursion and return to each prior recursive call