Question 35. (单选)
假如设treeView1=new TreeView(),TreeNode node=new TreeNode("根结点" ),则
treeView1.Nodes.Add(node)返回的是一个 ()类型的值。——2
1. TreeNode; 2. int; 3. string; 4. TreeView;
Question 36. (单选)
声明一个委托public delegate int myCallBack(int x); 则用该委托产生的回调方法的原型应该是——2
1. void myCallBack(int x) 2. int receive(int num)
3. string receive(int x) 4. 不确定的
Question 37. (单选)
关于ASP.NET中的代码隐藏文件的描述正确的是——1
1. Web窗体页的程序的逻辑由代码组成,这些代码的创建用于与窗体交互。编程逻辑唯一与用户界面不同的文件中。该文件称作为“代码隐藏”文件,假如用C#创建,该文件
2. 项目中所有Web窗体页的代码隐藏文件都被编译成.EXE文件
3. 项目中所有的Web窗体页的代码隐藏文件都被编译成项目动态链接库(.dll)文件
4. 以上都不正确
Question 38. (单选)
What compiler switch creates an xml file from the xml comments in the files in an
assembly?——2
1. /text 2. /doc
3. /xml 4. /help
Question 39. (单选)
下面的代码实现了设计模式中的什么模式——3
public class A {
private A instance;
private A() {
}
public static A Instance {
get
{
if ( A == null )
A = new A();
return instance;
}
}
}
1. Factory 2. Abstract Factory
3. Singleton 4. Builder
Question 40. (单选)
class Class1
{
public static int Count = 0;
static Class1()
{
Count ;
}
public Class1()
{
Count ;
}
}
Class1 o1 = new Class1();
Class1 o2 = new Class1();
请问,Class1.Count的值是多少?(3)
1. 1 2. 2 3. 3 4. 4
Question 41. (单选)
abstract class BaseClass
{
public virtual void MethodA()
{
Console.WriteLine("BaseClass");
}
public virtual void MethodB()
{
}
}
class Class1: BaseClass
{
public void MethodA()
{
Console.WriteLine("Class1");
}
public override void MethodB()
{
}
}
class Class2: Class1
{
new public void MethodB()
{
}
}
class MainClass
{
public static void Main(string[] args)
{
Class2 o = new Class2();
o.MethodA();
}
}
请问,此程序输出结果是:——3
1. BaseClass 2. BassClass Class1
3. Class1 4. Class1 BassClass
Question 42. (单选)
程序输出了什么?——1
public static void Main(string[] args)
{
int i = 2000;
object o = i;
i = 2001;
int j =(int) o;
Console.WriteLine("i={0},o={1}, j={2}",i,o,j);
}
1. i=2001,o=2000,j=2000 2. i=2001,o=2001,,j=2001
3. i=2000,o=2001,,j=2000 4. i=2001,o=2000,j=2001
Question 43. (多选)
您要创建ASP.NET应用程序用于运行AllWin公司内部的Web站点,这个应用程序包含了50个页面。您想
要配置这个应用程序以便当发生一个HTTP代码错误时它可以显示一个自定义的错误页面给用户。您想要花
最小的代价完成这些目标,您应该怎么做?(多选)——14
1. 在这个应用程序的Global.asax文件中创建一个Application_Error过程去处理ASP.NET代码错误。
2. 在这个应用程序的Web.config文件中创建一个applicationError节去处理ASP.NET代码错误。
3. 在这个应用程序的Global.asax文件中创建一个CustomErrors事件去处理HTTP错误。
4. 在这个应用程序的Web.config文件中创建一个CustomErrors节去处理HTTP错误。
Question 44. (单选)
如下程序的运行结果是:——1
public abstract class A
{
public A()
{
Console.WriteLine(A);
}
public virtual void Fun()
{
Console.WriteLine("A.Fun()");
}
}
public class B: A
{
public B()
{
Console.WriteLine(B);
}
public new void Fun()
{
Console.WriteLine("B.Fun()");
}
public static void Main()
{
A a = new B();
a.Fun();
}
}
1. A B A.Fun() 2. A B B.Fun()
3. B A A.Fun() 4. B A B.Fun()
Question 45. (单选)
Which of these string definitions will Pvent escaping on backslashes in C#?*——3
1. string s = #”n Test string”;
2. string s = “’n Test string”;
3. string s = @”n Test string”;
4. string s = “n Test string”;
Question 46. (单选)
Which of the following operations can you NOT perform on an ADO.NET DataSet?——4
1. A DataSet can be synchronised with a RecordSet.
2. A DataSet can be synchronised with the database.
3. A DataSet can be converted to XML.
4. You can infer the schema from a DataSet
Question 47. (单选)
In Object Oriented Programming, how would you describe encapsulation?——4
1. The conversion of one type of object to another.
2. The runtime resolution of method calls.
3. The exposition of data.
4. The separation of interface and implementation.
Question 48. (单选)
How does assembly versioning in .NET Pvent DLL Hell?——2
1. The runtime checks to see that only one version of an assembly is on the machine at any one time.
2. .NET allows assemblies to specify the name AND the version of any assemblies they need to run.
3. The compiler offers compile time checking for backward compatibility.
4. It doesn’t.
Question 49. (单选)
三种常用的字符串判空串方法:
1: bool isEmpty = (str.Length == 0);
2: bool isEmpty = (str == String.Empty);
3: bool isEmpty = (str == "");
哪种方法最快?——1
1. 1 2. 2 3. 3
Question 50. (单选)
public sealed class SampleSingleton1
{
private int m_Counter = 0;
private SampleSingleton1()
{
Console.WriteLine(""初始化SampleSingleton1。"");
}
public static readonly SampleSingleton1 Singleton = new SampleSingleton1();
public void Counter()
{
m_Counter ;
}
}
以上代码实现了设计模式中的哪种模式?——3
1. 原型 2. 抽象工厂 3. 单键 4. 生成器
金山职业技术学院对比四川汽车职业技术学院哪个好 附分..
时间:2025-05-22 09:08:12成都银杏酒店管理学院在重庆高考招生计划人数和专业代..
时间:2025-05-22 09:05:01四川上山东理工大学多少分 分数线及排名
时间:2025-05-22 09:01:18江西高考理科533分排名多少 排名多少位次
时间:2025-05-22 08:57:21大连东软信息学院对比甘肃民族师范学院哪个好 附分数线..
时间:2025-05-22 08:53:39广东高考455至460分左右物理可以上什么大学
时间:2025-05-22 08:49:52
中国点击率最高的一篇文章 !2023-08-13 03:45:29
海南上长春工业大学多少分 分数线及排名2025-05-22 09:28:45
科尔沁艺术职业学院对比山东水利职业学院哪个好 附分数线排名2025-05-22 09:25:00
呼和浩特职业学院对比山西警官职业学院哪个好 附分数线排名2025-05-22 09:22:04
四川工程职业技术学院在上海高考招生计划人数和专业代码(参考)2025-05-22 09:19:52
泰山科技学院对比西安理工大学高科学院哪个好 附分数线排名2025-05-22 09:16:28
江西航空职业技术学院在云南高考招生计划人数和专业代码(参考)2025-05-22 09:13:20
辽宁特殊教育师范高等专科学校对比江西工商职业技术学院哪个好 附分数线排名2025-05-22 09:10:51
卡夫食品笔试题和面试题答案及答案2023-08-19 01:31:21
四川农村信用社金融类笔试题和面试题答案及答案2023-08-21 07:43:55
惠普数据库类笔试题和面试题答案2023-08-25 17:52:45 




