日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

微软MCP之SharePoint2007考试试题(Microsoft 70-542)

發(fā)布時(shí)間:2023/12/15 39 豆豆
生活随笔 收集整理的這篇文章主要介紹了 微软MCP之SharePoint2007考试试题(Microsoft 70-542) 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

將以下試題熟練掌握,即可通過此考試(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
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
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("abc\UserA")
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("abc\UserA")
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("abc\UserA")
Dim manager As ColleagueManager = _
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
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("domain\userA", True, web)
Site.Dispose
...
End Sub
Answer: A
3. 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
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.
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
Answer: C
5. 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
6. You are creating a Microsoft Office SharePoint Server 2007 application. The application reads data from
the Microsoft Office Excel 2007 workbook named SalesGoals.xls. SalesGoals.xls is located in a document
library. The first sheet of the SalesGoals.xls workbook contains the following information.
You need to retrieve the values for 2008 from within your application.
Which two actions should you perform? (Each correct answer provides part of the solution. Choose two.)
A. Instantiate a new RangeCoordinates object.
B. Instantiate the Microsoft Office Excel Web Services service.
C. Call the GetRangeA1 method by passing B3:D3 as a parameter.
D. Call the GetRange method along with a RangeCoordinates object by using the following parameters.
column=2, row=3, height=1, width=3
Answer: BC
7. You create an application for a Microsoft Office SharePoint Server 2007 server. You create a call
center dashboard. You create a Key Performance Indicator (KPI) list that contains KPIs. You add a KPI Web
Part to the dashboard to view KPIs. You need to permit users to view details that make up each KPI.
What should you do?
A. Add a link to each KPI in the list to take the user to a details page.
B. Add data to a custom SharePoint list and use built-in filter and view capabilities.
C. Add a Filter Web Part to the dashboard page and connect the page to the KPI list Web Part.
D. Filter the items in the KPI list Web Part by the indicator that the user wants to view.
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
Answer: A
8. You are creating two user-defined functions (UDFs) of Excel Services in Microsoft Office SharePoint
Server 2007.
You write the following code segment.
Public Class Class1
Public Function MyDouble(ByVal d As Double) As Double
Return d * 9
End Function
Public Function ReturnDateTimeToday() As DateTime
Return (DateTime.Today)
End Function
End Class
You need to ensure that the MyDouble method and the ReturnDateTimeToday method are recognized as
UDFs of Excel Services.
What should you do?
A. Add a reference to the Excel Services DLL.
B. Change the methods from public to private.
C. Add an out parameter to each of the method statements.
D. Mark the class by using the UdfClass attribute and mark the methods by using the UdfMethod attribute.
Answer: D
9. Your company stores employee details in a Microsoft SQL Server database. You are creating a Report
Center site on a Microsoft Office SharePoint Server 2007 server. You need to ensure that a report on
employee details can be generated in the Report Center site. What should you do?
A. Add the Data Connections library to the trusted file locations.
B. Import the application definition to the Business Data Connector.
C. Import the Office Data Connection file to the trusted data providers.
D. Create an Office Data Connection file in a trusted Data Connections library.
Answer: D
10. You are developing a Microsoft Office SharePoint Server 2007 solution that integrates with Microsoft
SQL Server 2005 Reporting Services. You need to configure the SharePoint solution to allow storage of
reports in SharePoint document libraries. What should you do?
A. Specify the Report Server URL in the Report Explorer Web Part.
B. Configure the proxy server endpoint in the Reporting Services Configuration tool.
C. Specify a Report Explorer Web Part as the target for the Report Viewer Web Part.
D. Specify a Report Viewer Web Part as the target for the Report Explorer Web Part.
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
Answer: B
11. You are designing a Microsoft Office SharePoint Server 2007 solution. A Microsoft SQL Server 2005
Analysis Services cube stores key performance indicators (KPIs). You need to display details of a KPI in
a Web Part. Which two actions should you perform? (Each correct answer presents part of the solution.
Choose two.)
A. Create a KPI List.
B. Add a List Item Web Part.
C. Create a .odc file for the data connection.
D. Create a .udl file for the data connection.
E. Create a Business Data Catalog (BDC) definition.
Answer: AC
12. You have a Microsoft Office SharePoint Server 2007 site. You create a Microsoft Office Excel 2007
workbook that contains the telephone numbers of all your company locations. You need to ensure that
users can filter the Office Excel 2007 workbook on the basis of company locations by using Excel Services
in Microsoft Office SharePoint Server 2007. What should you do?
A. Create an ActiveX control in the workbook.
B. Create an Excel 2007 Microsoft Visual Basic for Applications (VBA) application in the workbook.
C. Filter the workbook by using the Data-Filter option of the Excel 2007 workbook.
D. Filter the list in place by using Excel 2007, and protect the Excel 2007 workbook that contains the
telephone numbers.
Answer: C
13. You implement a custom function as a user-defined function (UDF) in Excel Services in Microsoft Office
SharePoint Server 2007.
A Microsoft Office Excel 2007 workbook uses the custom function to generate a random number between
100 and 500.
You need to generate a new random number each time you load the workbook.
Which code segment should you use?
A. Public Class MyUdfs
Private rand As Random = New Random
<UdfMethod()> _
Public Function GetRandomNumber() As Integer
Return (rand.Next(100, 500))
End Function
End Class
B. <UdfClass()> _
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
Public Class MyUdfs
Private rand As Random = New Random
<UdfMethod(IsVolatile=True)> _
Public Function GetRandomNumber() As Integer
Return (rand.Next(100, 500))
End Function
End Class
C. <UdfClass()> _
Public Class MyUdfs
Private rand As Random = New Random
Public Function GetRandomNumber() As Integer
Return (rand.Next(100, 500))
End Function
End Class
D. Public Class MyUdfs
Private rand As Random = New Random
Public Function GetRandomNumber() As Integer
Return (rand.Next(100, 500))
End Function End Class
Answer: B
14. You are creating a Microsoft Office SharePoint Server 2007 Report Center Web site. Your company
stores product data in a Microsoft SQL Server 2005 database named Product Management. You need to
ensure that the product data is available for use in Microsoft Office Excel 2007 reports. What should you
do?
A. Upload a custom Office Data Connection file to the Data Connections library.
B. Upload a custom set of Microsoft SQL Server Reporting Services Report Model files to the Data
Connections library.
C. Create a single sign-on (SSO) provider that manages access to the Product Management database.
D. Create a Business Data Connection for the Product Management database, and define entities in the
Business Data Catalog (BDC) definition.
Answer: A
15. You create an application for a Microsoft Office SharePoint Server 2007 server. You need to write
code that retrieves all users for an audience named Audience1. Which code segment should you use?
A. Private audMgr As AudienceManager = New AudienceManager()
Private audiences As AudienceCollection = audMgr.Audiences
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
Private audience1 As Audience = audiences("Audience1")
B. Private audMgr As AudienceManager = New AudienceManager()
Private membershipList As ArrayList = _
audMgr.Audiences("Audience1").GetMembership()
C. Private audMgr As AudienceManager = New AudienceManager()
Private audience1 As AudienceCollection = _
audMgr.Audiences
D. Private site As SPSite = New _
SPSite("http: //servername//sites/site1")
Private context As ServerContext = _
ServerContext.GetContext(site)
Private audMgr As AudienceManager = _
New AudienceManager(context)
Private web As SPWeb = site.AllWebs(0)
Private audienceIDNames As ArrayList = _
audMgr.GetUserAudienceIDs("Audience1", True, web)
Answer: B
16. You are creating a Microsoft Office SharePoint Server 2007 site. The site has five audiences. A user
might belong to more than one of the five audiences. You need to obtain a list of audience names for the
current user. Which code segment should you use?
A. Private Sub ListAudienceNames()
...
Dim al As AudienceLoader = AudienceLoader.GetAudienceLoader
Dim am As AudienceManager = am.CurrentServerContext
Dim audiences As ArrayList = al.GetUserAudienceIDs(True)
For Each audience As Object In audiences
Dim a As Audience = am.Audiences(CType(audience, Guid))
System.Web.HttpContext.Current._
Response.Write("Audience: " + audience.ToString)
Next
...
End Sub
B. Private Sub ListAudienceNames()
...
' Using Dim web As SPWeb = SPWeb.OriginalBaseUrl
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
Try
Dim user As SPUser = web.CurrentUser
Dim am As AudienceManager = am.CurrentServerContext
Dim audiences As AudienceCollection = am.Audiences
For Each a As Audience In audiences
If a.IsMember(user.LoginName) Then
System.Web.HttpContext.Current.Response._
Write("Audience: " + AudienceName)
End If
Next
Finally
CType(web, IDisposable).Dispose()
End Try
...
End Sub
C. Private Sub ListAudienceNames()
...
Dim user As String = WindowsIdentity.GetCurrent.Name
Dim web As SPWeb = SPWeb.OriginalBaseUrl
Dim am As AudienceManager = am.CurrentServerContext
Dim audList As ArrayList = am.GetUserAudienceIDs(user, False, web)
For Each obj As Object In audList
Dim a As Audience = CType(obj, Audience)
System.Web.HttpContext.Current.Response._
Write("Audience: " + a.AudienceName)
Next
...
End Sub
D. Private Sub ListAudienceNames()
...
' Using
Dim web As SPWeb = SPWeb.OriginalBaseUrl
Try
Dim user As String = web.CurrentUser.Name
Dim am As AudienceManager = am.CurrentServerContext
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
For Each a As Audience In am.Audiences
If am.IsMemberOfAudience(user, a.AudienceName) Then
System.Web.HttpContext.Current.Response._
Write("Audience: " + a.AudienceName)
End If
Next
Finally
CType(web, IDisposable).Dispose()
End Try
...
End Sub
Answer: B
17. You are creating a Microsoft Office SharePoint Server 2007 site. The site contains content that is
relevant to members of the DOMAIN\Developers security group. You need to ensure that the content is
targeted to members of the Developers group. What should you do?
A. Create an audience that is based on the DOMAIN\Developers group.
B. Create a site group that has the DOMAIN\Developers group as a member.
C. Apply a filter to the lists to display only members of the DOMAIN\Developers group.
D. Create a custom Web Part that verifies the membership of the DOMAIN\Developers group and displays
the content of the Tasks list only to members of that group.
Answer: A
18. You are creating a Microsoft Office SharePoint Server 2007 site. An audience named Purchasing
contains all the users in a Microsoft Active Directory group. You need to display the name of each
member of the audience. Which code segment should you use?
A. Dim audManager As AudienceManager = New AudienceManager()
Dim aud As Audience = audManager.Audiences("Purchasing")
Dim members As ArrayList = aud.GetMembership()
For Each obj As Object In members
Dim user As UserInfo = CType(obj, UserInfo)
System.Web.HttpContext.Current.Response.Write( _
"User: {0}" + user.PreferredName)
Next
B. Dim audManager As AudienceManager = New AudienceManager()
Dim members As AudienceCollection = audManager.Audiences
For Each obj As Audience In members
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
Dim user As String = _
System.Security.Principal.WindowsIdentity.GetCurrent.Name
If obj.IsMember(user) Then
System.Web.HttpContext.Current.Response.Write("User: {0}" + user)
End If
Next
C. Dim audManager As AudienceManager = New AudienceManager()
Dim audCol As AudienceCollection = audManager.Audiences
Dim aud As Audience = audManager.Audiences("Purchasing")
Dim members As ArrayList = aud.GetMembership()
For Each obj As Object In audCol
Dim user As UserInfo = CType(members(audCol.Count), UserInfo)
System.Web.HttpContext.Current.Response.Write( _
"User: {0}" + user.PreferredName)
Next
D. Dim members As Audience_List = New Audience_List()
Dim audManager As AudienceManager = New AudienceManager()
Dim aud As Audience = audManager.Audiences("Purchasing")
members.GetData()
members.DataBind()
Answer: A
19. You create a Microsoft Office SharePoint Server 2007 site. You create a list named Projects that
includes a column named TargetAudience. You create a Web Part that displays information from the
Projects list. You need to target items in the Projects list to the audience specified by the value in the
TargetAudience column. What should you do?
A. Use an AudiencePicker object to select the specified audience.
B. Use an AudienceManager object to ascertain the audience membership.
C. Use a SPRoleAssignment object to associate users with the Projects list.
D. Use an AudienceRuleComponent object to specify the conditions for audience membership.
Answer: B
20. Your company uses an ASP.NETWeb site. You create a Microsoft Office InfoPath form named MyForm.
You are creating a custom control that is derived from the XMLFormView class. The custom control will
display MyForm within an ASP.NET page on the Web site. You need to ensure that MyForm can be
displayed within an ASP.NET page on the Web site. What should you do?
A. Set the xsnLocation property of the custom control to MyForm.xsn.
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
B. Set the xmlLocation property of the custom control to MyForm.xml.
C. Create an OnInitialize event for the custom control and set XPathNavigator to MyForm.xsn.
D. Create an OnPreRender event for the custom control and set XPathNavigator to MyForm.xsn.
Answer: A
21. Your organization has a Microsoft Office Forms Server 2007 server. The server hosts a form template
named TemplateA. You create a new version of the form named TemplateB. You need to create an
automated administration task that ensures that the sites use TemplateB instead of TemplateA. What
should you do?
A. Call the Activate method of the FormTemplateCollection object for the server farm.
B. Call the Quiesce method of the FormTemplate object for each Web site in the site collection.
C. Call the Update method of the FormTemplate object for each Web site in the site collection.
D. Call the UpgradeFormTemplate method of the FormTemplateCollection object for the server farm.
Answer: D
22. You create a Microsoft Office SharePoint Server 2007 site. The site contains a form library. A Microsoft
Office InfoPath form from the form library must be converted to a Web page by using an existing InfoPath
form converter. When you select the existing form converter, you receive a conversion error. You need
to ensure that the document is converted without errors. What should you do?
A. Add a Web page that uses the XmlFormView control.
B. Publish the form to the form library by using an administrator account.
C. Modify the conversion schedule for the document-to-page converter.
D. Use a Universal Data Connection (UDC) between the InfoPath form and the SharePoint site.
Answer: B
23. You are designing a Microsoft Office SharePoint Server 2007 solution. You need to implement a
Single Sign On (SSO) provider to access a Business Data Catalog (BDC). What should you do?
A. Reference the Microsoft.SharePoint.Portal assembly.
B. Reference the Microsoft.SharePoint.SoapServer assembly.
C. Reference the Microsoft.Office.Server.Utilities assembly.
D. Reference the Microsoft.Office.Server.WebControls assembly.
Answer: A
24. You create a Microsoft Office InfoPath workflow task form for users. The form contains all the details of
each task. You need to store the value of the Comments field in a variable named UserInput when each
user submits the form. Which code segment should you use?
A. Dim UserInput As String = New String
Dim wpTProps As SPWorkflowTaskProperties = New _
SPWorkflowTaskProperties
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
...
UserInput = wpTProps.ExtendedProperties("Comments").ToString
B. Private wpAProps As SPWorkflowActivationProperties = New _
SPWorkflowActivationProperties
...
Private UserInput As Object = wpAProps.Item.Fields("Comments")
C. Private wpAProps As SPWorkflowActivationProperties = New _
SPWorkflowActivationProperties
Private serializer As XmlSerializer = New _
XMLSerializer(GetType(MyFields))
Private reader As xmlTextReader = New XMLTextReader(New _
System.IO.StringReader(wpAProps.InitiationData))
Private fields As MyFields = serializer.Deserialize(reader)
Private UserInput As String = fields.Users(i).Comments
D. Private serializer As XmlSerializer = New _
XmlSerializer(GetType(InitForm))
Private reader As XmlTextReader = New XmlTextReader(New _
System.IO.StringReader(workflowProps.InitiationData))
Private initform As InitForm = _
CType(serializer.Deserialize(reader), InitForm)
Private UserInput As String = initform.comments
Answer: A
25. You are designing a Microsoft Office SharePoint Server 2007 solution. You need to create a workflow
that will access data from a custom Microsoft Office Infopath task form. Which two actions should you
perform? (Each correct answer presents part of the solution. Choose two.)
A. Add the workflow task schema to the task form as a secondary data source.
B. Add the workflow task schema to the task form as the primary data source.
C. Execute the GetWorkflowData method on a SPWorkflowTask object.
D. Execute the GetNoCodeTemplate method on a SPWorkflowTaskManager object.
E. Access the ExtendedProperties property of the SPWorkflowTaskProperties object.
Answer: AE
26. Your company uses a Microsoft Office SharePoint Server 2007 site that has user profiles enabled. Your
company also uses a Web-based human resources (HR) application that runs on a different server. The
HR department wants to display the user profile data from the SharePoint site in the Web-based application.
You need to retrieve the user profile information from within theWeb-based application. Which method of
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
the UserProfileService object should you use?
A. The GetUserProfileByName method.
B. The ModifyUserPropertyByName method.
C. The GetCurrentChangeToken method.
D. The GetUserCurrentChangeToken method.
Answer: A
27. You are creating a Microsoft Office SharePoint Server 2007 Web application that references a Business
Data Catalog (BDC) definition for a customer relationship management (CRM) system. You need to
ensure that users can perform a keyword search on the CRM information from their My Site page. What
should you do?
A. Provide users with a parent data related list Web Part for the BDC.
B. Provide a custom search Web Part that is restricted to a BDC-specific search scope.
C. Create a business data item Web Part that is restricted to the selected keyword of the user.
D. Create a targeted tab on a Search Center site and target the search results at the My Site page of the
users.
Answer: B
28. You create a Microsoft WinForms application that allows you to search within a Microsoft Office
SharePoint Server 2007 site collection.
You write the following code segment.
Private searchWS As SPSSearchWS.QueryService = New _
SPSSearchWS.QueryService
Private query As String = "My_Query"
You need to bind a DataGridView control directly to a query result set.
Which code segment should you use?
A. dataGridView1.DataSource = searchWS.QueryEx(query)
B. dataGridView1.DataSource = searchWS.Query(query)
C. Dim sqlQuery As FullTextSqlQuery = New FullTextSqlQuery(New _
SPSite(searchWS.Url))
sqlQuery.ResultTypes = ResultType.RelevantResults
sqlQuery.QueryText = query
Dim results As ResultTableCollection = sqlQuery.Execute
dataGridView1.DataSource = results
D. kRequest.QueryText = query
kRequest.ResultTypes = kRequest.ResultTypes Or _
(ResultType.RelevantResults)
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
Dim results As ResultTableCollection = kRequest.Execute
dataGridView1.DataSource = results
Answer: A
29. You are modifying a Microsoft Office SharePoint Server 2007 Search Center site. You create a
customized XSLT style sheet to change the appearance of ten Search Core results Web Parts on separate
site tabs. You need to ensure that theWeb Parts use the new style sheet. What are two possible ways
to achieve this goal? (Each correct answer presents a complete solution. Choose two.)
A. Copy and paste the style sheet in the XSLT editor of each result set for the Web Parts on each tab.
B. Modify the Theme.css file in the SharePoint Server 2007 Search Center site to refer to the new style
sheet.
C. Modify the Onet.xml file in the SharePoint Server 2007 Search Center site to refer to the new style sheet.
D. Publish the XSLT style sheet to a shared location. Update the XSLT Link property of the Web Parts to
point to the URL of the style sheet document.
Answer: AD
30. You are creating a Microsoft Office SharePoint Server 2007 application that uses the Search service.
You need to ensure that the search results are based on an existing keyword. Which code segment
should you use?
A. Private Sub keywordQueryExecute(ByVal strQueryText As String)
...
Dim kRequest As KeywordQuery = New _
KeywordQuery(ServerContext.Current)
kRequest.QueryText = strQueryText
kRequest.ResultTypes = kRequest.ResultTypes Or _
(ResultType.RelevantResults)
Dim resultTbls As ResultTableCollection = kRequest.Execute
...
End Sub
B. Private Sub keywordQueryExecute(ByVal strQueryText As String)
...
Dim kRequest As KeywordQuery = New _
KeywordQuery(ServerContext.Current)
kRequest.QueryText = "SELECT * FROM scope() _
WHERE keyword = " + strQueryText
kRequest.ResultTypes = kRequest.ResultTypes Or _
(ResultType.RelevantResults)
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
Dim resultTbls As ResultTableCollection = kRequest.Execute
...
End Sub
C. Private Sub keywordQueryExecute(ByVal strQueryText As String)
...
Dim kRequest As KeywordQuery = New _
KeywordQuery(ServerContext.Current)
kRequest.QueryText = "SELECT * FROM scope(" + strQueryText + ")"
kRequest.ResultTypes = kRequest.ResultTypes Or _
(ResultType.RelevantResults)
Dim resultTbls As ResultTableCollection = kRequest.Execute
...
End Sub
D. Private Sub keywordQueryExecute(ByVal strQueryText As String)
...
Dim kRequest As KeywordQuery = New _
KeywordQuery(ServerContext.Current)
kRequest.QueryText = "SELECT " + strQueryText + " FROM scope()"
kRequest.ResultTypes = kRequest.ResultTypes Or _
(ResultType.RelevantResults)
Dim resultTbls As ResultTableCollection = kRequest.Execute
...
End Sub
Answer: A
31. You are creating a Microsoft Office SharePoint Server 2007 Web Part.
You write the following code segment. (Line numbers are included for reference only.)
01 Public cmdCrawl As Button
02
03 Protected Overloads Overrides Sub CreateChildControls()
04 cmdCrawl = New Button
05 AddHandler cmdCrawl.Click, AddressOf cmdCrawl_Click
06 cmdCrawl.Text = "Update Index"
07 End Sub
08
09 Public Sub cmdCrawl_Click(ByVal sender As Object, ByVal e As EventArgs)
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
10 Dim sspContent As Microsoft.Office.Server.Search.Administration.Content = New
11
12 Microsoft.Office.Server.Search.Administration.Content(SearchContext.Current)
13 ...
14 End Sub
You need to ensure that the Web Part initiates a search crawl of a scope named Patents.
Which code segment should you insert at line 13?
A. Dim sspContentSources As ContentSourceCollection = _
sspContent.ContentSources
Dim cs As ContentSource = sspContentSources("Patents")
cs.StartFullCrawl
B. Dim sspContentSources As ContentSourceCollection = _
sspContent.ContentSources
Dim TargetScope As Uri = New _
Uri("http: //myportal/SearchCenter/Search.aspx?Scope=Patents")
sspContentSources.Update(TargetScope)
C. Dim sspContentSources As ContentSourceCollection = _
sspContent.ContentSources
Dim crawlmappings As CrawlMappingCollection = _
sspContentSources.Parent.CrawlMappings
Dim ResultsPage As Uri = New Uri(Me.Context.ToString)
Dim TargetScope As Uri = New _
Uri("http: //myportal/SearchCenter/Search.aspx?Scope=Patents")
crawlmappings.Create(ResultsPage, TargetScope)
D. Dim sspContentSources As ContentSourceCollection = _
sspContent.ContentSources
Dim cs As ContentSource = sspContentSources("Patents")
cs.Update
Answer: A
32. You are customizing a Search Center Web site on a Microsoft Office SharePoint Server 2007 site
collection. You add a new column named CompletionDate to your search results. You need to ensure
that the search terms entered by users appear highlighted in the CompletionDate column. What should
you do?
A. Create a managed property named CompletionDate in Shared Services Provider (SSP).
B. Set the Query Box Prompt String property of the Search Box Web Part to CompletionDate.
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
C. Add a section in the XSLT style sheet of the Search Core Results Web Part that uses the HitHighlighting
template.
D. Add an XML node for the CompletionDate column that includes a HitHighlighted attribute in the Selected
Columns property of the Search Box Web Part.
Answer: C
33. You create a search center site for your Microsoft Office SharePoint Server 2007 portal. You need to
display a new column named CompletionDate on a Search Core Results Web Part. Which two steps
should you perform? (Each correct answer presents part of the solution. Choose two.)
A. Add CompletionDate to the Additional Query Terms property on the Search Box Web Part.
B. Add a section in the XSLT style sheet of the Search Core Results Web Part to process the
CompletionDate column.
C. Add a managed property entry in Enterprise Search Administration for items that have the
CompletedDate property.
D. Update the Selected Columns property of the Search Core ResultsWeb Part to include the following text:
<Column Name="CompletionDate"/>
Answer: BD
34. You create a Microsoft Office SharePoint Server 2007 Search Center site. The site has a custom tab
that restricts users to a Business Data Connector for a Product tracking system.
You need to restrict the data displayed to items from the custom columns named ProductName,
ProductNumber, and ProductColor.
What should you do?
A. Create a scope rule named contentclass in the Products scope for each required column that limits the
results to the required items.
B. Replace the contents of the Selected Columns field in the Search Core Results Web Part with the
following XML fragment.
<root xmlns:xsi="http: //www.w3.org/2001/XMLSchema-instance">
<SelectColumns>
<Column Name="ProductName"/>
<Column Name="ProductNumber"/>
<Column Name="ProductColor"/>
</SelectColumns> </root>
C. Edit the XSLT style sheet that renders the Search Core results Web Part and add the following XML
fragment.
<p class="srch-Metadata">
<xsl:call-template name="DisplayString">
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
<xsl:with-param name="str" select="ProductName" />
<xsl:with-param name="str" select="ProductNumber" />
<xsl:with-param name="str" select="ProductColor" />
< </xsl:call-template>
</p>
D. Implement the following SQL query in the field named Fixed Keyword Query in the Search Core results
Web Part properties.
SELECT ProductName, ProductNumber, ProductColor FROM scope() WHERE "scope" = 'Products'
Answer: B
35. You are creating a Microsoft Office SharePoint Server 2007 application to increase the search capability
of five site collections that belong to a single farm. You need to retrieve all available search contexts for
the Web site collection on which the application is initiated. Which code segment should you use?
A. Dim strSite As String = "http: //yourSiteName"
Dim srchContext As SearchContext = SearchContext.GetContext(New _
SPSite(strSite))
B. Dim srchContext As SearchContext = _
SearchContext.GetContext(ServerContext.Current)
C. Private searchservice As SearchService = New _
SearchService("Search_SSPS Name", SPFarm.Local)
Private srchContext As SearchContext = _
SearchContext.GetContext(searchservice.Id.ToString)
D. Dim searchWebService As WASearchWebService1.SPSSearchWS._
QueryService = New WASearchWebService1.SPSSearchWS.QueryService()
searchWebService.Url = "http: //myportal"
Dim srchContext As SearchContext = SearchContext.GetContext(New _
SPSite(searchWebService.ToString()))
Answer: B
36. You are making changes to a Microsoft Office SharePoint Server 2007 Search Center Web site that
uses a fixed keyword query. You need to make changes to the text that is displayed when a search fails
to return a result. What should you do?
A. Modify the dvt_1.body template to display the new text when the value of the DisplaySize property is
zero.
B. Modify the default text in the dvt_1.empty template to the new text in the Search Core Results Web Part
on the results page.
C. Modify the default text in the dvt_1.noKeyword template to the new text in the Search Core Results Web
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
Part on the results page.
D. Modify the Import Error Message property of the Search Core Results Web Part of the results page to
include the new text when the Web Part does not import any results from the search service.
Answer: B
37. You are creating a Microsoft Office SharePoint Server 2007 site. A document library contains
documents on new products. The documents must contain a label that denotes the product status.
You need to add a label to all documents in the library. What should you do?
A. Modify Variation Labels from the Site Collection Administration page.
B. Start an approval workflow each time a new document is added to the library.
C. Modify the document template for the existing document library to include the label.
D. Create an Information Management Policy feature for the document library that enforces label creation.
Answer: D
38. You are creating a Microsoft Office SharePoint Server 2007 site. You have a document library that is
subject to an audit. You need to prevent relevant records from expiring during an ongoing audit. What
should you do?
A. Enable Record routing on the related Records Center site.
B. Create a hold for the audit and add all relevant documents.
C. Remove all users of the document library from the data reader role on the site configuration database.
D. Create an Information Management Policy feature that tracks audit information. Attach the policy to the
document library.
Answer: B
39. You are deploying a Microsoft Office SharePoint Server 2007 hierarchy of sites from a development
environment to a staging environment on the same server farm. The development site hierarchy
contains a corporate intranet site and departmental sites. Each departmental site contains subsites. You
need to recreate the hierarchy of development sites in the staging environment. What should you do?
A. Create and implement a site template.
B. Create and implement a portal site template.
C. Create an empty site collection on the server farm and use Page Publishing to duplicate pages.
D. Create copies of the site definition files, page layouts, master pages, and Web Part assemblies for each
site to be created.
Answer: B
40. Your company has a Microsoft Office SharePoint Server 2007 farm. The farm contains two site
collections named Draft and ProductionReady. You configure the farm to deploy content incrementally
from the Draft site collection to the ProductionReady site collection. You need to ensure that the content
authors have a higher priority for pages that they deploy to the ProductionReady site collection. What are
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
two possible ways to achieve this goal? (Each correct answer presents a complete solution. Choose two.)
A. Add the content authors to the Administrators site group.
B. Add the content authors to the Quick Deploy site group.
C. Execute the QuickDeploy method of the PublishingPage object that references the pages of the content
authors.
D. Set the Audience property of the PublishingPage object for the pages of the content authors to an
audience that contains the content authors.
Answer: BC
41. You create a Microsoft Office SharePoint Server 2007 site that contains a document library named
Reports. You create a Web Part that displays an audit trail for each document in the Reports library.
You need to audit the dates and types of each document that was printed by a specific user. Which two
actions should you perform? (Each correct answer presents part of the solution. Choose two.)
A. Implement the IRouter interface.
B. Implement the IPolicyFeature interface.
C. Implement the IProfileEventInterface interface.
D. Install a valid Policy Feature Definition into the Policy Feature Definition list.
E. Install a valid Policy Resource Definition into the Policy Feature Definition list.
Answer: BD
42. You create a Microsoft Office SharePoint Server 2007 portal site. The site contains a document
retention policy for request for proposal (RFP) documents. You need to customize the policy to ensure
that a notification is sent to each project manager when the RFP date expires. What should you do?
A. Implement a custom IPolicyFeature.OnCustomDataChange method that generates an e-mail message.
B. Implement a custom IPolicyFeature.ProcessListItemOnRemove method that generates an e-mail
message.
C. Create a document retention workflow that monitors the expiration date of RFP documents and
generates an e-mail message.
D. Extend the built-in policy feature definition to use a custom policy resource expiration action that
generates an e-mail message.
Answer: D
43. You install a Microsoft Office SharePoint Server 2007 server. The server contains three site collections.
One site collection uses both English and Turkish language variations. You need to redirect a user to the
selected language page. You also need to ensure that the language settings for other site collections
remain unaffected. Which two files should you customize for the site collection? (Each correct answer
presents part of the solution. Choose two.)
A. VariationLogs.aspx
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
B. VariationsLabelMenu.ascx
C. VariationsRootLanding.ascx
D. PublishingContentTypes.xml
E. VariationRootPageLayout.aspx
Answer: CE
44. Your company uses a portal site template to recreate site hierarchies. You need to add additional
sites to the hierarchy that is defined in the portal site template. What should you do?
A. In the Webtemp*.xml file, add a Template element that contains the site definitions for the new sites.
B. Add additional Web elements to the XML definition file of the portal site template.
C. Add additional Webtemp*.xml files to C:\Program Files\Common Files\Microsoft Shared Debug\Web
Server Extensions\12\TEMPLATE\1033\XML.
D. Update an existing site to include the new hierarchy and create a new site template on the Site Settings
page.
Answer: B
45. You create a Microsoft Office SharePoint Server 2007 site.
You are creating a custom field control that displays a video.
The custom field must perform the following tasks:
Render the control properly when the page is in display mode.
Enable a user to select an appropriate video for display when the page is in edit mode.
You need to ensure that the custom field meets the outlined requirements.
Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)
A. Create a field control that inherits from the RichLinkField class.
B. Create a field control that inherits from the BaseRichSelector class.
C. Create a field control that inherits from the SummaryLinkField class.
D. Create a field control that inherits from the RichTextHighlightTextbox class.
Answer: AB
46. Your companys sales database has two related tables named Customer and SalesOrders.
You define two entities named Customer and SalesOrders in a Business Data Catalog (BDC) definition.
The metadata for the BDC definition contains the following XML fragment. (Line numbers are included for
reference only.)
01 <Associations>
02 <Association>
03 <
04 Association
05 AssociationMethodEntityName="Customer"
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
06 AssociationMethodName="GetSalesOrdersForCustomer"
07 AssociationMethodReturnParameterName="SalesOrders"
08 Name="CustomerToSalesOrder"
09 IsCached="true"
10 >
11 ...
12 </Association>
13 </Associations>
You need to maintain the relationship between the entities.
Which XML fragment should you insert at line 11?
A. <SourceEntity Name="Customer" />
<DestinationEntity Name="CustomerToSalesOrder" />
B. <SourceEntity Name="Customer" />
<DestinationEntity Name="SalesOrders" />
C. <SourceEntity Name="Customer" />
<DestinationEntity Name="GetSalesOrdersForCustomer" />
D. <SourceEntity Name="Customer" />
<DestinationEntity Name="Customer" />
Answer: B
47. You are creating a Business Data Catalog (BDC) definition for a phone book application. The
application stores customer names in a table named People in a Microsoft SQL Server database. You
are defining an entity named People within the BDC definition. You need to ensure that the entity data
can be displayed in a Business Data List (BDL) Web Part. Which method should you define inside the
entity?
A. Finder
B. ViewAccessor
C. IDEnumerator
D. GenericInvoker
Answer: A
48. Your company stores product information in a Microsoft SQL Server 2005 database. You create a
Business Data Catalog (BDC) definition to search for product information within the database. You need
to ensure that incremental crawls can be performed in the database for indexing. What should you do?
A. Create a GenericInvoker method.
B. Create a Finder method.
C. Create a ViewAccessors method to return a different set of fields from the database.
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
D. Define an IDEnumerator method that has a return field that represents the last update time of the
database.
Answer: D
49. You create an application for a Microsoft Office SharePoint Server 2007 server. You create a List
Web Part that displays tasks in a project plan. The Web Part retrieves information from the Business Data
Catalog (BDC) definition. You need to ensure that when a user selects an item in the project list, the task
list for the project is displayed. You also need to ensure that users can update information in the task list.
Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)
A. Remove any definitions for the SpecificFinder method.
B. Create a property in the BDC definition that maps to the task ID.
C. Create a custom field for the list named task ID that holds the URL of the Web page.
D. Create an entity based on the BDC definition, and create a custom action that adds the value of the
current task ID property to a placeholder in the URL of the desired Web page.
Answer: BD
50. Your company uses an external CRM application that contains a business object named Customers.
The Customers object represents a table that contains customer details. You need to define the
Customers object in the Business Data Catalog (BDC) definition. What should you do?
A. Create an Entity element named Customers.
B. Create a Method element named GetCustomers.
C. Add a Parameter element that has the Direction property set to In and the Name property set to
@Customers.
D. Modify the Action element by adding an ActionParameter element that has the Name property set to
@Customers and the Index property set to 0.
Answer: A
51. You create a Microsoft Office SharePoint Server 2007 site. You also create a Business Data Catalog
(BDC) definition. The BDC definition accesses a product database that is stored on a Microsoft SQL Server
2005 server. You need to ensure that users can filter the product data by the ProductType field from
within the SharePoint server. What should you do?
A. Create a custom action that passes the product type to the BDC definition.
B. Create an IDEnumerator method that filters the data by the ProductType field.
C. Create a Filter Descriptor object that passes the ProductType field value as a parameter.
D. Create a type descriptor within the BDC definition for which ProductType is the type name.
Answer: C
52. Your Microsoft SQL Server 2005 database contains client records. You create a Business Data Catalog
(BDC) definition that allows you to view the client information. You create a Web Part that displays a map
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
of the location of the selected client. You need to ensure that you can create a custom action to link to
theWeb part. Which two actions should you perform? (Each correct answer presents part of the solution.
Choose two.)
A. Define a filter on the Client entity.
B. Declare an identifier for the Client entity.
C. Define a Finder object on the Client entity.
D. Define a SpecificFinder object on the Client entity.
Answer: BD
53. Your company uses an order management application that stores order information in a Microsoft SQL
Server 2005 database. You are creating a Business Data Catalog (BDC) definition on a Microsoft Office
SharePoint Server 2007 server. You need to ensure that the SharePoint server can index the order
information. Which two actions should you perform? (Each correct answer presents part of the solution.
Choose two.)
A. Define a Finder method in the BDC definition.
B. Define an IDEnumerator method in the BDC definition.
C. Define a ViewAccessors method in the BDC definition.
D. Define a SpecificFinder method in the BDC definition.
Answer: BD
54. You are creating a Business Data Catalog (BDC) definition for a bookstore application.
The application stores information about books in a Microsoft SQL Server 2005 database table named
Books.
You need to retrieve all the book names from the Books table.
Which XML fragment should you use?
A. <Entity Name="GetBooks">
<Properties>
<Property Name="Title" Type="System.String">
Books
</Property>
<Property Name="DefaultAction" Type="System.String">
SELECT * FROM Books
</Property>
</Properties>
</Entity>
B. <Method Name=" GetBooks ">
<Properties>
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
<Property Name=" RdbCommandText "
Type=" System.String ">SPGetBooks</Property>
<Property Name=" RdbCommandType "
Type=" System.String ">StoredProcedure</Property>
</Properties>
<!-- Additional information goes here -->
</Method>
</Methods>
C. <Parameter Direction="In" Name="GetBooks">
<TypeDescriptor Name="CommandText" TypeName=""System.String""
IdentifierName="SELECT * FROM Books" />
<TypeDescriptor TypeName="System.Int32" IdentifierName="Books"
AssociatedFilter="ID" Name="BookId" />
</Parameter>
D. <Action Name="GetBooks" Position="1">
<ActionParameters>
<ActionParameter Name="CommandText" Index="0">
SELECT * FROM Books
</ActionParameter>
<ActionParameter Name="CommandType" Index="0">
SQLQuery
</ActionParameter>
</ActionParameters>
</Action>
Answer: B
55. You have two Microsoft Office SharePoint Server 2007 site collections named Staging and Production.
The Staging site collection runs on Server A. The Production site collection runs on Server B. Server A and
Server B are located on separate networks. You need to write a script that replicates content from the
Staging site collection to the Production site collection. What should you do ? (To answer, move the
appropriate three actions from the list of actions to the answer area and arrange them in the correct order.)
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
Answer:
56. You create a Microsoft Office InfoPath workflow task form for users. The form contains all the details of
each task. You need to store the value of the Comments field in a variable named UserInput when each
user submits the form. Which code segment should you use?
A. String UserInput = new String();
SPWorkflowTaskProperties wpTProps =
new SPWorkflowTaskProperties();
...
UserInput = wpTProps.ExtendedProperties["Comments"].ToString();
B. SPWorkflowActivationProperties wpAProps =
new SPWorkflowActivationProperties();
...
object UserInput = wpAProps.Item.Fields["Comments"];
C. SPWorkflowActivationProperties wpAProps =
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
new SPWorkflowActivationProperties();
XmlSerializer serializer = new XMLSerializer(typeof(MyFields));
xmlTextReader reader = new XMLTextReader
(new System.IO.StringReader(wpAProps.InitiationData));
MyFields fields = serializer.Deserialize(reader);
String UserInput = fields.Users[i].Comments;
D. XmlSerializer serializer = new XmlSerializer(typeof(InitForm));
XmlTextReader reader = new XmlTextReader
(new System.IO.StringReader(workflowProps.InitiationData));
InitForm initform = (InitForm) serializer.Deserialize(reader);
String UserInput = initform.comments;
Answer: A
57. 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 void RetrieveColleagues(ServerContext Cntxtobj)
{
...
SPSite site = new SPSite("http: //servername/sites/site1");
UserProfileManager profileManager =
new UserProfileManager( Cntxtobj );
UserProfile profile =
profileManager.GetUserProfile("abc\\UserA");
Colleague[] colleagues = profile.Colleagues.GetItems();
Site.Dispose();
...
}
B. private void RetrieveColleagues(ServerContext Cntxtobj)
{
...
SPSite site = new SPSite("http: //servername/sites/site1");
ServerContext context = ServerContext.GetContext(site);
UserProfileManager profileManager =
new UserProfileManager(context);
UserProfile profile =
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
profileManager.GetUserProfile("abc\\UserA");
UserProfile[] colleagues =
profile.Colleagues.GetCommonColleagues();
Site.Dispose();
...
}
C. private void RetrieveColleagues(ServerContext Cntxtobj)
{
...
SPSite site = new SPSite("http: //servername/sites/site1");
ServerContext context = ServerContext.GetContext(site);
UserProfileManager profileManager =
new UserProfileManager(context);
UserProfile profile =
profileManager.GetUserProfile("abc\\UserA");
ColleagueManager manager = new ColleagueManager(profile);
UserProfile[] profiles = manager.GetColleaguesOfColleagues();
Site.Dispose();
...
}
D. private void RetrieveColleagues(ServerContext Cntxtobj)
{
...
SPSite site = new SPSite("http: //servername//sites/site1");
ServerContext context = ServerContext.GetContext(site);
AudienceManager audMgr = new AudienceManager(context);
SPWeb web = site.AllWebs ["mainpage"] ;
ArrayList audienceIDNames =
audMgr .GetUserAudienceIDs("domain\\userA", true, web);
Site.Dispose();
...
}
Answer: A
58. You are creating a Microsoft Office SharePoint Server 2007 site. You create a Microsoft WinForms
application to enter information about a user.
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
You write the following code segment. (Line numbers are included for reference only.)
01 static void AddUser (string[] user_name )
02 {
03 using (SPSite site =
04 new SPSite("http://sitename/"))
05 {
06 ServerContext context =
07 ServerContext.GetContext(site);
08 UserProfileManager profileManager =
09 new UserProfileManager(context);
10 ...
11 }
12 }
You need to add a user profile to the profile store.
Which code segment should you insert at line 10?
A. UserProfile u = profileManager.GetUserProfile(user_name);
...
B. UserProfileManager profileManager =
new UserProfileManager(context);
UserProfile u = profileManager.GetUserProfile(user_name);
...
u.Commit ();
C. string user_name = "<UserProfile>";
...
user_name += userProfile + user_name;
...
user_name += "</UserProfile>";
profileManager.CreateUserProfile ( user_name );
D. UserProfile u = profileManager.CreateUserProfile(user_name);
...
u.Commit ();
Answer: D
59. You are creating a Business Data Catalog (BDC) definition for a bookstore application.
The application stores information about books in a Microsoft SQL Server 2005 database table named
Books.
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
You need to retrieve all the book names from the Books table.
Which XML fragment should you use?
A. <Entity Name=" GetBooks ">
<Properties>
<Property Name="Title" Type=" System.String ">
Books
</Property>
<Property Name=" DefaultAction " Type=" System.String ">
SELECT * FROM Books
</Property>
</Properties>
</Entity>
B. <Method Name=" GetBooks ">
<Properties>
<Property Name=" RdbCommandText "
Type=" System.String "> SPGetBooks </Property>
<Property Name=" RdbCommandType "
Type=" System.String "> StoredProcedure </Property>
</Properties>
<!-- Additional information goes here -->
</Method>
</Methods>
C. <Parameter Direction="In" Name=" GetBooks ">
< TypeDescriptor Name=" CommandText " TypeName ="" System.String ""
IdentifierName ="SELECT * FROM Books" />
< TypeDescriptor TypeName ="System.Int32" IdentifierName ="Books"
AssociatedFilter ="ID" Name=" BookId " />
</Parameter>
D. <Action Name=" GetBooks " Position="1">
< ActionParameters >
< ActionParameter Name=" CommandText " Index="0">
SELECT * FROM Books
</ ActionParameter >
< ActionParameter Name=" CommandType " Index="0">
SQLQuery
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
</ ActionParameter >
</ ActionParameters >
</Action>
Answer: B
60. You are creating a Microsoft Office SharePoint Server 2007 site.
The site has five audiences. A user might belong to more than one of the five audiences.
You need to obtain a list of audience names for the current user.
Which code segment should you use?
A. private void ListAudienceNames()
{
...
AudienceLoader al = AudienceLoader.GetAudienceLoader();
AudienceManager am = am.CurrentServerContext;
ArrayList audiences = al.GetUserAudienceIDs(true);
foreach (object audience in audiences)
{
Audience a = am.Audiences[(Guid)audience];
System.Web.HttpContext.Current.Response.Write
("Audience: " + audience.ToString());
}
...
}
B. private void ListAudienceNames()
{
...
using (SPWeb web = SPWeb.OriginalBaseUrl )
{
SPUser user = web.CurrentUser;
AudienceManager am = am.CurrentServerContext;
AudienceCollection audiences = am.Audiences;
foreach (Audience a in audiences)
{
if (a.IsMember(user.LoginName))
System.Web.HttpContext.Current.Response.Write
("Audience: " + AudienceName);
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
}
}
...
}
C. private void ListAudienceNames()
{
...
string user = WindowsIdentity.GetCurrent().Name;
SPWeb web = SPWeb.OriginalBaseUrl;
AudienceManager am = am.CurrentServerContext;
ArrayList audList = am.GetUserAudienceIDs(user, false, web);
foreach (object obj in audList)
{
Audience a = (Audience)obj;
System.Web.HttpContext.Current.Response.Write
("Audience: " + a.AudienceName);
}
...
}
D. private void ListAudienceNames()
{
...
using (SPWeb web = SPWeb.OriginalBaseUrl )
{
string user = web.CurrentUser.Name;
AudienceManager am = am.CurrentServerContext;
foreach (Audience a in am.Audiences)
{
if (am.IsMemberOfAudience(user, a.AudienceName))
System.Web.HttpContext.Current.Response.Write
("Audience: " + a.AudienceName);
}
}
...
}
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
Answer: BD
61. You are creating a Microsoft Office SharePoint Server 2007 site. An audience named Purchasing
contains all the users in a Microsoft Active Directory group.
You need to display the name of each member of the audience.
Which code segment should you use?
A. AudienceManager audManager = new AudienceManager();
Audience aud = audManager.Audiences["Purchasing"];
ArrayList members = aud.GetMembership();
foreach (object obj in members) {
UserInfo user = (UserInfo)obj;
System.Web.HttpContext.Current.Response.Write("User: {0}" +
user.PreferredName);
}
B. AudienceManager audManager = new AudienceManager();
AudienceCollection members = audManager.Audiences;
foreach (Audience obj in members) {
string user =
System.Security.Principal.WindowsIdentity.GetCurrent().Name;
if (obj.IsMember(user))
System.Web.HttpContext.Current.Response.Write("User: {0}" + user);
}
C. AudienceManager audManager = new AudienceManager();
AudienceCollection audCol = audManager.Audiences;
Audience aud = audManager.Audiences["Purchasing"];
ArrayList members = aud.GetMembership();
foreach (object obj in audCol) {
UserInfo user = (UserInfo)members[audCol.Count];
System.Web.HttpContext.Current.Response.Write("User: {0}" +
user.PreferredName);
}
D. Audience_List members = new Audience_List();
AudienceManager audManager = new AudienceManager();
Audience aud = audManager.Audiences["Purchasing"];
members.GetData();
members.DataBind();
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
Answer: A
62. You create an application for a Microsoft Office SharePoint Server 2007 server. You need to write
code that retrieves all users for an audience named Audience1. Which code segment should you use?
A. AudienceManager audMgr = new AudienceManager();
AudienceCollection audiences = audMgr.Audiences;
Audience audience1 = audiences["Audience1"];
B. AudienceManager audMgr = new AudienceManager();
ArrayList membershipList =
audMgr.Audiences["Audience1"].GetMembership();
C. AudienceManager audMgr = new AudienceManager();
AudienceCollection audience1 = audMgr.Audiences;
D. SPSite site = new SPSite("http: //servername//sites/site1");
ServerContext context = ServerContext.GetContext(site);
AudienceManager audMgr = new AudienceManager(context);
SPWeb web = site.AllWebs[0];
ArrayList audienceIDNames =
audMgr.GetUserAudienceIDs("Audience1", true, web);
Answer: B
63. You are creating a Microsoft Office SharePoint Server 2007 application to increase the search capability
of five site collections that belong to a single farm.
You need to retrieve all available search contexts for the Web site collection on which the application is
initiated.
Which code segment should you use?
A. string strSite = "http: //yourSiteName" SearchContext
srchContext = SearchContext.GetContext(new SPSite(strSite));
B. SearchContext srchContext = SearchContext.
GetContext(ServerContext.Current);
C. SearchService searchservice = new
SearchService("Search_SSPS Name", SPFarm.Local);
SearchContext srchContext = SearchContext.
GetContext(searchservice.Id.ToString());
D. WASearchWebService1.SPSSearchWS.QueryService searchWebService
new WASearchWebService1.SPSSearchWS.QueryService();
searchWebService.Url = " http: // myportal";
Sea rchContext srchContext = SearchContext.GetContext(new
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
SPSite(searchWebService.ToString()));
Answer: B
64. You are creating a Microsoft Office SharePoint Server 2007 Web Part.
You write the following code segment. (Line numbers are included for reference only.)
01 public Button cmdCrawl;
02 protected override void CreateChildControls()
03 {
04 cmdCrawl = new Button();
05 cmdCrawl.Click += new EventHandler(cmdCrawl_Click);
06 cmdCrawl.Text = "Update Index";
07 }
08 public void cmdCrawl_Click(object sender, EventArgs e)
09 {
10 Microsoft.Office.Server.Search.Administration.Content sspContent =
11 new Microsoft.Office.Server.Search.Administration.Content
12 (SearchContext.Current);
13 ...
14 }
You need to ensure that the Web Part initiates a search crawl of a scope named Patents.
Which code segment should you insert at line 13?
A. ContentSourceCollection sspContentSources =
sspContent.ContentSources;
ContentSource cs = sspContentSources["Patents"];
cs.StartFullCrawl();
B. ContentSourceCollection sspContentSources =
sspContent.ContentSources;
Uri TargetScope = new
Uri("http: //myportal/SearchCenter/Search.aspx?Scope=Patents");
sspContentSources.Update(TargetScope);
C. ContentSourceCollection sspContentSources =
sspContent.ContentSources;
CrawlMappingCollection crawlmappings =
sspContentSources.Parent.CrawlMappings;
Uri ResultsPage = new Uri(this.Context.ToString());
Uri TargetScope = new
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
Uri("http: //myportal/SearchCenter/Search.aspx?Scope=Patents");
crawlmappings.Create(ResultsPage, TargetScope);
D. ContentSourceCollection sspContentSources =
sspContent.ContentSources;
ContentSource cs = sspContentSources["Patents"];
cs.Update();
Answer: A
65. You are creating a Microsoft Office SharePoint Server 2007 application that uses the Search service.
You need to ensure that the search results are based on an existing keyword. Which code segment
should you use?
A. private void keywordQueryExecute(string strQueryText) {
...
KeywordQuery kRequest =
new KeywordQuery(ServerContext.Current);
kRequest.QueryText = strQueryText;
kRequest.ResultTypes |= ResultType.RelevantResults;
ResultTableCollection resultTbls = kRequest.Execute();
...
}
B. private void keywordQueryExecute(string strQueryText) {
...
KeywordQuery kRequest =
new KeywordQuery(ServerContext.Current);
kRequest.QueryText =
"SELECT * FROM scope() WHERE keyword = " + strQueryText;
kRequest.ResultTypes |= ResultType.RelevantResults;
ResultTableCollection resultTbls = kRequest.Execute();
...
}
C. private void keywordQueryExecute(string strQueryText) {
...
KeywordQuery kRequest =
new KeywordQuery(ServerContext.Current);
kRequest.QueryText =
"SELECT * FROM scope(" + strQueryText + ")";
Testinside
TestInside Help You Pass Any IT Exam http://www.testinside.com/
kRequest.ResultTypes |= ResultType.RelevantResults;
ResultTableCollection resultTbls = kRequest.Execute();
...
}
D. private void keywordQueryExecute(string strQueryText) {
...
KeywordQuery kRequest =
new KeywordQuery(ServerContext.Current);
kRequest.QueryText =
"SELECT " + strQueryText + " FROM scope()";
kRequest.ResultTypes |= ResultType.RelevantResults;
ResultTableCollection resultTbls = kRequest.Execute();
...
}
Answer: A

