C# in Easy level
1
/20
0
:
0
Submit
Total 20 question (100 marks)
1. How do you create a method in C#?
2. Which of these statements correctly declares a two-dimensional integer array in C#?
3. Which of the following access specifier in C# allows a class to expose its member variables and member
4. Which operator is used to multiply numbers?
5. What will be the output of the following program? public static void Main(string[] args) { int a = 1,
6. What is the correct syntax to output "Hello World" in C#(console application)?
7. What is the name of the 'special' class that represents a group of constants?
8. What is the nullable type in C#?
9. Arrange the following datatype in order of increasing magnitude sbyte, short, long, int.
10. Can multiple catch blocks be executed for a single try statement.
11. C# is an alias of C++
12. Which data type is used to create a variable that should store text?
13. Which operator can be used to compare two values?
14. Which of the following keyword is used to declare a variable whose type will be automatically determined by
15. LINQ stands for ________.
16. What is the correct way to create an object called myObj of MyClass?
17. Correct Declaration of Values to variables a and b ?
18. Which keyword is used to create a class in C#?
19. The value of a string variable can be surrounded by single quotes.
20. In C#, it is possible to inherit fields and methods from one class to another.
1.
How do you create a method in C#?
A
int MyMethod()
B
MyMethod() int
C
int (MyMethod)
D
int() MyMethod
Next
Previous
You are need login before take this quiz.
Login