MCQ of C# with Answer set-3

MCQs in C# 1. The general syntax for declaring an enumeration in C# is . A) < enum _name> enum {enum list}; B) enum <enum_name> {enum list}; C) <enum_type> enum <enum_name> {enum list}; D) None of the above 2. State True or False for the difference between classes and structures. i) Structures do not support inheritance ii) Structure can have default constructor iii) Classes are reference types and structures are value types. A) i- True, ii- False, iii-True B) i- False, ii- True, iii-True C) i-True, ii-True, iii-False D) i- False, ii- False, iii-True 3. The various techniques provided by C# to implement static polymorphism is/are i) Function overloading ii) Static overloading iii) Operator overloading A) i and ii only B) i and iii only C) ii and iii only D) All i, ii, iii 4. Operator overloading is creating functions with special names, the keyword ........................ operator followed by the symbol for the operator being defined. A) Overload B) Upda...