收藏 分享(赏)

c#_oop试题-精品版.doc

上传人:无敌 文档编号:746769 上传时间:2018-04-20 格式:DOC 页数:23 大小:63KB
下载 相关 举报
c#_oop试题-精品版.doc_第1页
第1页 / 共23页
c#_oop试题-精品版.doc_第2页
第2页 / 共23页
c#_oop试题-精品版.doc_第3页
第3页 / 共23页
c#_oop试题-精品版.doc_第4页
第4页 / 共23页
c#_oop试题-精品版.doc_第5页
第5页 / 共23页
点击查看更多>>
资源描述

1、1. CLR 为 .NET 提供以下方面的功能或者服务 , 除了( )a)垃圾回收b)代码验证和类型安全c)代码访问安全d)自动消除程序中的语法错误2. .NET 框架的核心组件是: ( ) (选择)a) CLSb) 公共语言运行时c) 框架类库d) MSIL3. 以下定义命名的代码正确的是: ( ) (选择两项)a) public namespace MySchool b) MySchool namespacec) namespace Citynamespace Classd) namespace MySchool.Class4. 在 C# 类中 ,可以通过编写实现方法重载。( 选择二项)a

2、)具有不同返回类型的同名函数b)具有不同代码行数的同名函数c)具有不同参数个数的同名函数d)具有不同参数类型的同名函数5. 在 C#中,下列关于构造函数的特点的说法正确的是()( 选择一项 )A)一个类中只能有一个构造函数B)构造函数的名称与类名称一样,并且没有返回类型C)构造函数在对象销毁时自动执行D)构造函数的访问级别必须是 public 的6. 在 C# 中 , 可以通过装箱和拆箱实现值类型与引用类型之间相互转换 , 在下列代码中 , 有 () 处实现了装箱。 ( 选择一项 )int age =5;object o =age;o=10;age =(int)o;object oAge=ag

3、e;a)1b)2c)3d)47. C# 中 , 下列代码的运行结果是() 。 ( 选择一项 ) public class Teacherprivate string names;public Teacher(string names)this.names=names;public string thisint indexgetreturn this.namesnames.Length-index;public class teststatic void Main()string names=new string“C#“,“WinForms“,“ASP.NET“,“Web Service“;Te

4、acher tea =new Teacher(names);Console.WriteLine(tea1);a) C#b) WinFormsc) ASP.NETd) Web Service8. 在 C# 中,下列结构或者类定义正确的是 。( 选择二项 )a)public struct Personstring name;int age;public void ShowName()Console.WriteLine(name);b)public struct Personstring name;int age;public Person()Console.WriteLine(name)c)pub

5、lic class Personstring name;int age;public Person() Console.WriteLine(name);d)public class Personstring nmne;int age;public void Person(string name) Console.WriteLine(name);9. C#中对于集合 ArrayList list1 = new ArrayList() 和 Lsit list2 = new List() 的操作,没有语法错误的是: ()a) list1.Add(100);b) list2.Add(100);c) s

6、tring str = list20;d) string str = list10;10. 在 C# 中 , 下列代码的运行结果是 ( 。 ( 选择一项 )Hashtable hsStu=new Hashtable();hsStu.Add(3,“甲“); hsStu.Add(2,“乙”); hsStu.Add(1,“丙”); Console.WriteLine(hsStu3);a)甲b)乙c)丙d)311. C#中 , 下面关于静态类的描述, 错误的是( ) ( 选择两项)a) 静态类可以包含实例成员b) 静态类可以包含静态成员c) 静态类可以创建对象d) 静态类不能包含实例构造函数12. C

7、#中一下那句代码可以创建一个文件 abc.txt, 并且将对文件进行写入操作 . 若文件 abc.txt 已经存在直接改写, 不存在则创建.a) FileStream fs = new FileStream(“abc.txt”, FileMode.Create);b) FileStream fs = new FileStream(“abc.txt”, FileAccess.Write);c) FileStream fs = new FileStream(“abc.txt”, FileMode.Append);d) FileStream fs = new FileStream(“abc.txt”

8、, FileMode.CreateNew);13. 下面关于 XML 描述错误的是( )a) XML 是可扩展标记性语言, 主要用于描述数据.b) XML 和 Html 相似,不区分大小写c) XML 文件中的标签和 Html 一样是固定的,不可自定义.d) XML 文件中的标签都是成对出现14. 在 C#中, ( )访问修饰符修饰的变量只能由当前程序集访问。 (选一项)a)publicb)protectedc)internald)private15. 分析如下的 C# 代码段, 运行后将输出() 。public class TeacherTeacher(string name)Console

9、.WriteLine(“老师的名字叫“+name);public class Test:Teacherpublic Test(string name)Console.WriteLine(“ 学生的名字叫 “+name);static void Main()Test stu=new Test (“李明“); Console.ReadLine(); a)学生的名字叫李明b)老师的名字叫李明c)老师的名字叫李明学生的名字叫李明 d)编译报错16. 在 C#中,下列代码的运行结果是 。 ( 选择一项 )public class Studentpublic virtual void Exam()Cons

10、ole.WriteLine(“学生都要考试”);public class Undergraduate:Studentpublic new void Exam()base.Exam();Console.WriteLiner(“大学生有选择考试科目的权利 “);public class Teststatic void Main()Student stu=new UndergraduateO;stu.Exam();a)学生都要考试b)大学生有选择考试科目的权利 c)学生都要考试大学生有选择考试科目的权利d) 学生都要考试17. 在 C# 中 , 下列代码的运行结果是。(选择一项)struct Stu

11、dentpublic int age;public string name;public Student(int age,string name) This.age =age;This.name =name; public class Teststatic void Main()Student stu1=new Student(18,“小芳“); Student stu2=new Student(24,“小目“);stu2=stu1;stu1.age=30;stu1.name=“ 小燕 “;Console.WriteLine(stu2.age); Console.WriteLine(stu2.name);a) 18小芳B)18小燕C)30小燕D)30小芳18. 阅读下面的代码:class Apublic virtual void printStr(string str) Console,WriteLine(str); class B: Apublic override void printStr(string str) str=str+”重写的方法”;Console.WriteLine(str); class DefaultInitializerApppublic static void Main()

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 中等教育 > 试题课件

本站链接:文库   一言   我酷   合作


客服QQ:2549714901微博号:道客多多官方知乎号:道客多多

经营许可证编号: 粤ICP备2021046453号世界地图

道客多多©版权所有2020-2025营业执照举报