C# InterView Questions

12345678910111213141516171819
Across
  1. 2. c# ---- code
  2. 3. ---- types are stored in the stack
  3. 6. process of converting an object into a stream of bytes
  4. 9. used to obtain a resource
  5. 12. ---- types are stored on heap
  6. 13. variables that are initialized only from static constructor of the class and value does not changed are referred as
  7. 14. Array of Arrays
  8. 15. variables that are declared and initialized at compile time and cannot be changed afterwards are referred as
  9. 17. reverse of serialization
  10. 19. elements of an array can be sorted in desc order by using ---- method after sort() method is called
Down
  1. 1. another name for smart arrays in c#
  2. 4. name the "///" comment type
  3. 5. parameter that needs not to be initialized before passing to a method
  4. 7. name the method used to create an array with non-default values
  5. 8. multiple catch blocks can be executed
  6. 10. name the container that contain objects which are ready to be used
  7. 11. this method is used to copy all the elements of an existing array into another existing array
  8. 16. making the resource unusable is referred as ---- reference
  9. 18. this method is used to create a new array object containing all the elements in the original array