70-542 Exam

MS Office SharePoint Server 2007.Application Development

  • Exam Number/Code : 70-542
  • Exam Name : MS Office SharePoint Server 2007.Application Development
  • Questions and Answers : 241 Q&As
  • Update Time: 2011-10-24
  • Testing Engine (SoftWare Version): $ 50.00
  • PDF (Printable Version) Price: $15.00
  •  
  • Note: After purchase, we will send questions within 24 hours.
  • Free 70-542 Demo Download

    4Cert offers free 70-542 dumps,70-542 Practice exam,70-542 exam questions forMicrosoft Microsoft Licensing(MS Office SharePoint Server 2007.Application Development). You can check out the question quality and usability of our 70-542 practice exam before you decide to buy it.Before you purchase our 70-542 Q&A,you can click the link below to download the latest 70-542 pdf dumps.

    Download 70-542 Exam Testing Engine

     

    Exam Description

    70-542 exam, is a Microsoft certification.With the complete collection of questions and answers, 4Cert has assembled to take you through 241 Q&As to your 70-542 Exam preparation. In the 70-542 exam resources, you will cover every field and category in Microsoft Microsoft Licensing helping to ready you for your successful Microsoft Certification.

    Why choose 4cert 70-542 braindumps

    Quality and Value for the 70-542 Exam
    100% Guarantee to Pass Your 70-542 Exam
    Downloadable, Interactive 70-542 Testing engines
    Verified Answers Researched by Industry Experts
    Drag and Drop questions as experienced in the Actual Exams
    Practice Test Questions accompanied by exhibits
    Our Practice Test Questions are backed by our 100% MONEY BACK GUARANTEE.

    4cert 70-542 Exam Features

    Guarantee to Pass Your 70-542 Exam
    We provide the latest high quality 70-542 practice exam for the customers,we guarantee your success at the first attempt with only our 70-542 exam questions, if somehow you do not pass the exam at the first time, we will not only arrange FULL REFUND for you, but also provide you another exam of your claim, ABSOLUTELY FREE!

    After-sales Service
    Once you purchase our product,we will offer you the best service.After you purchase our product, we will offer free update in time for 90 days.Whatever you have any questions,we will help you solve it. And in 3 weeks we will offer you free updates,so please pay attention our site at all times

    Quality and Value for the 70-542 Exam

    4cert Practice Exams for Microsoft 70-542 are written to the highest standards of technical accuracy, using only certified subject matter experts and published authors for development.

    100% Guarantee to Pass Your 70-542 Exam

    If you prepare for the exam using our 4cert testing engine, we guarantee your success in the first attempt. If you do not pass the Microsoft Licensing 70-542 exam (MS Office SharePoint Server 2007.Application Development) on your first attempt we will give you a FULL REFUND of your purchasing fee AND send you another same value product for free.

    Microsoft 70-542 Exams (in EXE format)

    Our Exam 70-542 Preparation Material provides you everything you will need to take your 70-542 Exam. The 70-542 Exam details are researched and produced by Professional Certification Experts who are constantly using industry experience to produce precise, and logical. You may get questions from different web sites or books, but logic is the key. Our Product will help you not only pass in the first try, but also save your valuable time.

    70-542 Downloadable, Interactive Testing engines

    We are all well aware that a major problem in the IT industry is that there is a lack of quality study materials. Our Exam Preparation Material provides you everything you will need to take a certification examination. Like actual certification exams, our Practice Tests are in multiple-choice (MCQs) Our Microsoft 70-542 will provide you with exam questions with verified answers that reflect the actual exam. These questions and answers provide you with the experience of taking the actual test. High quality and Value for the 70-542 Exam:100% Guarantee to Pass Your Microsoft Licensing exam and get your Microsoft Licensing Certification.

    the 70-542 Demo:(get the Latest 70-542 demo you need contact us)
     
     
    Exam : Microsoft 70-542
    Title : MS Office SharePoint Server 2007.Application Development


    1. You are creating a Microsoft Office SharePoint Server 2007 site.
    You create a Microsoft WinForms application to enter information about a user.
    You write the following code segment. (Line numbers are included for reference only.)
    01 Shared Sub AddUser(ByVal user_name As String())
    02 ' Using
    03 Dim site As SPSite = New SPSite("http://sitename")
    04 Try
    05 Dim context As ServerContext = _
    06 ServerContext.GetContext(site)
    07 Dim profileManager As UserProfileManager = New _
    08 UserProfileManager(context)
    09 ...
    10 Finally
    11 CType(site, IDisposable).Dispose()
    12 End Try 13 End Sub
    You need to add a user profile to the profile store.
    Which code segment should you insert at line 09?
    A. Private u As UserProfile = _
    profileManager.GetUserProfile(user_name)
    ...
    B. Private profileManager As UserProfileManager = New _
    UserProfileManager(context)
    Private u As UserProfile = profileManager.GetUserProfile(user_name)
    ...
    u.Commit
    C. Private user_name As String = "<UserProfile>"
    ...
    user_name += userProfile + user_name
    ...
    user_name += "</UserProfile>"
    profileManager.CreateUserProfile(user_name)
    D. Private u As UserProfile = _
    profileManager.CreateUserProfile(user_name)
    ...
    u.Commit
    Answer: D

    2. You create a Microsoft Office SharePoint Server 2007 application. The application has a user named UserA.
    You need to retrieve a list of colleagues for UserA.
    Which code segment should you use?
    A. Private Sub RetrieveColleagues(ByVal Cntxtobj As ServerContext)
    ...
    Dim site As SPSite = New SPSite("http: //servername/sites/site1")
    Dim profileManager As UserProfileManager = New _
    UserProfileManager(Cntxtobj) Dim profile As UserProfile = _
    profileManager.GetUserProfile("abcUserA")
    Dim colleagues As Colleague() = profile.Colleagues.GetItems
    Site.Dispose
    ...
    End Sub
    B. Private Sub RetrieveColleagues(ByVal Cntxtobj As ServerContext)
    ...
    Dim site As SPSite = New SPSite("http: //servername/sites/site1")
    Dim context As ServerContext = ServerContext.GetContext(site)
    Dim profileManager As UserProfileManager = New _
    UserProfileManager(context) Dim profile As UserProfile = _
    profileManager.GetUserProfile("abcUserA")
    Dim colleagues As UserProfile() = _
    profile.Colleagues.GetCommonColleagues
    Site.Dispose
    ...
    End Sub
    C. Private Sub RetrieveColleagues(ByVal Cntxtobj As ServerContext)
    ...
    Dim site As SPSite = New SPSite("http: //servername/sites/site1")
    Dim context As ServerContext = ServerContext.GetContext(site)
    Dim profileManager As UserProfileManager = New _
    UserProfileManager(context) Dim profile As UserProfile = _
    profileManager.GetUserProfile("abcUserA")
    Dim manager As ColleagueManager = _
    New ColleagueManager(profile)
    Dim profiles As UserProfile() = _
    manager.GetColleaguesOfColleagues
    Site.Dispose
    ...
    End Sub
    D. Private Sub RetrieveColleagues(ByVal Cntxtobj As ServerContext)
    ...
    Dim site As SPSite = New SPSite("http: //servername//sites/site1")
    Dim context As ServerContext = ServerContext.GetContext(site)
    Dim audMgr As AudienceManager = New AudienceManager(context)
    Dim web As SPWeb = site.AllWebs("mainpage")
    Dim audienceIDNames As ArrayList = _
    audMgr.GetUserAudienceIDs("domainuserA", True, web)
    Site.Dispose
    ...
    End Sub
    Answer: A

    3. You create a Microsoft Office SharePoint Server 2007 site. A document library named CompanyWorkbooks on the site contains Microsoft Office Excel workbooks. You need to ensure that users can access the workbooks in the CompanyWorkbooks document library by using Excel Services in Microsoft Office SharePoint Server 2007. What should you do?
    A. Define the site as a managed path within SharePoint.
    B. Add the CompanyWorkbooks URL to the trusted location list.
    C. Edit the permissions of the CompanyWorkbooks document library to grant full control to the SharePoint application pool identity account.
    D. Create a custom security policy file for the CompanyWorkbooks document library. Add the file to the securityPolicy section of the Web.config file for the site.
    Answer: B

    4. Your organization has a department named product testing. You are creating a new membership named Product Testing. You are adding a distribution list to the new membership. You need to ensure that the membership is displayed only to managers. What should you do?
    A. Call the MemberGroupData method of the UserProfiles object.
    B. Call the GetPrivacyPolicy method of the UserProfileManager object.
    C. Pass Privacy.Manager as the privacy setting to the Membership.Create method.
    D. Pass PrivacyPolicyIdConstants.MembershipsFromDistributionLists to the CreateMemberGroup method of the user profile.
    Answer: C

    5. You create a Microsoft Office SharePoint Server 2007 site. The site is configured to use a Shared Services Provider (SSP) that manages user profiles. The user profiles contain user contact information. You need to retrieve the telephone number of a user. What should you do?
    A. Perform a keyword search by using the WorkPhone: prefix.
    B. Obtain the value of the WorkPhone node from the SPUser.Xml property of the user.
    C. Obtain the value of the UserProfile[PropertyConstants.WorkPhone] property of the user.
    D. Obtain the value of the PropertyInformation.Description property where the value of the PropertyInformation.Name property is WorkPhone.
    Answer: C

    http://www.4cert.com The safer.easier way to get Microsoft Licensing Certification.