模拟题3

模拟题3:

https://ks.wjx.top/jq/40080807.aspx

选择题(针对下列题目,选择符合题目要求的答案。针对每一道题目,全选对,则该题得分;所选答案错误或漏选,则该题不得分。每题2分。)

[if !supportLists]1. [endif]在HTML页面中,下列表示在当前窗口中打开网页文档的选项是(     )。

[if !supportLists]A. [endif]_self B._blank C. _top D. _parent

[if !supportLists]2. [endif]下列关于Main函数的说法,不正确的是()。

[if !supportLists]A. [endif]Main函数是控制台程序的主入口。

[if !supportLists]B. [endif]Main函数可以有多个

[if !supportLists]C. [endif]Main函数是唯一的

[if !supportLists]D. [endif]Main函数是必须要有的

[if !supportLists]3. [endif]下述C#语言代码的运行结果是()。

Static  void  Main(string[]args) SqlConnection

{

int num1=50;

int num2=30;

Console.WriteLine((num1/num2).ToString(“F2”));

}

A. 1

B. 1.00

C. 20

D. 20.00

[if !supportLists]4. [endif]在C#程序中,当变量i的值为2时,运行下面的代码块,变量result的值是(     )。

int result = 0;

switch (i) {

case 1:

result = result + i;

break;

case 2:

result = result + i * 2;

break;

case 3:

result = result + i * 3;

break;

}

A. 0 B. 2 C. 4 D. 10

[if !supportLists]5. [endif]在SQL Server中,NULL是指(     )。

A. 0             B. 空格   C. 无任何值    D. 空字符串

[if !supportLists]6. [endif]用户表(用户编号,用户姓名,性别),删除姓“王”且性别为“男”的用户,下列语句正确的是(     )。

A. delete 用户表 where 用户姓名 like '王%'  and 性别='男'

B. delete 用户表 where 用户姓名 like '%王%' and 性别='男'

C. delete 用户表 where 用户姓名 = '王%'

D. delete 用户表 where 用户姓名 like '王*'

[if !supportLists]7. [endif]SQL Server是一个(     )的数据库系统。

A. 网状型        B. 层次型     C. 关系型          D. 以上都不是

[if !supportLists]8. [endif]下列属于合法C#变量名的有(     )。

A. x_123  B. if C. 1_x D. 3x

[if !supportLists]9. [endif]窗体加载事件是()

[if !supportLists]A. [endif]Load         B. Click          C. leave             D. enter

[if !supportLists]10. [endif]在WinForm中,如果要将文本框作为密码框使用时,应设置的属性为()

[if !supportLists]A. [endif]Name          B. Caption   C. PasswordChar        D. Text

[if !supportLists]11. [endif]下列语句中,若将HTML页面的标题设置为“HTML练习”,正确写法是()。

A. HTML 练习 B. HTML练习

C. HTML 练习 D. HTML 练习

[if !supportLists]12. [endif]ABC公司组织了一个宴会来庆祝其第一个周年纪念日,该宴会是由所有30岁以下的年轻人组织的。所有30岁以下员工的信息可以从表EmployeePersonal中获得(iAge字段用于保存年龄),则下列SQL Server语句中,满足要求的是(     )。

A. SELECT * from EmployeePersonal where iAge like 30

B. SELECT * from EmployeePersonal where iAge=30

C. SELECT * from EmployeePersonal where iAge IN (30)

D. SELECT * from EmployeePersonal where iAge <30

[if !supportLists]13. [endif]在SQL Server中,如果对没有外键约束的表Employee执行delete from Employee命令,则产生的结果是(     )。

A. Employee表中的记录均未被删除

B. Employee表中的所有记录均被删除

C. Employee表中的部分记录被删除

D. 不确定

[if !supportLists]14. [endif]在ADO.NET中,下列能够提供与SQL Server数据库连接的对象是(     )。

A. Connection对象 B. SqlConnection对象

C. OleConnection 对象 D. 以上都不正确

