Answer:
Option(c) i.e "c = a.concat(b); " is the correct answer to the given question.
Explanation:
In Java Programming language the concat function in the string is used to merge the two string .it is similar with the "+" operator in string means if we use "+" between the two string this will also merge the two string .
string1.concat(string2);
public class Main // main class
{
public static void main(String[] args) // main method
{
String a="san";// varible declaration
String b="ran";// varible declaration
String c;// varible declaration
c=a+b;// merge the two string
System.out.println(c);// display the string c
c=a.concat(b);//merge the two string
System.out.println(c);// display the string c
}
}
Output:
sanran
sanran