Java Language
1| int myInteger = 3
2| double myFloat = 5.5
3| String myString = "Hello!"
4| boolean myBoolean = false
5| String a = myString + myBoolean;
6| double b = myFloat * myInteger;

What will be the values of each of the following variables when this code is done running?

A:
B: