1 你正在开发一个自定义事件处理去自动打印所有打开的文档。事件处理可以指定要打印的份数。为此,你需要开发一个传递给事件处理程序的自定义事件参数类,你应该使用下面那个代码段?答案: B
A. public class PrintingArgs { private int copies;
public PrintingArgs(int numberOfCopies) {
pies = numberOfCopies; }
public int Copies { get { pies; } }}
B. public class PrintingArgs : EventArgs { private int copies;
public PrintingArgs(int numberOfCopies) { pies = numberOfCopies; }
public int Copies { get { pies; } }}
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;}
2你使用反射(Reflection)来获得方法MyMethod的信息。你需要获取MyMethod方法是否在派生类中可以访问,你应该如何做?
A. 访问MethodInfo IsAssembly 属性。
B. 访问MethodInfo IsVirtual属性。
C. 访问MethodInfo IsStatic属性。
D. 访问MethodInfo IsFamily属性。
答案: D
3 你正在创建一个使用非托管资源的类。这个类引用了使用托管资源的对象。你需要确保使用这个类的用户在不需要类实例的时候能够够释放资源。你应该做那三个工作?
(每个答案是解决方案的一部分)
A. 定义一个从WeakReference 继承的类。
B. 定义一个实现IDisposable 接口的类。
C. 创建一个类析构函数,调用其它对象的方法去释放托管资源。
D. 创建一个类析构函数,释放非托管资源
E. 创建一个Dispose方法,调用System.GC.Collect 强制垃圾回收。
F. 创建一个Dispose方法,释放非托管资源并且调用其它对象的方法释放托管资源。
答案: B, D, F
4 你正对一个应用进行调试。你需要到引起异常的代码行。请问,Exception类的哪个属性能达到这个目的?答案: C
A. Data
B. Message
C. StackTrace
D. Source
5 你正在测试一个新开发的方法PersistToDB。这个方法接收一个类型为EventLogEntry的参数,方法没有返回值。你需要创建一段代码来帮助你测试这个方法。这段代码必须从本地计算机的应用日志读取日志项然后传递日志项给PersistToDB方法。要求,传递到PersistToDB方法的日志项必须是MySource源而且类型为错误或警告的日志。你应该使用下面那个代码段?
A. EventLog myLog = new EventLog(“Application”, “.”);
foreach (EventLogEntry entry in myLog.Entries)
{ if (entry.Source == "MySource")
{PersistToDB(entry); } }
B. EventLog myLog = new EventLog(“Application”, “.”);
myLog.Source = “MySource”;
foreach (EventLogEntry entry in myLog.Entries)
{ if (entry.EntryType == (EventLogEntryType.Error &
EventLogEntryType.Warning)){
PersistToDB(entry); } }
C. EventLog myLog = new EventLog(“Application”, “.”);
foreach (EventLogEntry entry in myLog.Entries)
{ if (entry.Source == "MySource") {
if (entry.EntryType == EventLogEntryType.Error ||entry.EntryType == EventLogEntryType.Warning)
{ PersistToDB(entry); } } }
D. EventLog myLog = new EventLog(“Application”, “.”);
myLog.Source = “MySource”;
foreach (EventLogEntry entry in myLog.Entries)
{ if (entry.EntryType == EventLogEntryType.Error || entry.EntryType == EventLogEntryType.Warning)
{ PersistToDB(entry); }
答案: C
6 你的应用使用两个名为threadOnethreadTwo的线程。你需要修改代码使其只有threadTwo执行完成才开始执行threadOne。你应该如何做?答案: C
A. 设置threadOne运行在低优先级。
B. 设置threadTwo运行在高优先级。
C. 使用WaitCallback 代理去同步线程。
D. 调用threadOne Sleep方法。
7spring framework框架漏洞 你是公司A的一个开发人员。你创建了一个名为Company1的程序集。Company1包含了一个public方法。全局程序集中包含了另一个名为Company2的程序集。你必须保证,public方法只能够被Company2调用。你需要使用下面哪个权限类?
A. GacIdentityPermission
B. PublisherIdentityPermission
C. DataProtectionPermission
D. StrongNameIdentityPermission
答案: D
8 你创建了一个发送e-mail的应用。一个名称为smtp.CompanySMTP服务器在本地子网是可用的。为了测试应用,你使用源地址为me@Company,目标地址为you@Company。你应该使用下面那个代码段去发送e-mail
A. MailAddress addrFrom =
new MailAddress(“me@Company”, “Me”);MailAddress addrTo =
new MailAddress(“you@Company”, “You”);MailMessage message = new
MailMessage(addrFrom, addrTo);message.Subject = “Greetings!”;message.Body =
“Test”;message.Dispose();
B. string strSmtpClient = “mstp.Company”;string strFrom = “me@Company”;
String strTo= “you@Company”;string strSubject = “Greetings!”;
string strBody = “Test”;MailMessage
msg = new MailMessage(strFrom, strTo, strSubject, strSmtpClient);
C. MailAddress addrFrom = new MailAddress(“me@Company”);MailAddress addrTo = new
MailAddress(“you@Company”);MailMessage message = new MailMessage(addrFrom,
addrTo);message.Subject = “Greetings!”;message.Body = “Test”;SmtpClient client = new
SmtpClient(“smtp.Company”);client.Send(message);
D. MailAddress addrFrom =
new MailAddress(“me@Company”, “Me”);MailAddress addrTo = new
MailAddress(“you@Company”, “You”);MailMessage message = new
MailMessage(addrFrom, addrTo);message.Subject = “Greetings!”;message.Body =
“Test”;SocketInformation info = new SocketInformation();Socket client = new
Socket(info);System.Text.ASCIIEncoding enc = new System.Text.ASCIIEncoding();byte[]

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。