| 1: | Which class encapsulates information about a specific culture?  | 
| 2: | Name two ways to access the default culture within an application.  | 
| 3: | Match each regular expression: 
@"(\b[^\Wa-z0-9_][^\WA-Z0-9_]*\b)"
 
  
with the function it performs: 
Find all capitalized words. Find all lowercase words. Find all words with the initial letter capitalized. 
  | 
| 4: | When is it more advantageous to use the instance methods of Regex rather than the static ones?  | 
| 5: | Which string comparison method(s) is (are) used to implement this statement: 
if (myString == "Monday") bool sw = true;
 
  | 
| 6: | Match each statement: 
curdt.ToString("ddd MMM dd")
  
with its output: 
 | 
| 7: | Which of these objects is not created from an existing FileStream? 
 | 
| 8: | You can create a FileStream object with this statement: 
FileStream fs = new FileStream(fname,
                   FileMode.OpenOrCreate,
                   FileAccess.Write,FileShare.None);
 
Which one of the following statements creates an identical FileStream using an existing FileInfo object, fi? 
 | 
| 9: | Indicate whether the following comparisons are true or false: 
(string.Compare("Alpha","alpha") >0)
(string.Compare("Alpha","alpha",true) ==0)
(string.CompareOrdinal("Alpha","alpha")>0)
(string.Equals("alpha","Alpha"))
  |