Multiple Choice
String hello = "Hello"; String world = " World"; String bye = "Bye"; String greeting = hello + world; String goodbey = bye + world;
Last updated
String hello = "Hello";
String world = " World";
String bye = "Bye";
String greeting = hello + world;
String goodbey = bye + world;Last updated