Study

C# Collections Review

  •   0%
  •  0     0     0

  • Will this code work?
    NO! It is not possible to add an integer to a list of strings.
  • What is the index of the first element in a List?
    0!
  • Will this code work?
    NO! The myList variable is never initialized.
  • Will this code work?
    YES! It properly creates a new List of integers and adds a value to it.
  • What will be printed to the console?
    40! After adding four elements to the List, the program loops through and calculates the sum of all the values (multiplied by 10).
  • Will this code work?
    NO! The index (2) is out of bounds, because there are only two elements in the List (at index 0 and index 1).
  • What will be printed to the console?
    3! There are three total elements added to the List.
  • What is one difference between a List and an Array?
    A few! A List can change size, while an Array's size cannot change. A List can Add items dynamically. An Array is instantiated with square bracket notation.
  • Will this code work?
    YES! It properly creates a new List of integers, adds two values to it, and prints the value at index 1 to the console.
  • What will be printed to the console?
    6! It first gets the value of the List at index 0 (which is 1), and then adds 5 to it.