

MCQOPTIONS
Saved Bookmarks
1. |
For the code snippet shown below, which of the following statements are valid? public class TestMcqsMentor { public void TestSub (M arg) { Console.Write(arg); } } class MyProgram { static void Main(string[] args) { TestMcqsMentor Bits = new TestMcqsMentor(); Bits.TestSub("TestMcqsMentor"); Bits.TestSub(4.2f); } } |
A. | Program will compile and on execution will print: TestMcqsMentor4.2 |
B. | A non generic class Hello cannot have generic subroutine. |
C. | Compiler will generate an error. |
D. | Program will generate a run-time exception. |
Answer» B. A non generic class Hello cannot have generic subroutine. | |