Which Java declarations use the taught suffixes for long and float literals?
long
float
long count = "9000000000000000000L"; and float rate = "3.14f";
long count = "9000000000000000000L";
float rate = "3.14f";
long count = 'L'; and float rate = true;
long count = 'L';
float rate = true;
long count = 9000000000000000000f; and float rate = 3.14L;
long count = 9000000000000000000f;
float rate = 3.14L;
long count = 9000000000000000000L; and float rate = 3.14f;
long count = 9000000000000000000L;
float rate = 3.14f;