Computer Applications

What do the following functions return?


String x = "Vision";
String y = "2020";
System.out.println(x + y);

Java

Java String Handling

34 Likes

Answer

Vision2020

Working

x and y are concatenated and printed.

Answered By

20 Likes


Related Questions