What do you know about C # P3 programming language?
C # is an object-oriented programming language developed by Microsoft, the start of their .NET plan. Please invite the Network Administrator to learn about this topic through the quiz below.
Question 1: Indicate the results of the following program:
struct ValType { public int data; public static void Main () { ValType v = new ValType (); Console.WriteLine (v.data); } }
Question 2: Results of the following program section:
struct ValType { public int data; public ValType (int i) { data = i; } public static void Main () { ValType v = new ValType (); Console.WriteLine (v.data); } }
Question 3: C # programming is developed by:
Question 4: Does C # have multiple inheritance?
Question 5: Are there any types of comments in C #
Question 6: What is Jagged array in C #?
Question 7: How many ways can you pass parameters to a method?
Question 8: Can you return multiple values from a function in C #?
Question 9: Can you assign a struct with null?
Question 10: Does .NET support inheriting from multiple classes?