1 / 6
文档名称:

东华软件股份公司-NET面试题(试题).doc

格式:doc   大小:46KB   页数:6页
下载后只包含 1 个 DOC 格式的文档,没有任何的图纸或源代码,查看文件列表

如果您已付费下载过本站文档,您可以点这里二次下载

分享

预览

东华软件股份公司-NET面试题(试题).doc

上传人:夜紫儿 2022/7/14 文件大小:46 KB

下载得到文件列表

东华软件股份公司-NET面试题(试题).doc

文档介绍

文档介绍:姓名: 学校: 专业:
学历: 联系方式: E-mail:
考试时间:
试卷:
总分值 100 分 共 20 题
阅卷时间:
阅卷人: 对 题 错 题 成绩:
一.选择题〔中文〕
1. which permissions are required by MyComponent. What should you do?
A: Request the source code from the developer who created MyComponent. Examine the source code to find the required
permissions.
B: Run the Microsoft CLR Debugger () on the server to view the permissions requested by the application at run time.
C: Run the Runtime Debugger () on the server to view the permissions requested by the application at run time.
D: Run the Permissions View tool () on the server to view the permissions required by MyComponent.
E: Run the MSIL Disassembler () on the server to view permission requests by MyComponent that were denied.
You use Visual Studio .NET to create an application. Your application contains two classes, Region and City, which are defined in the following code segment. (Line numbers are included for reference only.)
public class Region {
public virtual void CalculateTax { 03 // Code to calculate tax goes here. 04 }
05 }
public class City:Region {
public override void CalculateTax { 08 // Insert new code.
09 }
10 }
You need to add code to the CalculateTax method of the City class to call the CalculateTax method of the Region class. Which code segment should you add on line 08?
A: Calcu