微软认证考试资料.doc

上传人:小** 文档编号:547861 上传时间:2018-10-24 格式:DOC 页数:105 大小:1.03MB
返回 下载 相关 举报
微软认证考试资料.doc_第1页
第1页 / 共105页
微软认证考试资料.doc_第2页
第2页 / 共105页
点击查看更多>>
资源描述

《微软认证考试资料.doc》由会员分享,可在线阅读,更多相关《微软认证考试资料.doc(105页珍藏版)》请在得力文库 - 分享文档赚钱的网站上搜索。

1、|1、 question 1You work as the application developer at Cer-T. Cer-T uses Visual Studio.Net 2005 as its application development platform.你在 Cer-T 做应用程序开发人员,Cer-T 使用 VS2005 作为其应用程序的开发平台。You are developing a .Net Framework 2.0 application used to store a type-safe list of names and e-mail addresses.你正在

2、开发一个.Net Framework 2.0 应用程序,用来存储一个包含了姓名和电子邮件的类型安全的列表(清单) 。The list will be populated all at once from the sorted data which means you well not always need to perform insertion or deletion operations on thd data.这个列表会被完全的填充从排序的数据,这就意味着你不需要经常对这些数据完成插入或删除操作。You are required to choose a data structure t

3、hat optimizes(优化) memory use and has good performance.请你选择一个数据结构,以便优化内存使用,具有良好的性能。What should you do?该如何做?A、 The System.Collections.Generic.SortedList class should be usedB、 The System.Collections.HashTable class should be usedC、 The System.Collections.Generic.SortedDictionary class should be usedD、

4、 The System.Collections.SortedList class should be used点评:SortedList 表示键/值对的集合,这些键值对按键排序并可按照键和索引访问。HashTable 表示键/值对的集合,这些键值对根据键的哈希代码进行组织。C 该类不存在D 非类型安全的,没有引人泛型。2、 Question 2You work as an application developer at Cer-T. You have recently created an application that include the code shown below.你在 Ce

5、r-T 做应用程序开发人员。最近你创建了一个应用程序,包含如下的代码:public delegate string GetFileContentsDel();public string GetFileContens()/Process file and return resultsYou now need to invoke the GetFileContents method asynchronously(异步).You have to ensure that the code you use to invoke the GetFileContents method will continu

6、e to process other user instructions,and displays the results as soon as the GetFileContents method finishes processing. What should you do?现在你需要异步调用 GetFileContents 方法。必须确保你的代码在调用 GetFileContents方法的同时将继续处理其他用户的指令,并在 GetFileContents 方法完成处理后显示结|果。你应该怎么做?A、 Use the following code:/创建委托对象并且实例化GetFileCo

7、ntentsDel delAsync=new GetFileContentsDel(GetFileContents);IAsyncResult result=delAsync.BeginInvoke(null,null);while(!resul.IsCompleted)/Process other user instructionsstring strFile=delAsync.EndInvoke(result);B、 Use the following code:GetFileContentsDel delAsync=new GetFileContentsDel(GetFileConten

8、ts);string strFile=delAsync.Invoke(); /直接调用C、 Use the following code:string strFile=GetFileContents.Invoke();/语法错误D、 Use the following code:GetFileContentsDel delAsync=new GetFileContentsDel(GetFileContents);IAsyncResult result=delAsync.BeginInvoke(null,null);/Process other user instructionsstring s

9、trFile=delAsync.EndInvoke(result);点评:IAsyncResult 包含异步操作的方法的类实现。对于只有同步方法的对象,只需要定义一个委托,并使用其 BeginInvoke 和 EndInvoke 方法就可以了。B、直接调用C、语法错误D、与题意不符合,没有状态判断3、 Question 3You work as the application developer at Hi-T. You have created a new service application named App01.App01 must still be deployed into th

10、e Hi-T network. A Hi-T network administrator named Rosanne Keith has already created a user ccount for App01. You must configure App01 to run in the context of this new user account.What should you do next?你在 Hi-T 做应用程序开发人员。你已经创建了一个新的服务应用程序命名App01.该服务必须部署在 Hi-T 的网络中。Hi-T 的一个叫罗萨安娜基思的网络管理员已经创建了 App01

11、的用户帐号。在新的用户帐号下要运行 App01,你必须做一些相应的配置。下一步应该做什么?A、 Before Deploying App01,specify the startType property of the ServiceInstaller class.B、 Before delploying App01,specify the Account,Username,and Password properties of the ServiceProcessInstaller class.在部署 App01 之前,指定账户,用户名和密码的 ServiceProcessInstaller 类

12、的属性。C、 Install the service by using the CONFIG option of the net.exe command-line tool.D、 Install the service by using the installutil.exe command-line tool.点评:4、 Question 4|You pass a value-type variable into a procedure as an argument.The procedure changes the variable;however,when the procedure r

