Quiz 1
1. What is the value of sizeof(double) in C# on most 64-bit systems?
2. Which method is used to resize an array in C#?
3. What is the output of Console.Write("{0}", 7 & 3); ?
4. What does the static keyword do for a class member in C#?
5. Which of the following is a valid declaration of a delegate returning int?
6. What is the output of Console.Write("{0}", 5 == 5.0); ?
7. Which namespace is required for string comparison methods like String.Compare() ?
8. What is the output of Console.Write("{0}", !true); ?
9. Which operator is used to access members of a struct or class variable?
10. What is the output of Console.Write("{0}", 10 >> 2); ?
Previous Next