轉(zhuǎn)載于:https://www.cnblogs.com/Little-Li/archive/2010/04/14/1711944.html

總結(jié)

以上是生活随笔為你收集整理的微软MCP之SharePoint2007考试试题(Microsoft 70-542)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。

在线精品一区二区 | 夜夜爽天天爽 | 国内精品久久久久久久影视简单 | 96精品视频 | 精品av在线播放 | 天天天射 | 欧美精品免费在线 | 亚洲年轻女教师毛茸茸 | 成人免费观看视频网站 | 日韩精品免费 | 91.精品高清在线观看 | 欧美国产日韩在线观看 | 国产一区在线视频观看 | 狠狠狠狠狠狠天天爱 | 9久久精品| 97视频在线免费观看 | 91丨精品丨蝌蚪丨白丝jk | 黄色精品国产 | 免费在线观看成人av | av永久网址 | av在线电影播放 | 最新国产精品久久精品 | 日韩成人黄色 | 天天操天天添 | 在线观看视频在线观看 | 91av视频导航 | 免费在线播放视频 | 亚洲电影免费 | 天堂视频中文在线 | 99色99| 国产色小视频 | 黄色网在线免费观看 | 成人黄色毛片视频 | 国产又粗又长的视频 | 丁香亚洲| 国产淫片 | 九九视频这里只有精品 | 国产一线天在线观看 | 亚洲精品国产区 | 黄色三级网站在线观看 | 色噜噜狠狠狠狠色综合久不 | 日韩免费视频一区二区 | 人人精品| 六月丁香婷婷久久 | 亚洲成人黄色av | 麻花豆传媒mv在线观看 | 91成熟丰满女人少妇 | 男女视频久久久 | 亚洲精品高清视频在线观看 | 黄色国产高清 | 美女视频永久黄网站免费观看国产 | 欧美色久 | 欧美亚洲国产一卡 | 精品在线视频播放 | 久在线观看视频 | 综合婷婷| 在线一二三区 | 久久久久9999亚洲精品 | 免费观看91 | 国产在线观看你懂得 | 一二三区av | 日韩在线免费观看视频 | 国产美女久久久 | 亚洲精品日韩在线观看 | 三级黄色大片在线观看 | 午夜精品一区二区三区在线视频 | 色在线最新 | 在线观看91精品国产网站 | 五月天久久 | 亚洲国产精久久久久久久 | 日韩精品1区2区 | 日韩精品一区二区三区免费视频观看 | 亚洲午夜精品久久久久久久久 | 狠狠躁夜夜av| 久久久久国产精品午夜一区 | 99久热在线精品视频成人一区 | 精品一区二区综合 | 日韩毛片在线播放 | 中文字幕有码在线播放 | 高清av免费一区中文字幕 | 国产高清成人在线 | 国产精品99久久免费观看 | 色射色| 午夜视频在线观看一区二区三区 | av免费看在线 | 久久不卡国产精品一区二区 | 深爱婷婷久久综合 | 久久久在线免费观看 | 欧美日韩高清一区 | 91aaa在线观看 | 免费一级片观看 | 国产福利在线不卡 | 色播五月激情综合网 | 欧美日韩国语 | 亚洲激情在线视频 | 片网站| 亚洲精品一区二区精华 | 日韩专区视频 | 国产成人精品一区在线 | 久久在现视频 | 国产欧美精品xxxx另类 | 在线亚洲精品 | 欧美嫩草影院 | 91九色在线视频观看 | 国产中文在线播放 | 久久精品国产一区二区 | 一二三四精品 | 狠狠干夜夜爱 | 日韩在线国产精品 | 亚洲精品动漫成人3d无尽在线 | 少妇自拍av| 国产精品一区二区三区99 | 伊人伊成久久人综合网小说 | 黄色大全免费网站 | 婷婷在线网 | 中文字幕精品一区二区三区电影 | 成年人黄色大片在线 | 国产最新视频在线 | 九九交易行官网 | 亚洲国产午夜 | 在线观看视频免费播放 | 国产在线精品播放 | 午夜电影久久久 | 欧美日韩精品久久久 | 国产精品美女久久久网av | 不卡视频一区二区三区 | 国产精品一区二区av | 欧美最新大片在线看 | 五月天丁香综合 | 69av视频在线 | 色婷婷亚洲婷婷 | 欧美aaa视频 | 久久国产露脸精品国产 | 黄色小说视频网站 | 一区二区影院 | 欧美经典久久 | 国产专区在线视频 | 久久久国产精品亚洲一区 | 欧美日韩不卡一区二区三区 | 久久久精品 | 国产精品久久久久av福利动漫 | 午夜国产一区二区三区四区 | 国产精品尤物视频 | 久草网首页 | 日韩最新中文字幕 | 自拍超碰在线 | 欧美va天堂va视频va在线 | 精品人妖videos欧美人妖 | 日韩福利在线观看 | 97国产超碰 | 欧美一级欧美一级 | 久久人人爽人人爽人人片av软件 | 在线91视频 | 成人毛片一区二区三区 | 一区二区精品在线观看 | 激情综合网色播五月 | 免费看污网站 | 久久艹艹 | 久久99国产精品二区护士 | 国产精品久久久久久久久软件 | 婷婷中文字幕综合 | 91插插视频 | 成片视频免费观看 | 久久99久久99 | 日韩精品久久一区二区 | 97av.com| 国产一区免费看 | 亚洲一区二区黄色 | 久久精品五月 | 天天天天天天天操 | 麻豆影视在线观看 | 黄色在线免费观看网站 | 国产美女免费视频 | 国产精品第2页 | 欧美激情综合色综合啪啪五月 | 天天爽夜夜爽人人爽一区二区 | 黄色大片中国 | 国产精品乱码在线 | 天天操天天干天天摸 | 精品色综合 | www.香蕉| 91av电影在线观看 | 亚州性色 | 你操综合 | 中文字幕免费观看全部电影 | 亚洲视屏 | 国产青春久久久国产毛片 | 欧美日韩国产在线 | 女人18毛片a级毛片一区二区 | 色综合色综合色综合 | 久久精品视频观看 | 玖玖在线看 | 99久久久成人国产精品 | 国产糖心vlog在线观看 | 婷婷精品国产欧美精品亚洲人人爽 | 国产午夜精品久久久久久久久久 | 国产精品免费小视频 | 婷婷综合导航 | av片在线观看 | 亚洲精品五月天 | www久久久 | 五月天激情电影 | 亚洲国产精品久久久久婷婷884 | 丁香五月亚洲综合在线 | 国产精品18久久久久久久久 | 成人视屏免费看 | 日韩成人一级大片 | 精品在线观看一区二区 | 69夜色精品国产69乱 | 热久久影视 | 91精品久久香蕉国产线看观看 | www日韩高清| 国产精品免费久久久久影院仙踪林 | 国产精品国产亚洲精品看不卡 | 人人澡超碰碰97碰碰碰软件 | 一区二区三区在线免费 | 成人丁香花 | 不卡精品视频 | 免费黄色在线网站 | 日韩在线国产精品 | 久久精品中文字幕免费mv | 亚洲aⅴ久久精品 | 日韩大片免费观看 | 欧美日在线观看 | 久久免费视频这里只有精品 | 深爱激情五月网 | 国产成人免费观看久久久 | 播五月综合 | 国产91精品看黄网站在线观看动漫 | 中文字幕 影院 | 国产中文字幕精品 | 久久久久色 | 精品久久久久一区二区国产 | adc在线观看 | 免费av看片| 激情导航| 在线欧美中文字幕 | 天天射天天舔天天干 | 黄色动态图xx| 日本高清中文字幕有码在线 | www.久久色.com | 日韩中文字幕在线看 | 欧美一级片在线免费观看 | 久一久久 | 成人黄色在线 | 国产精品久久久久久久久久免费 | 激情网婷婷| 久久免费视频在线观看30 | 国产精品九九久久99视频 | 国产成人免费 | 91福利区一区二区三区 | 欧美激情h | 97超视频免费观看 | 99中文字幕视频 | 午夜精品视频免费在线观看 | 久草在线视频在线观看 | 亚洲成a人片在线观看中文 中文字幕在线视频第一页 狠狠色丁香婷婷综合 | 国产第一二区 | 亚洲国产成人在线播放 | 天天射狠狠干 | 91精品国产综合久久久久久久 | 91视频国产高清 | 二区精品视频 | 久久久不卡影院 | 国产一区国产二区在线观看 | 91精品视频一区二区三区 | 日韩在线视频在线观看 | 久久精品99北条麻妃 | 亚洲情婷婷 | 久久精品aaa | 波多野结衣视频在线 | 999久久久免费视频 午夜国产在线观看 | 一区二区三区免费在线观看视频 | 国产精品久久艹 | 欧美日韩中文字幕视频 | 免费在线激情电影 | 免费福利在线播放 | 免费看黄色大全 | 日日夜夜天天操 | 91视频在线观看免费 | 天堂av在线网站 | 人人草天天草 | 91桃色免费视频 | 蜜臀av一区二区 | 97超碰在线免费 | 成人免费在线播放 | 一级黄色片在线免费观看 | 日本在线观看中文字幕 | 亚洲国产大片 | 91在线观看视频 | 色偷偷888欧美精品久久久 | 在线观看成人毛片 | 国产亚洲成av人片在线观看桃 | 日韩三区在线观看 | 国内成人av | 久久久九色精品国产一区二区三区 | 国产精品手机在线 | 日韩亚洲国产精品 | 五月天激情开心 | 欧美日韩一区久久 | 日韩在线播放欧美字幕 | 在线观看欧美成人 | 亚洲精品资源在线观看 | 九九热在线视频免费观看 | 综合激情久久 | 国产成人黄色在线 | 亚洲性少妇性猛交wwww乱大交 | 欧美亚洲国产精品久久高清浪潮 | 三级黄色欧美 | 国产精品久久久久久五月尺 | 欧美日韩久 | 国产97视频在线 | 国产精品久久久免费 | 2021国产精品| 久久视频免费 | 丁香五月网久久综合 | 国产资源免费在线观看 | 女人18毛片a级毛片一区二区 | 天堂av影院 | 成人黄色在线观看视频 | 久久综合加勒比 | 91在线看网站 | 久久综合精品一区 | 91社区国产高清 | 日韩精品一区二区三区第95 | 狠狠艹夜夜干 | 91九色蝌蚪视频在线 | 国产成人精品一区二区三区在线观看 | av三级在线免费观看 | 五月天网页| 国产婷婷vvvv激情久 | 天堂网一区二区 | 亚洲精品国偷拍自产在线观看蜜桃 | 精品国产久 | av中文字幕免费在线观看 | 久久这里只有精品23 | 一区二区三区免费播放 | 一区二区电影网 | 国产精品 国产精品 | 国产无遮挡又黄又爽在线观看 | 久久精品播放 | 日韩在线第一区 | 中文亚洲欧美日韩 | 韩日视频在线 | 最新日本中文字幕 | 综合激情网... | 国产日韩精品在线 | 国产在线不卡精品 | 成人免费网站在线观看 | 国产小视频在线免费观看视频 | 一级片视频在线 | 人人爱夜夜操 | 98福利在线| 精品国产一区二 | 国产又粗又猛又黄又爽 | 最近中文字幕免费av | 综合网五月天 | 久久网页 | 欧美精品乱码久久久久久 | 亚洲成av人片在线观看无 | 干天天| 在线观看亚洲精品视频 | 在线看成人| 四虎最新域名 | 亚洲精品99 | 亚洲高清视频在线 | 色婷婷欧美 | 成人免费视频网址 | 国产又粗又硬又长又爽的视频 | 激情久久久 | 日韩欧美69 | 成人a在线观看高清电影 | 激情开心站 | www.五月天婷婷 | 三级动图 | 最近2019中文免费高清视频观看www99 | 天天色天天搞 | 99热最新地址 | 婷婷开心久久网 | 婷婷久久五月 | 欧美巨大荫蒂茸毛毛人妖 | 久综合网 | 日韩免费观看一区二区三区 | 欧美成人影音 | 国产视频中文字幕 | 91日韩精品| 美女免费网站 | 在线免费中文字幕 | 中文字幕不卡在线88 | 人人爱天天操 | 中文字幕免费播放 | 亚洲国产欧美一区二区三区丁香婷 | 国产视频1区2区3区 久久夜视频 | 98福利在线 | 在线观看一区 | 精品国产不卡 | 欧美在线视频一区二区三区 | 九九热精品视频在线观看 | 美女av电影| 国产一级片久久 | 欧美日韩一区久久 | 色视频在线看 | 日韩高清在线观看 | 97精品国产一二三产区 | 精品国产一区二区三区四 | 最新日韩精品 | 日韩免费一二三区 | 69xxxx欧美| 国产精品久久久久久久99 | 国产日韩欧美在线 | aaa黄色毛片| 国产免费视频一区二区裸体 | 日韩久久一区二区 | 久久99这里只有精品 | 91插插插免费视频 | 亚洲人成在线观看 | 国产福利91精品 | 日批视频 | 日本性生活一级片 | 九九免费在线观看视频 | 日本最大色倩网站www | 91色网址 | 国产精品久久久99 | 色资源网在线观看 | 亚洲精品国产精品国产 | 怡红院成人在线 | 国产不卡在线播放 | 超碰午夜| 91视频 - 88av| 欧美 高跟鞋交 xxxxhd | 九七在线视频 | 久久久免费精品视频 | www.夜夜操| av中文字幕在线电影 | 热99在线| 中文字幕在线不卡国产视频 | 99视频在线精品国自产拍免费观看 | 麻豆91精品91久久久 | 全黄色一级片 | 黄色高清视频在线观看 | 国产一区高清在线观看 | 中文字幕频道 | 亚洲欧洲中文日韩久久av乱码 | 99久久www免费| 精品人妖videos欧美人妖 | 国产无吗一区二区三区在线欢 | 激情网五月婷婷 | 一区二区三区精品在线 | 亚洲永久精品在线 | 亚洲狠狠婷婷综合久久久 | 日本中文字幕在线电影 | 精品久久久久久久久久 | 国产成人无码AⅤ片在线观 日韩av不卡在线 | 精品xxx| 久爱综合 | 中文字幕av在线不卡 | 欧美性成人 | 色综合久久久久久久久五月 | 色a在线观看 | 手机av看片 | 国产成人一级电影 | 99精品国产成人一区二区 | 久草在线免费在线观看 | 欧美综合在线观看 | 国产亚洲精品久久久久久无几年桃 | 干 操 插| 伊人久久精品久久亚洲一区 | 国产在线观看高清视频 | 九九热在线观看视频 | 国产精品 欧美 日韩 | 久久视频网址 | 啪啪凸凸 | 久草资源在线 | 精品国产一区二区三区男人吃奶 | 欧美日韩国产一区二区三区在线观看 | 中文字幕在线观看第三页 | 国产精品久久久久久影院 | 亚洲黄色小说网 | 亚洲欧美视屏 | 久久久久久久久久久国产精品 | 最新日韩视频在线观看 | 色五月激情五月 | 天天干,天天射,天天操,天天摸 | 成人国产一区二区 | 精品国精品自拍自在线 | 最新日韩中文字幕 | 中文字幕第一页av | 美女一级毛片视频 | 日韩啪啪小视频 | 久久久久久久99 | 99精品久久精品一区二区 | 黄网站色 | 精品xxx | 欧美国产日韩一区二区 | www.日日日.com | 24小时日本在线www免费的 | 色久综合 | 中文字幕在线视频国产 | 麻豆免费看片 | 天天爱天天射天天干天天 | 日本精品视频在线观看 | 久香蕉 | 四虎亚洲精品 | 国产精品福利在线播放 | 国产黄网站在线观看 | 国产精品毛片网 | 在线va视频 | 国产精品久久久久aaaa九色 | 中文字幕在线专区 | 久久高清国产 | 久久久精品国产一区二区三区 | 日韩亚洲精品电影 | 久久草在线免费 | 免费高清看电视网站 | 国产在线日本 | 久久伊人热 | 免费看一级一片 | 日韩欧美视频在线免费观看 | 国产黄色电影 | 狠狠色丁香九九婷婷综合五月 | 久久福利在线 | 波多野结依在线观看 | 在线视频欧美日韩 | 久久综合欧美 | www色com | 国产黄 | 欧美日韩国产一二 | 成人教育av | 日韩精品一区电影 | 久久久久久久综合色一本 | 日韩电影在线观看一区二区三区 | 久久久精品 一区二区三区 国产99视频在线观看 | 97超碰国产在线 | 成人一级| 久久这里只有精品23 | 国产中文字幕精品 | 国产一区二区在线免费视频 | 亚洲免费一级 | 高清免费在线视频 | 麻豆首页 | 国产剧情在线一区 | 五月天最新网址 | 国产精品普通话 | 999成人精品| 欧美性粗大hdvideo | 国产精品久久综合 | 在线欧美中文字幕 | 久久综合色婷婷 | 亚洲毛片久久 | 婷婷综合伊人 | 国产一区二区在线免费观看 | 五月激情久久 | 欧美日韩精品久久久 | 日韩av电影中文字幕在线观看 | 中文字幕 二区 | 日本精品视频一区二区 | av不卡免费在线观看 | 国产小视频你懂的 | 中文字幕在线观看完整 | 色网站黄 | 精品中文字幕视频 | 99精品黄色片免费大全 | 91av蜜桃 | 国产免费二区 | 国产精品色视频 | 国内免费久久久久久久久久久 | 国产视频精品免费播放 | 国产玖玖视频 | 日韩在线第一 | 超碰在线观看99 | 日韩资源在线观看 | 中文字幕精品www乱入免费视频 | 亚洲精品日韩在线观看 | 欧美激情va永久在线播放 | 免费a级毛片在线看 | 500部大龄熟乱视频使用方法 | 欧美国产三区 | 欧美成人性网 | 国产1级视频 | 中文字幕av专区 | 亚洲视频精选 | 99精品热视频只有精品10 | 91福利专区| 久久美女电影 | 欧美性黄网官网 | 99免费在线视频 | 久久精品99北条麻妃 | 美女天天操 | 丁香激情综合久久伊人久久 | 国产又粗又硬又长又爽的视频 | 精品免费视频 | 91视频91自拍 | 在线观看视频在线 | 久久一区二区三区国产精品 | 99久久这里只有精品 | 亚洲欧美经典 | 欧美一级特黄aaaaaa大片在线观看 | 日韩视频在线观看免费 | 国内精品免费 | 国产精品自在线拍国产 | 天天操操 | 国产黄在线看 | 亚洲国产美女精品久久久久∴ | 久久99热久久99精品 | 天堂麻豆 | 久久久久免费精品视频 | 久久视频这里只有精品 | a久久久久久 | 日韩三级中文字幕 | 成人h视频在线播放 | 在线观看亚洲国产 | 亚洲精品小视频 | 国内精品久久久久影院优 | 亚洲经典视频 | 99r在线精品 | 精品久久久久久国产偷窥 | 欧洲在线免费视频 | 亚洲成人av在线 | 免费看毛片网站 | av在线超碰 | 一区二区欧美日韩 | 久久av观看| 7777精品伊人久久久大香线蕉 | 黄色毛片网站在线观看 | 91亚洲在线| 久久精品精品电影网 | 亚洲欧美国产精品久久久久 | 日韩精品免费在线观看视频 | 日韩高清精品免费观看 | 超碰国产在线观看 | 伊人色播 | 一区二区三区久久 | 99热这里只有精品8 久久综合毛片 | 2024国产精品视频 | 日韩欧美高清一区二区三区 | 中文字幕a在线 | 国产无遮挡猛进猛出免费软件 | 99r在线观看 | 天天操天天操天天干 | 国产精品久久嫩一区二区免费 | 91大片网站 | 不卡的av在线 | 免费热情视频 | 欧美a级在线免费观看 | 成年人看片网站 | 中文字幕亚洲欧美 | 免费看一级特黄a大片 | 麻豆精品视频在线观看免费 | 97**国产露脸精品国产 | 久久视精品 | 成人综合婷婷国产精品久久免费 | 在线观看网站av | 国产专区在线看 | 日韩精品一二三 | 国产超碰在线观看 | 色噜噜狠狠狠狠色综合久不 | 午夜精品中文字幕 | 国产小视频在线免费观看 | 91精品国产综合久久福利不卡 | 久久国产一区二区三区 | 久久国色夜色精品国产 | www·22com天天操 | 免费一级日韩欧美性大片 | 成人a级免费视频 | 黄色毛片视频免费 | 婷婷在线免费观看 | 97视频亚洲| 日韩国产欧美在线播放 | 国产视频一区在线免费观看 | 国产亚洲成人精品 | 亚洲乱码在线观看 | 超碰人人在线观看 | 激情伊人五月天 | 亚洲国产成人在线播放 | 国产一区二区不卡视频 | 日日爱999| 色婷婷狠 | 在线黄频 | 日韩簧片在线观看 | 亚洲精品美女在线 | 成人a v视频 | 国产精品美女久久久久久 | 国产一级片免费视频 | 国产视频在线免费 | 99这里只有久久精品视频 | 亚洲午夜精品在线观看 | 欧美激情综合五月色丁香 | 美女网站在线看 | 久久国产日韩 | 亚洲国产精久久久久久久 | 精品一区二区日韩 | 五月天,com | 91精品视频在线免费观看 | 九九电影在线 | 中文字幕亚洲欧美日韩 | 激情网五月婷婷 | 久久久久久久久久亚洲精品 | 亚在线播放中文视频 | 国产精品刺激对白麻豆99 | 亚洲成人黄色av | 91精品国产自产在线观看永久 | 日本二区三区在线 | 国产精品乱码一区二区视频 | 久久人人爽爽人人爽人人片av | 免费观看9x视频网站在线观看 | 欧美激情综合色综合啪啪五月 | 91麻豆视频 | 日本中文字幕在线免费观看 | 激情影院在线观看 | 国产乱对白刺激视频在线观看女王 | 又爽又黄又刺激的视频 | 欧美少妇的秘密 | 精品在线播放视频 | 人人看人人| 婷婷久久综合网 | 国产亚洲视频中文字幕视频 | 日日成人网 | 97av视频 | 日韩高清观看 | 国产精品嫩草影院9 | 午夜国产福利视频 | 伊人五月天综合 | av一区二区三区在线观看 | 狠狠干我 | 五月婷久久 | 欧美夫妻生活视频 | 中文字幕永久在线 | 亚洲激情视频在线 | 欧美少妇xx| 网站你懂的 | 手机看片99 | 久久久国产电影 | 色综合激情网 | 99久久www免费 | 东方av在 | 五月婷婷六月丁香 | 天天夜夜操 | 国产91精品一区二区麻豆亚洲 | 最近中文字幕在线播放 | 亚洲最新在线视频 | 日韩mv欧美mv国产精品 | 久久久久国产一区二区三区四区 | 九九免费精品视频 | 久久精品成人热国产成 | 日韩色视频在线观看 | 国产亚洲欧美精品久久久久久 | 欧美不卡视频在线 | 亚洲视频在线观看网站 | 成人黄色大片在线免费观看 | 日韩欧美一区二区三区黑寡妇 | 国产精品剧情在线亚洲 | 中文字幕国产一区二区 | 欧美日韩网址 | 天天射天天搞 | 91麻豆精品国产91久久久久 | 中文字幕乱码日本亚洲一区二区 | av天天澡天天爽天天av | 日韩资源在线播放 | 又黄又刺激的网站 | 九九九电影免费看 | 亚洲黄色激情小说 | 中国精品少妇 | 国产一区免费在线 | 欧美激情在线看 | 中文av网 | 日韩影视在线 | 在线播放亚洲 | 东方av在线免费观看 | 粉嫩av一区二区三区入口 | 天天操天天弄 | 97精品国产97久久久久久免费 | 91传媒视频在线观看 | 亚洲一级二级 | 成年人在线观看免费视频 | 欧美日韩中文视频 | 国产资源站 | 久久视频6 | 久久99这里只有精品 | 在线免费高清一区二区三区 | 最近中文字幕大全 | 日韩资源在线观看 | 亚洲成人免费在线观看 | 免费观看一区 | 国产免费黄视频在线观看 | 岛国一区在线 | 精品免费一区二区三区 | 日韩最新在线 | 一区二区三区四区久久 | 欧美成人一二区 | 亚洲女人天堂成人av在线 | 欧美日产在线观看 | 国内精品久久久久久久97牛牛 | 欧美福利在线播放 | 日韩av一卡二卡三卡 | 国产精品久久久久久一二三四五 | 中文字幕中文字幕中文字幕 | 玖玖精品在线 | 91亚州| 午夜精品一区二区三区四区 | 久草在线欧美 | 精品国产一区二区三区免费 | 最近的中文字幕大全免费版 | 中文字幕在线电影 | 久久精品中文字幕一区二区三区 | 久久久久国产精品午夜一区 | 亚洲天堂网在线观看视频 | 91精品国自产拍天天拍 | 欧美极度另类性三渗透 | 国产一区二区不卡在线 | 中文字幕日韩精品有码视频 | 国产成人精品一区二区三区在线 | 福利久久久 | 成人中文字幕+乱码+中文字幕 | 免费h精品视频在线播放 | 国产一卡久久电影永久 | 欧美一区二区三区在线播放 | 欧美日韩国产精品爽爽 | 丁香激情婷婷 | 狠狠的操 | 日韩精品专区在线影院重磅 | 香蕉久草 | 在线观看资源 | 麻豆国产网站 | 欧美极品久久 | 免费亚洲一区二区 | 久久这里只有精品视频99 | 午夜成人影视 | 波多野结衣视频一区二区 | 久久精品一区二区国产 | 在线免费观看av网站 | 国产99久久久国产精品成人免费 | 久久九九精品 | 久久久18 | 91视频在线播放视频 | 在线免费观看黄色大片 | 一区中文字幕在线观看 | 欧美电影在线观看 | 成年人看片 | 91自拍视频在线观看 | 日韩一区二区三区免费视频 | 9久久精品 | 丁香六月激情 | 中文字幕观看视频 | 香蕉在线观看视频 | 欧美一级免费在线 | 国产一区二区不卡视频 | 日韩二区三区在线观看 | 青青草国产在线 | 久久久久久久久久毛片 | 国产精品免费看 | 天天操月月操 | 免费男女羞羞的视频网站中文字幕 | 亚洲色图美腿丝袜 | 中文字幕色网站 | 久久免费视频8 | 中文字幕一区二区三区四区久久 | av在线播放快速免费阴 | 黄色免费网站下载 | 国产黄色片一级 | 国产高清亚洲 | 亚洲 欧美 变态 国产 另类 | 久久超级碰视频 | 97超视频在线观看 | 久久亚洲综合国产精品99麻豆的功能介绍 | 最近更新中文字幕 | 国产91免费在线观看 | 精品国产欧美一区二区三区不卡 | 在线看欧美 | av高清在线观看 | 六月婷操| 99视频精品免费视频 | 国产婷婷一区二区 | 亚洲va在线va天堂 | 中文字幕久久网 | 97超碰在线资源 | 在线视频日韩精品 | 国产综合精品一区二区三区 | 国产精品国产毛片 | 国产精品久久久久免费a∨ 欧美一级性生活片 | 99视频免费在线观看 | 亚洲人成免费网站 | 欧美日韩视频观看 | 精品国产1区2区3区 国产欧美精品在线观看 | 日韩欧美一区二区三区免费观看 | 精品一区二区三区久久久 | 久久久综合精品 | 成人在线观看资源 | 日韩精品视频免费在线观看 | 国语自产偷拍精品视频偷 | 亚洲综合视频在线 | 国产精品都在这里 | 亚洲免费观看视频 | 国产韩国精品一区二区三区 | 亚洲视频一级 | 日韩视频区| 九色在线 | 亚洲国产福利视频 | 日韩精品一区二区在线视频 | 久久99操 | 色a资源在线 | 国产一区二区网址 | 午夜视频在线观看一区二区 | 国产精品免费在线视频 | 成人午夜影院 | 亚洲激情国产精品 | 少妇视频一区 | av中文资源在线 | 日本久久久久久科技有限公司 | 亚洲理论电影 | 亚洲精品自在在线观看 | 91精品国产福利在线观看 | 一性一交视频 | 国产亚洲精品中文字幕 | 国产精品美乳一区二区免费 | 五月婷在线视频 | 成人久久影院 | 在线视频黄 | 97成人在线观看视频 | 在线观看你懂的网址 | 精品一区精品二区高清 | 国产午夜精品在线 | 精品一区二区三区四区在线 | 国产精品观看 | 久久99精品一区二区三区三区 | a天堂在线看 | 亚洲精品在线观看视频 | 区一区二区三在线观看 | 久久国产一区二区三区 | 久久视频在线视频 | 亚洲 欧美 国产 va在线影院 | 亚洲影视九九影院在线观看 | 免费在线观看91 | 伊人资源站 | 免费黄av | 依人成人综合网 | www.国产精品 | 久久国产亚洲精品 | 91精品久久久久久综合乱菊 | 最近最新mv字幕免费观看 | 亚洲永久精品国产 | 日韩a欧美 | 天天干人人 | 国产精品福利无圣光在线一区 | 精品国产一区二区三区久久久久久 | 人人揉人人揉人人揉人人揉97 | 欧美久久成人 | 国产精品毛片久久久 | 69亚洲精品| 中文字幕视频一区二区 | 手机av在线网站 | 久久久久国产a免费观看rela | 国产人免费人成免费视频 | 激情综合亚洲 | 在线观看免费版高清版 | 欧美色综合 | a v在线视频| 丁香婷婷电影 | 中文字幕av在线 | 国产精品一区二区 91 | 狠狠色丁香婷婷综合欧美 | 视频一区在线免费观看 | 免费色视频网址 | 日韩欧美视频在线免费观看 | 精品国产成人在线影院 | 美女视频是黄的免费观看 | 丁香婷婷久久久综合精品国产 | 久久人人插 | 人人干狠狠干 | 精品日韩在线 | 久久久国产一区 | www夜夜操| 国产精品xxxx18a99 | 亚洲 av网站| 中文字幕在线观看av | 亚洲性少妇性猛交wwww乱大交 | 成人av电影免费观看 | 国产va在线观看免费 | 欧美日本啪啪无遮挡网站 | 婷婷久久丁香 | 欧美精品久久久久久久久免 | 婷婷激情五月综合 | 精品在线亚洲视频 | 在线国产一区 | 最近中文字幕在线 | 亚洲国产精品电影 | 亚洲欧美日韩精品久久久 | av在线免费观看黄 | 日韩高清毛片 | 国产精品免费小视频 | av观看久久久 | 国产日韩欧美综合在线 | 99久热在线精品视频成人一区 | 日韩欧美一区二区在线播放 | 亚洲国产av精品毛片鲁大师 | 日本视频久久久 | 在线免费黄 | 亚洲视频精品 | 国产成人av片 |