⏱00:00Question #1What will be the output of the following program? static void Main() { Func<string, string> greet = delegate (string name) { return "Hi " + name; }; Console.Write(greet("Sachin")); } ASachinBHi SachinCCompile-timer errorDRuntime error PreviousNext