Disney Princesses
Capitals of the World
Mathematics
Divine Principle
Computer Programming
100
This Disney Princess is featured sleeping with 7 dwarfs
Who is Snow White
100
This is the capital of the country you are stepping foot in
What is Ottawa?
100
Solution to the equation 4+4 =
What is 8?
100
Give and receive action requires an object and this
What is a subject?
100
This is the output of the following program: #include #include int main () { double x = 5.5; printf("%lf\n", x*3); return 0; }
What is 16.5?
200
This princess left her shoe at the ball when the clock struck midnight
Who is Cinderella?
200
This is the capital of the country located 200 kilometers south of our location
What is Washington D.C?
200
Solution to the equation 4 x 9 =
What is 36?
200
The four position foundation always has this at its center
What is God?
200
This is the output of the following program: #include #include int main () { int x = 4; int y = 9; int z = (x%y); printf("%d\n", z); return 0; }
What is 4?
300
This princess rode a magic carpet with a homeless dude
Who is Jasmine?
300
This is the capital of South Korea
What is Seoul?
300
Solution to the equation 9 + 3 - 4 + 18x0.5 =
What is 17?
300
Man has 5% responsibility and God has this much responsibility
What is 95%?
300
This is the output of the following program: # include int g = 10; int main() { int i = 5; if (g/i > 2) {printf("I love men "); printf("like Franky ");} else {printf("I hate dudes");} return 0; }
What is I hate dudes?
400
This princess cleverly disguises herself as a dude
Who is Mulan?
400
This is the capital of the largest country in the world
What is Moscow?
400
Solution to the equation 18 x 3 – 54 + 99 – 33 x 3 + 2 =
What is 2?
400
In order to reach completion, we must go through 3 of these
What is growth stages?
400
This is the output of the following program: #include #include int main () { int x = 9; int y = 4; int z = (x%y); printf("%d\n", z); return 0; }
What is 1?
500
This princess had 3 fairy godmothers, what a spoiled brat!
Who is Sleeping Beauty?
500
This is the capital of the third largest country in the world
What is Beijing?
500
Solution to the equation log (100) =
What is 2?
500
The last chapter of the Divine Principle mentions that we should all speak this language
What is Korean?
500
This is the output of the following program: #include #include void main() { int n, factor, i, expo; n=4; factor = 0; for (i=2;i<=n;i++) { expo=0; if (n%i!=0) {continue;} else {factor=i; expo=expo+1; n=n/factor;} while (n%factor==0 && n!=0) {n=n/factor; expo=expo+1;} printf("%d%d\n", factor, expo); } }
What is 22?