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

two
twoone
one
onetwo
None of these

ANSWER DOWNLOAD EXAMIANS APP