Question 116
You are helping a corporate IT department create a SharePoint 2010 information architecture plan. You are creating guidelines for determining the site structure for new sites within all other departments in the corporation. The IT department must be able to:
.Adjust the physical storage capacity required for each department and create chargeback’s based on the amount of database storage used.
.Assign storage quotas at the departmental level.
.Create site usage reports at the departmental level. You need to design an information architecture structure that meets all these requirements. On which SharePoint structure should you base each department design?
A. Custom site definitions
B. Custom site templates
C. Individual site collections
D. Individual sub siteshtml
解析:
你负责帮助一家公司的IT部门架构Sharepoint2010应用, 你制定了如何肯定此公司其它部门的部门网站的结构指南, 此公司的IT部门必须能够作以下操做:
要求1. 控制各部门的部门网站所使用的物理存储空间大小, 并能够根据数据库存储空间使用率计算退费。
要求2. 在部门网站级定制存储配额
要求3. 在部门网站级别建立生成网站使用报表
你该如何制定你的信息架构以知足上述要求呢?
首先,选项A.B均是用来建立网站的,而选项D则是建立子网站。根据要求,咱们须要为各部门网站级定制存储配额,而Sharepoint中找不到开箱即用的工具能够实现网站级别或子网站级别的存储配额(Quota)【固然,有第三方软件能够支持你在网站级别实现配额】。而在网站集级别上却能够作到本题的需求。
所以本题答案应该选 C数据库
参考
http://technet.microsoft.com/zh-cn/library/cc263480(v=office.14).aspx http://blog.incworx.com/blog/who-is-the-best-chicago-sharepoint-firm/sharepoint-help-how-to-create-a-new-sharepoint-2010-site
http://www.dummies.com/how-to/content/create-a-new-site-in-sharepoint-2010.html服务器
Question 117
You are designing a SharePoint 2010 server farm that consists of multiple site collections that share enterprisewide content types. The content types are updated on a monthly basis to ensure proper governance. The farm uses a managed metadata service application. You need to ensure that all the site collections automatically receive the updated content types in the most efficient manner and with the least amount of custom development. Which approach should you recommend?
A. Configure Content Type Syndication to update the central site collection as changes are made to each individual site collection.
B. Configure Content Type Syndication to update the individual site collection lists as changes are made to a central site collection.
C. Create an event receiver in a central site collection that sends updates to the individual site collections as changes are made.
D. Create an event receiver in each individual site collection that sends updates to the central site collection as changes are made.架构
解析:
你设计一个Sharepoint2010服务器场,此场内有若干个网站集,这些网站集共享整个企业范围内的内容类型。这些内容类型经过每个月更新来达到合理的管理要求。这个场使用了管理元数据服务应用程序。你须要不依赖于用户进一步开发来保证场内的全部网站集都可以以最有效的方式自动接收到最新的内容类型,你该采用哪一种方式呢?
本题涉及到Sharepoint的内容类型联合(Content Type Syndication),咱们仍是先来了解下基本知识点:
在一个数据量大的企业内部,建立多个Web应用程序是很正常的一件事,可是有时候两个Web应用程序之间可能会用到一些相同的内容类型,而在SharePoint 2007的时候,因为两个Web应用程序之间的联系不太大,所以也就造成了Web应用程序之间的“信息孤岛”,虽然能够经过自行扩展开发的方法来实现多个Web应用程序之间使用相同的内容类型,但那须要耗费必定的精力的。到了SharePoint 2010,微软也意识到了这种场景的用法,因而在网站集范围内增长了一个叫作“内容类型联合集线器”的功能,这个功能只能在Web应用程序的根网站下的“网站设置”中找到。
内容类型联合有助于确保列表的一致性,使列表使用相同的内容类型(从而使用相同的列)。在 Microsoft Office SharePoint Server 2007 中,将在网站集级别设置内容类型。经过在 Microsoft SharePoint Server 2010 中使用内容类型联合,可利用 Managed Metadata Service 应用程序在服务器场内或服务器场外共享内容类型。
可以使用对象模型来自定义内容类型联合,以建立一个新内容类型,发布该内容类型,而后取消发布该内容类型。咱们可使用ContentTypePublisher 类来操做内容类型联合。在设置一个 Managed Metadata Service 应用程序及其代理,并将某个网站指定为服务应用程序中的集线器后(Content Type Hub),使用此类可在集线器网站上发布或取消发布内容类型。使用此类还可验证该集线器网站上的内容类型是否已发布以及是否已在集线器上启用元数据集线器功能。
在不少状况下,集线器(Content Type Hub)将充当一个发布者,而 Web 应用程序或网站集将订阅该集线器发布的内容。在发布内容类型后,订户可经过计时器做业推入内容类型。用户导航到“管理中心”页,可在此页中选择一个 Web 应用程序做为集线器。单个 Web 应用程序也能够订阅选定的集线器做为其共享应用程序数据(包括内容类型)的提供程序。内容类型集线器是经过Managed Metadata Service这个服务应用程序来运做,因此,须要发布和订阅内容类型的网站集,必须与同一个Managed Metadata Service服务应用程序关联起来。每个Managed Metadata Service服务应用程序实例,都只能指定一个网站集,做为内容类型集线器“中心”【选项A中的Central site collection】,由它来发布内容类型,而其余网站集只能做为“订阅者”,“订阅”被发布的内容类型。
有了以上的描述,咱们就很清楚了,本题的状况必需要用到Sharepoint自身提供的内容类型联合(Content Type Syndication),而内容类型联合的使用又必须是从内容类型集线器“中心”即Central site collection发布到各个网站集的。因此只有选项A符合本题正解。
选项B.对内容类型联合的使用描述错误。
选项C.D经过Event Receiver没法实现跨网站集操做其它网站集。
所以本题答案应该选 B app
参考
http://sharepoint.mindsharpblogs.com/Bill/archive/2010/01/23/The-Basics-on-Content-Type-Syndication-in-SharePoint-2010.aspx
http://njbblog.blogspot.com.au/2011/05/sharepoint-40-content-type-hub.html
http://msdn.microsoft.com/zh-cn/library/ff394469(v=office.14).aspx
http://www.balestra.be/2012/09/content-type-hub-limitations-in-sharepoint-2010.htmlide
Question 118
You are designing a SharePoint 2010 application. The application must populate a site column based on data from an existing Microsoft SQL Server 2008 table. This table contains metadata information that is structured in a key-value pair. You need to design a column type that meets the requirements. Which type of column should you design?
A. Business Data
B. External Data
C. Lookup
D. Managed Metadata工具
解析:
你设计一个Sharepoint2010应用程序,此应用程序必须可以基于一个Microsoft SQL Server 2008数据表产生一个网站列。 这个SQL数据表中存放的是若干个键-值对信息用于表述元数据信息。你须要设计一个列类型以知足上述要求。
本题没多少可说的,由于涉及到外部数据源,因此天然用到BCS来创建External Date List,因此选项B为正确解。
选项A.商务数据,只是一个通常描述,并没有什么意义。
选项B.查阅字段,必须基于Sharepoint内的其它列表数据。
选项D.托管元数据,也是Sharepoint的内部数据。
所以本题答案应该选 B 网站
参考
http://msdn.microsoft.com/zh-cn/magazine/ee819133.aspx
http://msdn.microsoft.com/zh-cn/library/ee557898(v=office.14).aspx
http://blogs.msdn.com/b/leonidly/archive/2007/06/24/connected-lookup-field.aspx
http://msdn.microsoft.com/en-us/library/ee559337(v=office.14).aspxui
Question 119
You are designing a SharePoint 2010 application. You need to design the application according to the following requirements:
.The application must contain a workflow that can be started manually through the SharePoint user interface or through a call to SPWorkflowManager.StartWorkflow.
.The workflow must not be associated with a specific list or a document library. Which approach should you recommend?
A. Set the Site Scope property in Workflow Settings to enable the workflow across the entire site.
B. Create a reusable declarative workflow.
C. Create a sequential site workflow.
D. Create a sequential list workflow.spa
解析:
你须要设计一个Sharepoint2010应用以知足以下要求:
要求1. 包含一个既能够经过Sharepoint用户界面手工启动,又能够经过代码调用 SPWorkflowManager.StartWorkflow方法来代码启动的工做流。
要求2. 此工做流不能与特定的列表或文档库关联。
该选哪一个选项才能达到上述要求呢?
选项A.没有建立任何工做流,只是设置工做流的Scope属性。而本题要求建立一个工做流并知足相应要求。
选项B. 建立一个可重用的声明性工做流。在早期版本中,工做流只能与指定的列表和文档库作关联,不能被打包,部署或复制到其余列表或文档库中。在SharePoint Foundation中,声明性工做流是能够重用的,容许用户将工做流开发应用到其余列表或文档库中。它与选项D同样都是针对列表或文档库的。均不符合本题的要求2。因此排除。
选项C.建立基于网站的顺序工做流,符合本题的两个要求。
所以本题答案应该选 C
参考
http://msdn.microsoft.com/zh-cn/library/bb386211(v=vs.90).aspx
http://msdn.microsoft.com/zh-cn/library/ee231606.aspx
http://msdn.microsoft.com/zh-cn/library/vstudio/ee231580.aspx
Question 120
You are directing your team to use Microsoft Visio 2010 to design SharePoint 2010 workflows. You need to ensure that the workflow designs are validated. What should you tell the team to do?
A. Use Drawing Explorer in the Visio 2010 Developer menu.
B. Use Check Diagram in the Visio 2010 Process menu.
C. Export the workflow in Visio 2010. Import the Workflow Visio Interchange (.vwi) file into Visual Studio 2010. Set breakpoints in the workflow and step through the code using the debugger.
D. Export the workflow in Visio 2010. Import the Workflow Visio Interchange (.vwi) file into SharePoint Designer and debug the workflow.
解析:
你指定你的开发小组使用Microsoft Visio 2010来设计Sharepoint2010工做流,你须要对此设计进行验证,那么你须要告诉你的开发小组,他们该如何操做呢?
Microsoft Visio 2010自己提供了Check Diagram按钮来对你绘制的Diagram进行校验,
若是有什么问题,它就会列举个以下的清单告诉你
因此本题属于知晓性的题目,没什么好讲的。
选项A.用于绘制Diagram,与本题无关。
选项C.D试图调试Workflow,那是用于分析Workflow的逻辑错误,若是Diagram有问题,你甚至没法正确导入到VS2010或SPD中,并且选项D试图在SPD中调试Workflow这自己就是不可能的。
所以本题答案应该选 B
参考
http://blog.bvisual.net/2010/02/15/writing-rules-to-validate-diagrams-in-visio-2010-%E2%80%93-a-worked-example/
http://msdn.microsoft.com/en-us/library/jj856989.aspx
http://blogs.msdn.com/b/visio/archive/2009/09/08/diagram-validation-in-visio-2010.aspx