13、eturns,the variable has not changed.What happened?(Choose one.)你在一个方法中传入了一个值类型的变量做参数。方法里改变了这个变量;而当方法返回时,变量的值并没有被改变。这是为什么?(选择一项)A、 The variable was not initialized before it was passed in.该变量在传入的时候没有被初始化B、 Passing a value type into a procedure creates a copy of the data.向方法里传入值类型的变量,实际上是传入了一个数据的副本。C、

14、 The variable was redeclared within the procedure level.在方法体中重新申明了这个变量。D、 The procedure handled the variable as a reference.方法按引用处理了该变量点评:考察了数据传参的方式:按值传参和按引用传参。5、 Question 5You work as the application developer at Hi-T. You are working on a new application named App01. App01 is configured to perform

15、 a series of mathematical calculations.你在 Hi- 做应用程序开发人员。正在开发一款新的应用程序,名字叫App01;App01 配置为执行一系列的数学计算。You create a class named AppClass and create a procedure named AppSP. AppSP must execute on an instance of the class.你创建了一个 AppClass 的类和一个 AppSP 的方法。该方法必须作为该类的实例运行。You must configure the applications us

16、er interface(UI) so that it continues to respond for the duration that calculations are performed.You must write the code segment for calling the AppSP procedure which will accomplish your objective.Choose the code segment which you should use.你必须配置应用程序的用户界面,以便它在进行计算期间能够继续做出响应。你必须编写用于调用 AppSP 程序的代码,

