70-502  Exam

Exam # of questions Description  Update
70-502 84 MS.NET Frmewrk3.5, Wndws Presentation Fndation App... 02/15/2011
[Practice Test]    [Download Study Guide(PDF)]   [Update Exam]

70-502 - Exam Information
  • Description: MS.NET Frmewrk3.5, Wndws Presentation Fndation App Dev
  • Passing Score: 0%
  • Practice Test - Number of questions: 84 questions
  • Simulation Test - Number of questions: 84 questions
  • Simulation Test Duration: 120 minutes
  • Has explanations: No

Question of the day

You are creating a Windows Presentation Foundation browser application by using Microsoft .NET Framework 3.5. The application contains a PageFunction class named CustomerPage. You need to ensure that the CustomerPage page function can perform the following tasks:

Answer(s)

  1. a customer ID in the form of a string.Allow the user to update customer information on the page.Return an instance of a Customer object with the updated information.Which class definition should you use?A. Partial Public Class CustomerPage Inherits PageFunction(Of String) Public Sub New(ByValCustomerIDAs String) ... End SubEnd Class
  2. Partial Public Class CustomerPage Inherits PageFunction(Of Customer) Public SubNew(ByVal
  3. As String) ... End SubEnd ClassC. Partial Public Class CustomerPage Inherits PageFunction(Of String) Public Sub New() ... EndSubPrivate Function ReturnCustomer(ByVal customerID As String) _ As Customer ... EndFunctionEnd Class
  4. Partial Public Class CustomerPage Inherits PageFunction(Of Customer) Public Sub New() ...
  5. SubPrivate Function ReturnCustomer(ByVal customerID As String) _ As Customer ... End
  6. Class
Correct Answer

Partial Public Class CustomerPage Inherits PageFunction(Of Customer) Public SubNew(ByVal