Question 45
You are designing a branding strategy for a customer with a new SharePoint 2010 server farm. The branding strategy you recommend must enable each department in the company to customize sites with their specific branding preferences. The design requirements specify that users should be able to:
.Create top-level sites for self-service site and sub site creation.
.Modify their sites without affecting other existing sites.
.Create multiple lists of the same types with different content.
.Implement SharePoint themes.
You need to meet all these design requirements without custom development. Which strategy should you design for each department to meet these requirements?
A. A master page
B. A Microsoft Office PowerPoint 2010 theme
C. A site definition
D. A site template

解析:
  你为一个新的Sharepoint 2010场设计一个网站风格设计方案。此方案可以允许每个部门自己定制他们自己的部门网站风格,其它要求如下:
  要求1. 为自助式网站创建以及子网站创建建立网站集顶级层次的网站
  要求2. 可以修改他们自己的网站而不会影响其它已经存在的网站
  要求3. 可以创建若干同一类型但不同内容的列表
  要求4. 应用Sharepoint的主题
 所有这些设计要求都不需要经过开发实现。
 根据要求1 可以直接排除选项A.B, 因为它们都不可能直接用来创建网站, 它们只是用来影响已经存在的网站风格。再根据题干要求的 “ must enable each department in the company to customize sites with their specific branding preferences” 以及要求4, 我们可以排除选项C.因为Site Definition的定制不是各部门的用户所能完成的,而且Site Definition并不支持应用网站的主题。
 因此本题答案应该选 D

参考 
http://blog.funknstyle.com/?p=120
http://answers.oreilly.com/topic/1401-how-themes-work-in-sharepoint-2010/
http://geekswithblogs.net/Lance/archive/2010/02/17/site-templates-in-sharepoint-2010.aspx

Question 46
You are planning an upgrade from an existing Microsoft Office SharePoint Server (MOSS) 2007 farm to a SharePoint 2010 farm. The existing farm contains customized master pages. These master pages include modifications of the:
.Publishing Console
.Site Actions Menu
.Log-in Control
Your design must specify an upgrade to the existing master pages to function correctly in SharePoint 2010. Which approach should you recommend?
A. Create a new SharePoint 2010 master page and add the required controls into the Ribbon on the page.
B. Update the cascading style sheet (CSS) styles in the core.css file of the existing SharePoint sites with the SharePoint 2010 CSS styles. Add SharePoint 2010 content placeholders to the existing master pages.
C. Create SharePoint 2010 delegate controls for all of the custom controls in the existing MOSS 2007 master pages. Add these controls to the new SharePoint 2010 master pages.
D. Use the Farm Configuration wizard to upgrade the existing MOSS 2007 master pages so that the pages are compatible with SharePoint 2010.

