I'm in the market for a couple C# contractors and I was asked by our vendor to put together some basic pre-screen questions. Pretty easy stuff but hopefully it helps filters out some of the riffraff.
- A class from which you cannot inherit is what type of class?
- Sealed (Correct)
- Private
- Virtual
- Protected
- What is the wild card character in the SQL “like” statement?
- *
- % (Correct)
- $
- #
- Which method is exposed by the IDisposable interface?
- Finalize
- Clear
- Remove
- Dispose (Correct)
- What is the top .NET class from which all classes are derived?
- System.Class
- System.Object (Correct)
- System.String
- System.Type
- Can you store multiple data types in a System.Array?
- Yes
- No (Correct)
- To select all rows from the left table even if there are no matches in the right table what type of join is used?
- Inner Join
- Right Join
- Left Join (Correct)
- Middle Join
- What operator do you use to test for a null value?
- ?? (Correct)
- $
- @
- ?
No comments:
Post a Comment