Identify the correct output of the code given below:
using System;
class welcome {
static void Main(string[] args) {
String s = "Welcome";;
Object s3 = s.Clone();
Console.WriteLine( "" + s3);
}
}
Reveal answer
Fill a bubble to check yourself