17、以实现上述目标。选择下面的那段代码可以使用。A、 private void AppSP().private void DoWork()AppClass myValues=new AppClass();Thread newThread=new Thread(new ThreadStart(AppSP);newThread.Start(myValues);B、 private void AppSP()private void DoWork()AppClass myValues=new AppClass();ThreadStart delStart=new ThreadStart(AppSP);Th

18、read newThread=new Thread(delStart);if(newThread.IsAlive)new Thread.Start(myValues);|C、 private void AppSP(AppClass values).private void DoWork()AppClass myValues=new AppClass();Application.DoEvents();AppSP(myValues);Application.DoEvents();D、 private void AppSP(object values).private void DoWork()Ap

19、pClass myValues=new AppClass();Thread newThread=new Thread(new ParameterizedThreadStart(AppSP);点评:引入线程ThreadStart 该委托不能带参数ParameterizedThreadStart 该委托可以带参数6、 question 6You work as the application developer at Cer-T. Cer-T uses Visual Studio.Net2005 as its application development platform. 你在 Cer-T 做

20、应用程序开发人员。Cer-T 用 VS2005 作为其开发平台。You are developing a .NET Framework 2.0 financial application and are busy developing a module that backs up the critical data on a separate hard drive. 你正在开发一款.net2.0 的财务应用程序,并忙于开发一个模块,备份关键数据到一个独立的硬盘驱动器(硬盘)You are required to decide which properties of the DriveInfo

21、class to use and find the type of file system like FAT or NTFS and the drive free space and the user disk quota(配额/ 指标) should be ignored by the application.你必须决定 DriverInfo 类使用的参数,找到像 FAT 或者 NTFS 类型的文件系统和磁盘的可以空间,并使应用程序忽略用户磁盘的配额。What should you do?该如何做?A、 Use the DriveFormat and TotalFreeSpace prope

22、rties of the DriveInfo class.B、 Use the DriveType and AvailableFreeSpace properties of the DriveInfo class.C、 Use the VolumeLabel and TotalSize properties of the DriveInfo classD、 Use the DriveType and TotalSize properties of the DriveInfo class.E、 Use the DriveFormat and AvailableFreeSpace properti

23、es of the DriveInfo class.点评:DriverInfo 类的常用属性和方法没有找到指定的属性7、 Question 7You are writing a method for a console application that lists options available to a user based on his group memberships.Which technique should you use?你正在为一个控制台应用程序写一个方法,给一个基于组成员的用户列出可用的选项。|下面哪项技术可以?A、 WindowsPrincipal.IsInRoleB

24、、 WindowsIdentity.IsInRoleC、 Imperative(迫切的) RBS demands(需求)D、 Declarative(声明) RBS demands点评:WindowsPrincipal 允许代码检查 Windows 用户的 Windows 组成员身份WindowsIdentity 表示 Windows 用户8、 Question 8You are as the application developer at Hi-T. You are working on an application named App01. App01 must be configure

25、d to use role-based security and authentication. 你在 Hi- 做应用程序开发人员。正在开发一款 App01 的应用程序。该程序必须配置为使用基于角色安全和身份验证。You must develop the code segment which will result in the runtime assigning an unauthenticated principal object to each running thread.你必须开发代码段,这将导致在运行时分配了一个未经验证的主要对象对每个运行的线程。Choose the code s

26、egment which will accomplish the task.选择那段代码可以实现。A、 AppDomain domain=AppDomain.CurrentDomain;domain.SetPrincipalPolicy(PrincipalPolicy.WindowsPrincipal)B、 AppDomain domain=AppDomain.CurrentDomain;domain.SetThreadPrincipal(new WindowsPrinipal(null);C、 AppDomain domain=AppDomain.CurrentDomain;domain.S

27、etAppDomainPolicy(PolicyLevel.CreateAppDomainLevel();D、 AppDomain domain=AppDomain.CurrentDomain;domain.SetPrincipalPolicy(PrincipalPolicy.UnauthenticatedPrincipal);点评:AppDomain表示应用程序域,它表示一个应用程序在其中执行的独立环境。无法继承此类。9、 Question 9Given the best answer,which of the following lines of code would reverse(反向

28、/ 倒转) the security restriction?(Choose all than apply) 给出最好的答案,下面的那个代码行会破坏安全限制?(选择多项)VB 注释Dim e as EventLogPermission=New EventLogPermission(PermissionState.Unrestricted)PermitOnly/C#EventLogPermission e=new EventLogPermission(PermissionState.Unrestricted);PermitOnly();A、e.RevertPermitOnlyB、CodeAcce

29、ssPermission.RevertPermitOnlyC、e.RevertAllD、CodeAccessPermission.RevertAll|E、e.RevertDenyF、CodeAccessPermission.RevertDeny点评:CodeAccessPermission 类定义了一个所有代码访问权限的底层结构System.Security.CodeAccessPermission10、 Question 10You work as the application developer at Hi-T. You are working on a new requirement.

30、 You have to create a class library that will open the network socket connections to computers on the Hi-T network. 你在 Hi-T 做应用程序开发员。在工作上有了新的要求,需要创建一个类库,将打开网络套接字连接上 Hi-T 的网络。The class library must be deployed to the global assembly cache, with full trust granted. To cater for network socket connecti

31、ons being used, you develop this code segment; 该类库必须部署到全局程序集缓存,授予完全信任。为配合正在使用的网络套接字连接,你开发如下的代码段:SocketPermission permission=new SocketPermission(PermissionState.Unrestricted);permission.Assert();You discover though that there are certain existing applications which do not have the required permissio

32、ns to open the network socket connections. You decide to cancel the assertion. Choose the code segment which will accomplish this task.你发现,虽然有一些现有的应用程序不具有所需的权限打开网络套接字连接,你决定取消这一断言,选择代码段将完成这项任务。A、 CodeAccessPermission.RevertAssert();B、 CodeAccessPermission.RevertDeny();C、 permission.Deny();D、 permissi

33、on.PermitOnly();点评:SocketPermissionC 和 D 不正确。B 是对 permission.Deny()方法的操作。11、 question 11You work as an application developer at Cer-T. You are required to dynamically load assemblies into a custom child application domain. 你在 Cer-T 做应用程序开发员。要求动态的加载程序集到一个自定义的子应用程序域。You need to ensure that the assembl

34、ies loaded into the child application domain have the same permissions as the applications that are accessed across the local intranet.你必须确保子应用程序域中加载的程序集有整个本地 intranet 访问的所有应用程序有相同的权限。What should you do?该如何做?A、 Use the following code to create the child application domain:Evidence childEvidence=new

35、Evidence(new objectSecurityZone.Intranet,null);AppDomain.CreateDomain(“ChildDomain”,childEvidence);B、 Use the following code to create the child application domain:|AppDomain.CreateDomain(“ChildDomain”,SecurityZone.Intranet);C、 Use the following code to create the child application domain:AppDomain

36、domain=new AppDomain(“ChildDomain”,SecurityZone.Intranet);D、 Use the following code to create the child application domain:Evidence childEvidence=new Evidence(new objectSecurityZone.Intranet,null);AppDomain domain=new AppDomain(“ChildDomain”,childEvidence);点评:Evidence(证据)AppDomain:表示应用程序域,它是一个应用程序在其

37、中执行的独立环境。C 和 D 错误,因为 AppDomain 的对象是不能通过 new 创建出来的。B 第二个参数的类型不正确。SecurityZone 是一个枚举,定义与安全策略所使用的安全区域相对应的整数值。 (System.Security)AppDomain.CreateDomain(“字符串”, Evidence 对象);参数一:域的友好名称参数二:System.Security.Policy.Evidence12、 Question 12You work as the application developer at Hi-T. You create a code segment

38、which will implement the class named Class01. The code segment is shown here:你在 Hi-T 在应用程序开发人员。你创建了一个将实现 Class01 类的代码片段。如下:MyMethod function.public class Class01public int MyMethod(int arg)return arg;You want the Class01.MyMethod function to be dynamically called from a separate class within the ass

39、embly.你希望 Class01.MyMethod 方法是动态的从本程序集内的另外一个类中调用。Choose the code segment which you should use to accomplish the task.选择能够完成上述任务的代码段。A、 Class01 myClass=new Class01();Type t=typeof(Class01);MethodInfo m=t.GetMethod(“MyMethod”);int i=(int)m.Invoke(this,new object1);B、 Class01 myClass=new Class01();Type

40、 t=typeof(Class01);MethodInfo m=t.GetMethod(“MyMethod”);int i=(int)m.Invoke(myClass,new object1);C、 Class01 myClass=new Class01();Type t=typeof(Class01);|MethodInfo m=t.GetMethod(“Class01.MyMethod”);int i=(int)m.Invoke(myClass,new object1);D、 Type t=Type.GetType(“Class01”);MethodInfo m=t.GetMethod(“

41、MyMethod”);int i=(int)m.Invoke(this,new object1);点评:反射A 和 D 不正确,因为在另外一个类中通过反射读取 Class01 中 MyMethod 的方法。Invoke 的第一个参数是要反射的类的实例。C 不正确,GetMethod(“ 方法名 ”),不需要加类名的限定符。13、 Question 13You work as the application developer at Hi-T. You are working on an existing application and must load a new assembly into

42、 this application. You must write the code segment that will require the common language runtime(CLR) to grant the assembly a permission set,as though the assembly was loaded from the local intranet zone.You must ensure that the default evidence for the assembly is overridden and must create the evi

43、dence collection.你在 Hi-T 做应用程序开发人员。你正在开发一个现有的应用程序,而且必须加载一个新的程序集到该程序中。虽然这个程序集加载自本地 intranet,你必须编写代码段使得公共语言运行时(CLR)授权给程序集一个权限集。你必须确保给程序集提供的默认证据被重写,并且创建一个新的证据集。Choose the code segment which will accomplish this task.A、 Evidence evidence=new Evidence(Assembly.GetExecutingAssembly().Evidence);GetExecutin

44、gAssembly()获取当前执行代码的程序集Evidence 获取此程序集的证据B、 Evidence evidence=new Evidence();evidence.AddAssembly(new Zone(SecurityZone.Intranet);将指定的程序集证据添加到程序集C、 Evidence evidence=new Evidence();evidence.AddHost(new Zone(SecurityZone.Intranet);将主机提供的指定证据添加到程序集D、 Evidence evidence=new Evidence(AppDomain.CurrentDom

45、ain.Evidence);点评:定义组成对安全策略决策的输入的一组信息,无法继承此类。System.Security.PolicyEvidence 是一个集合,它持有一组表示证据的对象。该类有两个与证据源(主机证据和程序集证据)对于的集合。Host evidence 由主机提供; Assembly evidence 是程序集本身的一部分。A 和 D 都是获得当前程序集的证据集,与题意不符合。B14、 Question 14You are creating a front-end interface to a back-end database that stores user names a

46、nd groups within the database itself. The user database is very simple,storing only user names and group memberships. You want to be able to use imperative and declarative RBS demands within your application based on the custom user database.Which of the following classes meets your requirements and

47、 would be most efficient to implement?(Choose all that apply)|你正在创建一个前端界面后端数据库,用于存储用户名和组在数据库中。用户数据库非常简单,只存储用户名和组成员。你希望在自定义用户数据库的应用程序基础上使用命令声明远程 Blob 存储命令。下面那些类满足你的要求并能有效的实现?(选择多项)A、 GenericIdentityB、 GenericPrincipalC、 IIdentityD、 IPrincipal点评:System.Security.Principal.GenericIdentity 表示一般用户System.S

48、ecurity.Principal.GenericPrincipalSystem.Security.Principal.IIdentitySystem.Security.Principal.IPrincipal15、 Question 15You work as the application developer at Hi-T. You are creating a new code segment which is to be used for user authentication(认证) and authorization(授权) purposes. The current application data store already stores the username,password, and roles. You must establish the user security context, which should be used for the authorization checks like IsInRole. To authorize the user, you have started developing the following code segment;你在 Hi-T 做应用程序开发人员。你正在创建一个新的代码段

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 教育专区 > 教案示例

本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知得利文库网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

工信部备案号:黑ICP备15003705号-8 |  经营许可证:黑B2-20190332号 |   黑公网安备:91230400333293403D

© 2020-2023 www.deliwenku.com 得利文库. All Rights Reserved 黑龙江转换宝科技有限公司 

黑龙江省互联网违法和不良信息举报
举报电话:0468-3380021 邮箱:hgswwxb@163.com