2021微软认证考试练习题及答案.doc

想预览更多内容,点击预览全文

申明敬告:

本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己完全接受本站规则且自行承担所有风险,本站不退款、不进行额外附加服务;如果您已付费下载过本站文档,您可以点击这里二次下载

文档介绍

2021微软认证考试练习题及答案(1)

小编为大家收集整理了《202*微软认证考试练习题及答案(1)》供大家参考,希望对大家有所帮助!!!

第 1 题 你正在开发一个自定义事件处理去自动打印所有打开的文档。事件处理可以指定要打印的份 数。为此,你需要开发一个传递给事件处理程序的自定义事件参数类,你应该使用下面那个 代码段? A. public class PrintingArgs { private int copies; public PrintingArgs(int numberOfCopies) { this.copies = numberOfCopies; } public int Copies { get { return this.copies; } }} B. public class PrintingArgs : EventArgs { private int copies; public PrintingArgs(int numberOfCopies) { this.copies = numberOfCopies; } public int Copies { get { return this.copies; } }} C. public class PrintingArgs { private EventArgs eventArgs; public PrintingArgs(EventArgs ea) { this.eventArgs = ea; }public EventArgs Args {get { return eventArgs; }}} D. public class PrintingArgs : EventArgs { private int copies;} 答案: B

第 2 题 你使用反射(Reflection)来获得方法 MyMet

最近下载