Q18
Single choice
You work as a Software Developer for UcNet Inc. You write the following code using Java. class StringTest
{
public static void main(String args[])
{
String s = "Hi";
concat("There");
System.out.println(s);
}
}
What will happen when you try to compile and execute the code?