This is an old revision of the document!
Table of Contents
Study Questions - Audio Creation
Mp3 Conversion Settings
lame -m m -q 0 –abr 85 –noreplaygain input.wav output.mp3
Questions To Be Recorded
Chapter 1: Introducing the ASP.NET 2.0 Web Site
Lesson 1: Understanding The Players
WebC1L1Q1: What are the four main HTTP methods?
Answer: Get, post, put and delete.
WebC1L1Q2: What are the five common MIME types?
Answer: Text, image, audio, video and application.
WebC1L1Q3: What is the difference between where form data is stored in a get request and a post request?
Answer: In a get request, the form data is put in the query string. In a post request, the data is put in the message body.
Lesson 2: Creating a Web Site
WebC1L2Q1: What are the three sections of an in-line ASPX file?
Answer: Page directives, code, layout.
Lesson 3: Working with Web Configuration Files
WebC1L3Q1: What are the five levels, in order, of the ASP.NET configuration hierarchy?
Answer: Global machine, root deafult web, web site, web application, sub-directory.
Lesson 4: Using ASP.NET Trace
WebC1L4Q1: What is the virtual page that displays trace information?
Answer: Trace.axd.
WebC1L4Q2: What are the two method of configuring the trace facility?
Answer: Using the Website Administration Tool and editing the web.config file.
Chapter 2: Adding and Configuring Server Controls
Lesson 1: Using a Server Control
WebC2L1Q1: How should the source of bloat in the ViewState be identified?
Answer: By using the trace facility.
ITQ8: What should be looked for in a code review?
Answer: Correctness (only).
Old Questions That **May** Need To Be Recorded
Professional ASP.NET MVC 1.0
MvcC1Q1: What are the six top-level directories, created by default when a new ASP.NET MVC project is created and what goes in each?
Answer:
Directory | Contents |
---|---|
Controllers | Controller classes that handle URL requests. |
Models | Classes that represent and manipulate data. |
Views | UI template files that are responsible for rendering output. |
Scripts | JavaScript library files and scripts. |
Content | CSS and image files, and other non-dynamic/non-JavaScript content. |
App_Data | Data files you want to read/write. |
MvcC1Q2: Where is does ASP.NET MVC store its routing rules?
Answer: In the Global.asax file.