[if !supportLists]15. [endif]在HTML页面中,下列用于定义一个单元格的标记是(     )。

A. ... B. ...

C.

...
D. ...

[if !supportLists]16. [endif]在C#中,下列变量定义与赋值正确的是(     )。

A.int a=3.2f B.float a=3.14

C.string a=教室 D.char a=’学’

[if !supportLists]17. [endif]表格是网页中的(     ),框架是由数个(     )组成的。

A. 元素,网页   B. 元素,元素   C. 网页,元素    D. 网页,网页

[if !supportLists]18. [endif]using  namespace的作用是(     )。

A. 引入命名空间   B. 使用数据库 C. 使用一个文件  D. 使用一段程序

[if !supportLists]19. [endif]在HTML中下面关于绝对地址与相对地址的说法错误的是(    )

A. 插入图像其实只是写入一个图像链接的地址而不是真的把图像插入到文档

B. 使用相对地址时,图像的链接起点是此HTML文档所在的文件夹

C. 在同一个站点中添加超链接,一般使用相对地址

D. 如果要引用其他网站的图片,推荐使用相对地址

[if !supportLists]20. [endif]在SQL Server中,用于记录用户对数据库进行的所有操作的文件是(     )。

A. 主数据文件   B. 二级数据文件   C. 日志文件   D. 备份文件

[if !supportLists]21. [endif]在HTML中可以使用表格来显示数据,下面()标签用于在HTML文档中创建表格

A.

B. 

C. 

D. 

[if !supportLists]22. [endif]在C#中,要储存结果是否正确的数据最好使用()数据类型。

A. int

B. char

C. double

D. bool

[if !supportLists]23. [endif]在HTML页面中,有如下样式规则,他的选择器为()。

P{color:red;font-size:12px;}

A. P

B. color

C. font-size

D. font-family

[if !supportLists]24. [endif]在C#语言中,用户自定义方法的访问修饰符为()时,该方法可以被其他类的成员访问。

A. public

B. private

C. static

D. void

[if !supportLists]25. [endif]在C#的条件判断据switch case 结构中,每个case条件分支都必须包含的子句是()。

A. else

B. break

C. default

D. continue

[if !supportLists]26. [endif]在C#中,Console.WriteLine()可以在控制台输出不同格式的字符串,可以使用()来实现换行输出。

A. \r

B. \t

C. \n

D. \d

[if !supportLists]27. [endif]在HTML中,通过标签的()属性制定表格的边框宽度。

A. size

B. height

C. border

D. bordercolor

[if !supportLists]28. [endif]在C#的以下变量赋值语句中,无法通过编译的是()。

A. char c1="男"

B. char c2='女'

C. int f1=128

D. double d1=1.2

[if !supportLists]29. [endif]在使用C#开发Windows应用程序时,在窗体上放置一个名为lblMessage的标签控件,用户希望此标签的宽度根据其文本内容的长短变化而变化,那么开发人员应当使用如下()语句对该标签进行初始化设计。

A. lblMessage.AutoWide=true

B. lblMessage.AutoSize=true

C. lblMessage.AutoWide=false

D. lblMessage.AutoSize=false

[if !supportLists]30. [endif]在c#语言中,使用try块、catch块和finally块处理程序中出现的异常。下列用来处理异常的结构中错误的是()。

A. catch{}finally{}

B. try{}finally{}

C. try{}catch{}finally{}

D. try{}catch{}

[if !supportLists]31. [endif]某C#类的main{}方法如下所示,则编译运行该类的输出结果是()。

public static void main(String[] args){

for(int i=0;i<10;i++){

if(i%2!=0)

break;

Console.writeline(i);

 }

}

(选择一项)

A. 13579

B. 02468

C. 0123456789

D. 0

[if !supportLists]32. [endif]在WinForm中,要设置窗体最初出现的位置,应设置其 ( ) 属性

A. Location   B. TopMost    C. StartPosition       D. WindowState

[if !supportLists]33. [endif]下列C# 的方法声明,正确的是 ( )

