The founding of Jamestown.
1607
lim cos(2x)/x
x→0
DNE
CO2 + H2O → C6H12O6 + O2
6CO2 + 6H2O → C6H12O6 + O2
Homer's Epic Poem
The Odyssey
What data type would be best used to record the number of people at a party?
Integer
The first slaves brought to what would be the United States of America and beginning of the Atlantic Slave Trade.
1619
lim (x−1)/ln(x)
x→1
1
SiCl4 + H2O → H4SiO4 + HCl
SiCl4 + 4H2O → H4SiO4 + 4HCl
Shakespear Play written in 1599 in which a king is betrayed
Julius Cesear
string str = “Hello”
char newvar = str[4];
What is the value of newvar?
The beginning and end of reconstruction.
1863-1877
Find the derivative:
f(x)=cos(x)
f'(x) = -sin(x)
Na2CO3 + HCl → NaCl + H2O + CO2
Na2CO3 + 2HCl → 2NaCl + H2O + CO2
Charlotte Bronte's 1847 novel debut.
Jane Erye
What is the difference between double and int?
Int can only hold integer values, double can hold any number including decimals.
The decade in which JFK was JFK'd and MLK was JFK'd
The 60s/ 1960
Find the derivative:
f(x) =7x^3/(x+3)
f′(x)= 21x^3+63x^2−7x^3/(x+3)^2
Fe2(SO4)3 + KOH → K2SO4 + Fe(OH)3-
Fe2(SO4)3 + 6KOH → 3K2SO4 + 2Fe(OH)3-
Mark Twain's 1885 "masterpiece" is often referred to as the Great American novel.
Adventures of Huckleberry Finn
int x=2;
double y=2.1;
float z=3.0;
int c=(x*y) + z;
What is the value of c
7.2
When did Nixon officially announce the "War on Drugs"
1971
Solve for y:
dy/dx (1/x) =7x^2+5
y=7/4x^4+5/2x^2+C
Ca3(PO4)2 + SiO2 → P4O10 + CaSiO3
2Ca3(PO4)2 + 6SiO2 → P4O10 + 6CaSiO3
Mary Shelly wrote this at the age of 13 in 1818
Frankenstein
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