AP US History
AP Calculus AB
AP Chemistry
AP Literature
AP Computer Science
100

The founding of Jamestown. 

1607

100

lim     cos(2x)/x

x→0

DNE

100

 CO2 + H2O → C6H12O6 + O2

6CO2 + 6H2O → C6H12O6 + O2

100

Homer's Epic Poem

The Odyssey 

100

What data type would be best used to record the number of people at a party?

Integer

200

The first slaves brought to what would be the United States of America and beginning of the Atlantic Slave Trade. 

1619

200

lim    (x−1)/ln(x)

x→1

1

200

SiCl4 + H2O → H4SiO4 + HCl

SiCl4 + 4H2O → H4SiO4 + 4HCl

200

Shakespear Play written in 1599 in which a king is betrayed 

Julius Cesear

200

string str = “Hello”
char newvar = str[4];
What is the value of newvar?

o
300

The beginning and end of reconstruction. 

1863-1877

300

Find the derivative: 

f(x)=cos(x)

f'(x) = -sin(x)

300

Na2CO3 + HCl → NaCl + H2O + CO2

Na2CO3 + 2HCl → 2NaCl + H2O + CO2

300

Charlotte Bronte's 1847 novel debut. 

Jane Erye

300

What is the difference between double and int?

Int can only hold integer values, double can hold any number including decimals.

400

The decade in which JFK was JFK'd and MLK was JFK'd

The 60s/ 1960

400

Find the derivative: 

f(x) =7x^3/(x+3)

f′(x)= 21x^3+63x^2−7x^3/(x+3)^2

400

Fe2(SO4)3 + KOH → K2SO4 + Fe(OH)3­-

Fe2(SO4)3 + 6KOH → 3K2SO4 + 2Fe(OH)3­-

400

Mark Twain's 1885 "masterpiece" is often referred to as the Great American novel. 

Adventures of Huckleberry Finn

400

int x=2;
double y=2.1;
float z=3.0;
int c=(x*y) + z;
What is the value of c

 7.2

500

When did Nixon officially announce the "War on Drugs" 

1971

500

Solve for y: 

dy/dx (1/x) =7x^2+5

y=7/4x^4+5/2x^2+C

500

Ca3(PO4)2 + SiO2 → P4O10 + CaSiO3

2Ca3(PO4)2 + 6SiO2 → P4O10 + 6CaSiO3

500

Mary Shelly wrote this at the age of 13 in 1818

Frankenstein 

500

Consider the code below:
int a = 24, b = 17, c = 5, d = 7;
b = b % d + a / b;
a %= b;
a -= 12;
What is the value of a at the end of the code above?

-12