V

Vikash Gupta • 33.56K Points
Instructor I

Q. What will be the output of the following program?
public class Test{
        public static void main(String args[]){
  String str1 = "one";
  String str2 = "two";
  System.out.println(str1.concat(str2));
        }
}

  • (A) one
  • (B) two
  • (C) onetwo
  • (D) onetwo D. twoone
  • Correct Answer - Option(C)
  • Views: 17
  • Filed under category JAVA

Explanation by: Vikash Gupta
Concat() method appends one String to the end of another. The method returns a String with the value of the String passed into the method appended to the end of the String which is used to invoke this method.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.


Question analytics