JAVA Strings
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)); }}

onetwo
two
one
None of these
twoone

ANSWER DOWNLOAD EXAMIANS APP