1. (TCO 7) Which is not a valid name for a method or function?MyMod5mod_1mod_@7MyMod_72. (TCO 8) The following method has _____ input parameter(s) and returns _____ to the calling method.Public static void GetResult(int value1 double value2)2 an inte
1. (TCO 7) Which is not a valid name for a method or function?MyMod5mod_1mod_@7MyMod_72. (TCO 8) The following method has _____ input parameter(s) and returns _____ to the calling method.Public static void GetResult(int value1 double value2)2 an integer2 no valuean integer an integer1 an integer3. (TCO 7) Why is it not necessary to pass a global variable to a method?You do have to pass global variables to methods.Main() passes them for you.They are passed automatically.All methods can access globally declared variables.4. (TCO 8) Because Main() and testMeth() store myVar in _____ the output of this code will be _____.static voidMain(){int myVar = 6;Console.Write({0} myVar);myVar++;testMeth(myVar);Console.Write({0} myVar);Console.Read();}public static void testMeth(intmyVar){Console.Write({0} myVar);myVar++;}different memory locations 6 7 7the same memory location 6 7 7different memory locations 6 7 8the same memory location 6 7 8