Home » JAVA Programming » Strings » Question
  1. Which of these operators can be used to concatenate two or more String objects?
    1. &
    2. +=
    3. ||
    4. +
    5. None of these
Correct Option: D

Operator + is used to concatenate strings, Example String s = “i ” + “like ” + “java”; String s contains “I like java”.



Your comments will be displayed only after manual approval.