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

twoone
one
None of these
onetwo
two

ANSWER DOWNLOAD EXAMIANS APP