What will be the output of the C#.NET code snippet given below?
namespace IndiabixConsoleApplication{ class SampleProgram { static void Main(string[ ] args) { object[] o = new object[] {"1", 4.0, "India", 'B'}; fun (o); } static void fun (params object[] obj) { for (int i = 0; i < obj.Length-1; i++) Console.Write(obj[i] + " "); } }}
Answer: Option C
Explanation: