You have already completed these exercises!
Do you want to take them again?
You completed the JAVA String Concatenation Exercises from W3Schools.com
Share on:
Drag and drop the correct operator to combine firstName and lastName into one string.
firstName
lastName
String firstName = "John";String lastName = "Doe";System.out.println(firstName lastName);