Let me Java Review Flip Cards

Tap a card to flip it. Front card was fill in the blank, the backside is the answer provided

Print-out

This program start printing System.____________("Hi");

Tap to reveal the answers.
Answer

System.out.println("Hi");.

Can also work on int also
Declaring String type

print out the name
String name = "Zedrick"; System.out.println("Hello my name is "+ ______);

Tap to reveal the object name.
Answer

System.out.println("Hello my name is " + name);

This can be also the same as Int version
Declaring int type

print out the number
int number = 24; System.out.println("Hello my age is "+ ______);

Tap to reveal the object name.
Answer

System.out.println("Hello my age is " + number);

This can be also the same as String version