Chapter 3 Review The following questions are intended to reinforce key information presented in Chapter 3. It shows basic understanding of the topics covered in the chapter. 1. How does the .NET Frame work organize its classes? a. The .NET Framework uses namespaces to organize its classes. 2. In Visual C#, how do you declare a method to make it available without having to first instantiate an object from the class? a. You have to declare that method as static. (review from MIST4630) 3. How do you call a member of a base class from within a derived class? a. To refer to a member of a base class in Visual C#, you must use the base keyword. 4. Where would you save the following data items so that they persist between requests to a Web form? a. A control created at run time In the ViewState. b. An object that provides services to all users In the Application state. c. User preferences In the SessionState.