解析:
  你计划从MOSS2007升级到Sharepoint2010,在已有的MOSS2007环境中应用了客户自定义母板页,此母板页包括一些用户修正后的功能,而你需要保证这些功能在Sharepoint2010环境下同样运行正常。
  首先,MOSS2007与Sharepoint2010的母板页定义有许多的不同,Sharepoint2010的用户界面 (UI) 发生了重大变化,其中包括添加了服务器功能区。默认情况下,v4.master 页包含服务器功能区。许多以前位于菜单和工具栏中的命令现在都位于服务器功能区内。因此,如果您的现有母版页不包含服务器功能区,许多命令都将不可用。所以从MOSS2007升级到Sharepoint2010的母板页不仅意味着你需要添加一些Place Holder,还需要移除一些Controls。所以,选项B仅想依靠修改CSS与添加Place Holder解决不了本题问题。选项C的Delegate Control是用来创建自定义控件以替代Master page上的一些默认控件的(eg: SearchBox控件,具体应用参照我的博客 http://www.cnblogs.com/wsdj-ITtech/archive/2011/11/26/2263041.html),它无法替代你在MOSS2007中自行加载的其它功能控件。选项D则使用了Farm Configuration wizard,它主要是用来为场配置进行提升而非升级母板页。所以,我们只有重新创建针对Sharepoint2010的母板页并加入相关的控件。
  因此本题答案应该选 A

参考 
http://msdn.microsoft.com/zh-cn/library/%20ee539981(v=office.14).aspx
http://www.jppinto.com/2010/07/sharepoint-2010-farm-configuration-wizard/
http://markjowen.wordpress.com/2010/09/16/upgrading-a-master-page-from-sharepoint-2007-to-sharepoint-2010/
http://msdn.microsoft.com/zh-cn/library/ms470880(v=office.12).aspx

Question 47
Your company has a SharePoint 2010 Web application that contains multiple site collections. You have a custom master page that will be used by every site collection in the application. You need to make sure that changes made to this custom master page are displayed across all site collections in the Web application. Which approach should you recommend?
A. Use SharePoint Designer 2010 to add the new master page to each site collection.
B. Use the Site Master Page Settings page in the Web browser to apply the new master page to the top-level site of each site collection.
C. Manually upload the master page to the Master Page gallery of each site collection using the Web browser.
D. Deploy a solution package using Visual Studio that includes the master page in a feature, and activate the feature in each site collection.

解析:
  你公司有一个SP2010 Web  Application 上包含了许多网站集,你想开发了一个母板页应用到所有的网站集上,你要保证对此母板页的任何修改都应该在此Web Application上的所有网站集上生效。
  首先,选项A.C 均是把母板页开发并部署到Master Page gallery中[其实是保存在各个网站集的内容数据库中],这种做法实质是针对每个网站集的分别定制,也就是说,每个网站集其实都各自拥有自己的母板页,这样一样就无法达到题干所要求的,如果对母板做修改,则可在所有网站集上生效,你必须针对每个网站集的母板页重新进行修改。而至于选项B,只是把母板页应用到各个网站集的Top-Level的网站,它并没有说明这引母板页是从哪儿来的,讲的只是应用,没有讲到具体实现思路,所以也应该排除。只有选项D,通过集中开发,集中部署一个Feature到Web application,然后再在各个网站集上激活并应用,这样就保证了只对一个版本的母板页Feature进行开发维护,从而达到了本题的要求。
因此本题答案应该选 D

参考 
http://www.heathersolomon.com/blog/articles/servermstpageforsitecollect_feature.aspx
http://blog.sharepointexperience.com/servermstpageforsitecollect/
http://www.dummies.com/how-to/content/change-the-master-page-of-a-sharepoint-2010-site.html
http://www.pritambaldota.com/index.php/understanding-features-and-feature-scope-in-sharepoint-2010/

Question 48
You are designing a SharePoint 2010 intranet site for your company. You need to make sure that each  department’s SharePoint site has a unique appearance by using different fonts and font colors for each site. Your design should include no custom development. Which approach should you recommend?
A. Configure a separate theme using the Site Theme page for each department’s site.
B. Create a new cascading style sheet for each department. Define unique fonts and font colors for that department in the new cascading style sheet.
C. Create a feature for each department that deploys a customized cascading style sheet to the style library for  the department site.
D. Create a new master page for each department’s site and assign unique fonts and font colors inside the master page.

解析:
  你为公司设计一个Sharepoint内部网站,需要公司各部门的部门网站都有自己独特的外观,但外观差异仅限于颜色,字体等,这种效果不需要开发实现。
   很明显是关于”主题Themes”的应用。正确答案应该是选项A.
   选项B.C.D均需要进行开发,所以应该被排除。
因此本题答案应该选 A

参考 
http://msdn.microsoft.com/en-us/library/bb814983(v=office.12).aspx
 http://msdn.microsoft.com/zh-cn/library/hh537937(v=office.14).aspx

Sharepoint学习笔记—习题系列--70-576习题解析 -(Q45-Q48)的更多相关文章

  1. Sharepoint学习笔记—ECM系列—文档列表的Metedata Navigation与Key Filter功能的实现

    如果一个文档列表中存放了成百上千的文档,想要快速的找到你想要的还真不是件容易的事,Sharepoint提供了Metedata Navigation与Key Filter功能可以帮助我们快速的过滤和定位 ...

  2. Sharepoint学习笔记—ECM系列--文档集(Document Set)的实现

    文档集是 SharePoint Server 2010 中的一项新功能,它使组织能够管理单个可交付文档或工作产品(可包含多个文档或文件).文档集是特殊类型的文件夹,它合并了唯一的文档集属性以及文件夹和 ...

  3. Sharepoint学习笔记—习题系列--70-576习题解析 --索引目录

        Sharepoint学习笔记—习题系列--70-576习题解析  为便于查阅,这里整理并列出了70-576习题解析系列的所有问题,有些内容可能会在以后更新. 需要事先申明的是:     1. ...

  4. Sharepoint学习笔记—习题系列--70-573习题解析 --索引目录

                  Sharepoint学习笔记—习题系列--70-573习题解析 为便于查阅,这里整理并列出了我前面播客中的关于70-573习题解析系列的所有问题,有些内容可能会在以后更新, ...

  5. Deep Learning(深度学习)学习笔记整理系列之(五)

    Deep Learning(深度学习)学习笔记整理系列 zouxy09@qq.com http://blog.csdn.net/zouxy09 作者:Zouxy version 1.0 2013-04 ...

  6. Deep Learning(深度学习)学习笔记整理系列之(八)

    Deep Learning(深度学习)学习笔记整理系列 zouxy09@qq.com http://blog.csdn.net/zouxy09 作者:Zouxy version 1.0 2013-04 ...

  7. Deep Learning(深度学习)学习笔记整理系列之(七)

    Deep Learning(深度学习)学习笔记整理系列 zouxy09@qq.com http://blog.csdn.net/zouxy09 作者:Zouxy version 1.0 2013-04 ...

  8. Deep Learning(深度学习)学习笔记整理系列之(六)

    Deep Learning(深度学习)学习笔记整理系列 zouxy09@qq.com http://blog.csdn.net/zouxy09 作者:Zouxy version 1.0 2013-04 ...

  9. Deep Learning(深度学习)学习笔记整理系列之(四)

    Deep Learning(深度学习)学习笔记整理系列 zouxy09@qq.com http://blog.csdn.net/zouxy09 作者:Zouxy version 1.0 2013-04 ...

  10. Deep Learning(深度学习)学习笔记整理系列之(三)

    Deep Learning(深度学习)学习笔记整理系列 zouxy09@qq.com http://blog.csdn.net/zouxy09 作者:Zouxy version 1.0 2013-04 ...

随机推荐

  1. 让 jQuery UI draggable 适配移动端

    背景: 在移动端,本人要实现对某个元素的拖动,想到使用 jQuery UI 的 draggable 功能.但是发现此插件的拖动只支持PC端,不支持移动端. 原因: 原始的 jQuery UI 里,都是 ...

  2. 【Swift学习】Swift编程之旅(二)

    在本节将介绍一些最基础的知识 swift提供自己版本的类型,下面说明几种简单的类型 Int 整型 Double和float 浮点型 String 字符串型 Bool 布尔型 它也提供了3种主要的强大的 ...

  3. ASP.NET伪静态的方法及相关资料

    1. 添加URLRewriter.dll引用 2. 配置web.config的基本信息 <configSections> <section name="RewriterCo ...

  4. 开始MS SQL Server 2016之旅

    下班前一刻,把MS SQL Server 2016安装好,国庆回来之后,就可以学习之旅......

  5. HoverTree开发日志之验证码

    HoverTree是一个ASP.NET的开源CMS,目前包含文章系统,图库和留言板功能.代码完全开放,文章内容页生成了静态的HTM页面,留言板提供留言审核功能,文章可以发布HTML源代码,图片上传同时 ...

  6. HTML 5表单应用小结

    本文内容        HTML 5表单的组织方式         HTML 5表单的新增特性        访问表单控件及响应表单控件事件 HTML 5表单的组织方式 ★  将表单字段及其标签关联起 ...

  7. httpclient 调用WebAPI

    1.创建webapi项目,提供接口方法如下: /// <summary> /// 获取租户.位置下的所有传感器 /// </summary> /// <returns&g ...

  8. SQL Server XML转Table

    前言 在SQL Server中有时候我们需要传人一个Table过去,然后可以在存储过程中批量更新,批量的获取相应数据. 但存储过程的参数是固定,所以这里我们可以变通的传人xml类型的参数,然后在存储过 ...

  9. 不需要写代码,文件夹右键cmd定位指定目录

    引子 这篇文章其实本来不是这样的,因为我用C#的代码实现了一个程序,后面才突然发现,我太傻太天真了,明明不需要写程序和写代码的,结果自己把自己二住了. 我们来看看效果图. 由于,我自己的原因,这个功能 ...

  10. 开启MySQL日志

    找到my.ini(Linux下是my.cnf)文件,在文件里加入下面两行: log="F:/mysqllog/mysql.log" log-bin="F:/mysqllo ...