What is the name of the princess who is Sofia’s step-sister?
Amber
Who is the main character of the series?
Twilight Sparkle
What animal is Perry?
A platypus
int x = 3;
int y = 7;
x = x + y;
y = x - y;
x = x - y;
System.out.println(x + " " + y);
A. 3 7
B. 7 3
C. 10 7
D. 7 10
B. 7 3
What is the name of Sofia's talking rabbit friend?
Clover
Who is the pony who can talk to all animals?
Fluttershy
What is Candace always trying to do?
Bust Phineas and Ferb
String s = "computer science";
System.out.println(s.substring(3, 8));
A. puter
B. **put
C. mput
D. ter s
A. puter
What magical item allows Sofia to talk to animals?
The Amulet/ The Amulet of Avalor
What is Rarity's profession?
Fashion designer
What is the name of Perry's evil nemesis?
Dr. Doofenshmirtz
int x = 7;
if(x % 2 == 0)
System.out.print("A");
else
System.out.print("B");
A. A
B. B
C. AB
D. Nothing
B. B
What is the name of Sofia's kingdom?
Enchancia
What is the name of Twilight Sparkle's dragon assistant?
Spike
What organization does Perry work for?
O.W.C.A
int[] arr = {3, 5, 7};
System.out.println(arr[1]);
A. 3
B. 4
C. 5
D. Error
What was Sofia's mother's job before becoming queen?
Shoemaker / Village cobbler
Name all six members of the Mane Six
Applejack, Rarity, Twilight Sparkle, Rainbow Dash, Pinkie Pie, and Fluttershy
What is the name of Perry’s superior in O.W.C.A. who assigns him missions?
Major Monogram
int count = 0;
for(int i = 0; i < 3; i++)
{
count++;
}
System.out.println(count);
A. 2
B. 4
C. 5
D. 3
D. 3