A. private static float GetPay(int pay, float taxRate);

B. private float GetPay(int ref pay, float ref taxRate);

C. private float static GetPay(int pay, float taxRate);

D. private not static float GetPay(int pay, float taxRate);

[if !supportLists]34. [endif]用SqlDataAdapter 将 DataSet 中的数据提交到数据库,必须具备的条件不包括(   )

A. 必须使数据库服务正在运行

B. 必须事先打开数据库连接

C. 必须使DataSet 中 DataTable 的结构和数据库中的表结构相同

D. 必须使SqlDataAdapter 包含增删改命令

[if !supportLists]35. [endif]在.NET中,程序员在代码中漏写了一个大括号,这属于(     )。

A. 逻辑错误 B. 运行时错误

C. 语法错误 D. 自定义错误

[if !supportLists]36. [endif]在C#中,下列说法正确的是(     )。

A. 命名空间应该包含在类中

B. 每个类都是为了完成一个独立的功能

C. 一个资源解决方案只能包含一个项目

D. C#源程序的扩展名是.cs

[if !supportLists]37. [endif]在C#中,去掉字符串两端空格的方法是(     )。

A. Split() B. Trim() C. Join() D. Substring()

[if !supportLists]38. [endif]在C#中,下列赋值正确的是(     )。

A. float a=′1′;    B. float a = 1f;     

C. float a = 1x;      D. float a = 1.0;

[if !supportLists]39. [endif]在Winform程序中,要退出应用程序的执行,应执行(     )语句。

[if !supportLists]A. [endif]Application.Exit(); B. Application.Exit;

C. Application.Close(); D. Application.Close;

[if !supportLists]40. [endif]在HTML页面中,下列表示换行符的选项是(     )。

A. body B. font C. br D. p

[if !supportLists]41. [endif]在C#中,下面的循环语句中,循环体执行的次数为(     )。

 for(int i=0;i

{if(i>n/2)  break;}

A. n/2         B. n/2+1       C. n/2-1      D. n-1

[if !supportLists]42. [endif]在HTML页面中,要使表格的边框不显示,应设置border的值是(     )。

A. 1 B. 0 C. 2 D. 3

[if !supportLists]43. [endif]在C#程序中,Console.WriteLine("5" + 2);的输出结果是(     )。

A. 52 B. 7 C. 2 D. 5

[if !supportLists]44. [endif]在C#程序中,下列注释代码正确的有(     )。

[if !supportLists]A. [endif]//This is a comment.  B. /*This is a comment.*/ 

C. */This is a comment.*/ D. \\This is a comment.*/

[if !supportLists]45. [endif]关于一个SQL Server的数据库的日志文件,下列说法正确的有(     )。【选两项】

A. 只能有1个日志文件 B. 可以有2个日志文件

C. 不能有3个日志文件 D. 可以有多个日志文件

[if !supportLists]46. [endif]HTML代码表示(     )。

A. 创建表格   B. 创建一个滚动菜单

C. 设置每个表单项的内容   D. 创建一个下拉框

[if !supportLists]47. [endif]在表中使用IDENTITY列时,每张表只允许有(     )IDENTITY列。

A. 一个     B. 两个       C. 三个      D. 四个

[if !supportLists]48. [endif]在数据库系统中,数据模型有三类,它们是()。

A. 实体模型、实体联系模型、关系模型  

B. 层次模型、网络模型、关系模型       

C. 一对一模型、一对多模型、多对多模型

D. 实体模型、概念模型、存储模型

[if !supportLists]49. [endif]和C#中的所有对象一样,窗体也是对象,是()类的实例。

[if !supportLists]A、[endif]Label            B、Controls            C、Form          D、System

[if !supportLists]50. [endif]在WinForm窗体中,为了禁用一个名为btnOpen的Button控件,下列做法正确的是()。

A、btnOpen.Enable=true;

B、btnOpen.Enable=false;

C、btnOpen.Visible=false;

D、btnOpen.Visible=true;

你可能感兴趣的:(模拟题3)