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. Image Wall - jQuery & CSS3 图片墙效果

    今天我们要为您展示如何基于 jQuery 和 CSS3 创建一个整洁的图片墙效果.我们的想法是在页面上洒上一些大小不同的缩略图,并在当我们点击图片时候显示丝带,会显示一些描述,再次点击缩略图时,丝带将 ...

  2. Lining.js - 为CSS提供 ::nth-Line 选择器功能

    在CSS中,我们使用 ::first-line 选择器来给元素第一行内容应用样式.但目前还没有像 ::nth-line.::nth-last-line 甚至 ::last-line 这样的选择器.实际 ...

  3. sql server 利用发布订阅方式实现数据库同步问题

    删除本地快发布时报错: 无法作为数据库主体执行,因为主体 "dbo" 不存在.无法模拟这种类型的主体,或您没有所需的权限.已将数据库上下文更改为 'numberForcast'. ...

  4. 【数据压缩】Huffman编码

    1. 压缩编码概述 数据压缩在日常生活极为常见,平常所用到jpg.mp3均采用数据压缩(采用Huffman编码)以减少占用空间.编码\(C\)是指从字符空间\(A\)到码字表\(X\)的映射.数据压缩 ...

  5. C#简单问题,不简单的原理:不能局部定义自定义类型(不含匿名类型)

    今天在进行代码测试时发现,尝试在一个方法中定义一个委托,注意是定义一个委托,而不是声明一个委托变量,在编写的时候没有报错,VS也能智能提示,但在编译时却报语法不完整,缺少方括号,但实际查询并没有缺少, ...

  6. 阅读《LEARNING HARD C#学习笔记》知识点总结与摘要二

    今天继续分享我的阅读<LEARNING HARD C#学习笔记>知识点总结与摘要二,仍然是基础知识,但可温故而知新. 七.面向对象 三大基本特性: 封装:把客观事物封装成类,并隐藏类的内部 ...

  7. JS魔法堂:再识Number type

    Brief 本来只打算理解JS中0.1 + 0.2 == 0.30000000000000004的原因,但发现自己对计算机的数字表示和运算十分陌生,于是只好恶补一下.以下是恶补后的成果: 基础野:细说 ...

  8. 【分享】学长的安利来了~~O(∩_∩)O

    前言:应栋哥要求,学长把演讲稿稍微整理下发布出来,这可以算是一篇安利文,也可以说是一篇经历文吧.作为一个确确实实从软工里收获到挺多东西的过来人,学长希望可以通过学长的经历来让你们对软工更加期待. 安利 ...

  9. 质数的判断,实现bool IsPrime(int number)

    1.重复输入一个数,判断该数是否是质数,输入q结束?质数的判断用方法来实现bool IsPrime(int number) static void Main(string[] args) { // 要 ...

  10. 使用jquery的append(content)方法的注意事项

    append(content)函数:向每个匹配的元素内部追加内容. 如以下示例: 向所有段落中追加一些HTML标记. HTML 代码: <p>I would like to say: &l ...