模拟题

模拟题1:

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

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

[if !supportLists]1. [endif]每个数据库可以有一个或多个事务日志文件,其扩展名为()。

A. MDF     B.NDF

C. LDF D.DBF

[if !supportLists]2. [endif]C#中导入某一命名空间的关键字是(     )。

[if !supportLists]A. [endif]using   B. use   C. import       D. include

[if !supportLists]3. [endif]在类的定义中,类的()描述了该类的对象的行为特征。

[if !supportLists]A. [endif]类名B. 方法  C. 所属的命名空间  D. 私有域

[if !supportLists]4. [endif]在WinForm窗体中,ListView控件具有多种显示视图,其中不包括()。

A.详细视图                        B.超大图标

C.大图标                          D.平铺

[if !supportLists]5. [endif]在C#中,下列选项()不是异常处理的结构。

[if !supportLists]A. [endif]try...catch

[if !supportLists]B. [endif]try...finally

[if !supportLists]C. [endif]try...catch...finally

[if !supportLists]D. [endif]catch...finally

[if !supportLists]6. [endif]在WinForm窗体中,关于定时器Timer,下列说法有误的是()。

[if !supportLists]A. [endif]Timer控件用于定时引发事件

[if !supportLists]B. [endif]定时间隔由属性Interval设置,其单位是秒

[if !supportLists]C. [endif]定时引发的事件是Tick事件

[if !supportLists]D. [endif]可以通过Enabled属性启动或停止定时器

[if !supportLists]7. [endif]下列关于Windows窗体的说法,错误的是()。

[if !supportLists]A. [endif]Windows窗体也是对象

[if !supportLists]B. [endif]窗体类是Form

[if !supportLists]C. [endif]Windows应用程序中只能有一个窗体

[if !supportLists]D. [endif]可以通过设置窗体的属性,个性化地展示窗体

[if !supportLists]8. [endif]引用ListBox(列表框)最后一个数据项应使用(     )语句

A. ListBox1.Items[ListBox1.Items.Count]

B. ListBox1.Items[ListBox1.SelectedIndex]

C. ListBox1.Items[ListBox1.Items.Count-1]  

D. ListBox1.Items[ListBox1.SelectedIndex-1]

[if !supportLists]9. [endif]如果x=35, y=100,下面代码的输出结果是(  )。

if (x < 20 || x > 30)

{

       if (y >= 100)

       {

              Console.WriteLine("危险 ");

       }

        else

       {

              Console.WriteLine("报警 ");

        }

}

else

{

       Console.WriteLine("安全 ");

}

[if !supportLists]A. [endif]危险  B. 报警  C. 报警  安全   D. 危险 安全

[if !supportLists]10. [endif]在C#中创建类的实例需要使用的关键字是( )

[if !supportLists]A. [endif]this B. base C. new  D. as

[if !supportLists]11. [endif]在SQL Server中,要防止大于100的数被保存到int类型的列,可以使用(      )。

A. 主键约束       B.限制约束           C. 外键约束        D.检查约束

[if !supportLists]12. [endif]在HTML中,下列关于表单的get和post方法描述错误的是()

A. post方法更安全

B. get方法只能提交少量数据

C. get方法传递的数据对客户端是不可见

D. 表单默认为post提交

[if !supportLists]13. [endif]在css中,下列()不是定位页面元素的方式。

A.left

B.absolute 

C.relative

D.fixed

[if !supportLists]14. [endif]在HTML中,利用(    )标记来构建分层

A.

B.
C. D.

[if !supportLists]15. [endif]在C#中,静态变量和实例变量的区别有(    )【选两项】

A. 静态变量就是变量定义后它的值是不能再改变的

B. 静态变量的作用就是所有的实例对象共用一个内存空间

C. 实例变量就是只能通过类名访问的属性

D. 实例变量是每创建一个实例后该变量都是重新创建的,相互之间没有关系

[if !supportLists]16. [endif]在SQL Server数据库中,有goods(商品)表,包含字段:GID(编号)、Gname(商品名称)、price(价格)现查找所有商品中价格最高的前5件商品信息,下列SQL语句正确的是(     )

A. select top 5 from goods order by price desc

B. select top 5 * from goods group by price desc

C. select top 5 * from goods group by price

D. select top 5 * from goods order by price desc

[if !supportLists]17. [endif]对于主键的说法错误的是()

A. 主键字段输入的数据不允许重复

B. 主键字段的数据,一定是自动增长数据类型,不允许输入

C. 若主键由多个列组合而成,则其中某一列可以存在重复值

D. 主键字段可以是字符数据类型

[if !supportLists]18. [endif]下列查询条件()可以查询出客户表中的address包含“武汉”的记录

A. Where address='%武汉%' B. Where address is '武汉'

C. Where address like '%武汉%' D. Where address like '武汉'

[if !supportLists]19. [endif]要退出应用程序的执行,应执行下列的()语句。 

A. Application.Exit();  B. Application.Exit;

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

[if !supportLists]20. [endif]在ADO.NET中,为访问DataTable对象从数据源提取的数据行,可使用DataTable对象的(     )属性。

A. Rows  B. Columns    C. Constraints   D. DataSet

[if !supportLists]21. [endif]()标记用于将文字显示为粗体字。

  A.

  B.

  C.

  D.

[if !supportLists]22. [endif]在C#中,下列表达式计算正确的是(     )。【选两项】

A. 10%3=3         B. 10/3=3            C. 10%3=1    D. 10/3=1

[if !supportLists]23. [endif]在C#中,下列代码运行结果是(     )。

int[] names = new int[]{4,3,2,1};

Array.Sort(names);

foreach(int name in names)

{

Console.Write(name);

}

A. 4321      B. 1234    C. 4123        D. 3214

[if !supportLists]24. [endif]在WinForm中,为了防止用户无意关闭窗体,需要在(     )事件中编写代码,提示用户是否关闭窗体。

A. FormClosing B. FormClosed         C. Load       D. VisibleChanged

[if !supportLists]25. [endif]在ADO.NET中,DataReader对象用于从数据库中检索只读的数据,假设存在Command对象command,则使用以下(     )语句可以创建一个DataReader对象。

A. SqlDataReader dtReader=command.ExecuteReader();

B. SqlDataReader dtReader=new SqlDataReader(command.ExecuteReader);

C. SqlDataReader dtReader=ExecuteReader();

D. SqlDataReader dtReader=command.Excute();

[if !supportLists]26. [endif]在WinForm高级控件中,使用工具条控件可以创建功能非常强大的工具栏,工具栏上可以包含以下控件中除了(     )控件。

A. 按钮

B. 文本框

C. 标签

D. 计时器

[if !supportLists]27. [endif]()控件组合了TextBox控件和ListBox控件的功能。

[if !supportLists]A. [endif]ComboBox        B. Label           C. ListView        D. DomainUpDown

[if !supportLists]28. [endif]若要使TextBox中的文字不能被修改,应对(   )属性进行设置。

[if !supportLists]A. [endif]Locked   B. Visible  C. Enabled   D. ReadOnly

[if !supportLists]29. [endif]在C#语言中,下列代码执行后c的值是(      )。

int a = 3; int b = ++a; b++; int c = a + b

[if !supportLists]A. [endif]6               B. 7               C. 8               D. 9

[if !supportLists]30. [endif]在CSS中为DIV设置如下样式,则该标签的实际高度为()。

div{height:200px;padding:10 20px;border:1px;}

A.200px

B. 221px

C. 222px

D. 242px

[if !supportLists]31. [endif]下列选项中,可以设置文本在容器中水平居中的CSS样式是()。

A. text-align:center B. margin:auto 10px

C. margin:10px auto D. vertical-align:middle

[if !supportLists]32. [endif]下列选项中,可以设置页面中某个DIV标签相对于页面水平居中的CSS样式是

()。

A. padding:0px auto B. text-align:center

C. vertical-align:middle D. margin:0px auto

[if !supportLists]33. [endif]CSS样式background-position:10px -10px 代表的意义是()

A.背景图片向左偏移10px,向下偏移10px

B.背景图片向左偏移10px,向上偏移10px

C.背景图片向右偏移10px,向下偏移10px

D.背景图片向右偏移10px,向上偏移10px

[if !supportLists]34. [endif]C#语言中,关于return语句的说法,错误的是()。A.有返回值的方法中必须要使用return语句

B.如果方法的返回值类型为void,则该方法中不能使用return语句

C.return语句可以结束方法的调用

D.return语句只能返回一个值

[if !supportLists]35. [endif]有以下C#代码,int i=1;  while (i<=5)  i++; 该语句执行后,变量i的值是( ) 

A.5     

B.6 

  C.因为是死循环,所以i的值还是1

D.7 

[if !supportLists]36. [endif]在WinForm窗体中,如果不使用分组控件而直接拖拽2个单选框,则下列说法正确的是()

A. 两个单选按钮可以同时被选中,即被看作是两个单独的组

B. 两个单选按钮被自动默认为一组

C. 运行报错,提示必须使用分组控件对单选按钮进行分组

D. 以上都不对

[if !supportLists]37. [endif]在WinForm窗体中有一个年龄文本框 txtAge,下面()代码可以获得输入的年龄。

A. int age = Convert.ToInt32(txtAge); B. int age = int.Parse(txtAge);

C. int age = Convert.ToInt32(txtAge.Text); D. int age = txtAge.Text;

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

A.Label

B. Control

C. Window

D. Form

[if !supportLists]39. [endif]在HTML表单控件下拉列表中,如果要某一项被选中,以下正确的()。

A.

B.

C.

D.

[if !supportLists]40. [endif]SQL语言中,条件表示年龄在20至30之间的表达式为()。

A. IN (20,30) B. BETWEEN 20 OR 30

C. BETWEEN 20 AND 30 D. IN (20-30)

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

A. btnOk.Visible=true

B. btnOk.Enable=true

C. btnOk.Enable=false

D. btnOk.Visible=false

[if !supportLists]42. [endif]关于ListView控件objListView,要获取其选中的 ListViewItem的文本,代码是()。

[if !supportLists]A. [endif]string str = objListView.Text

[if !supportLists]B. [endif]string str = objListView.Items[0].Text

C. string str = objListView.SelectedItems[0].Text

D. string str = objListView.SelectedItem.Text

[if !supportLists]43. [endif]ADO.NET由()两部分组成。

A. Connection和DataSet B. .NET Framework数据提供程序和DataSetC. .NET Framework数据提供程序和Connection D. Command和Connectin

[if !supportLists]44. [endif]HTML中要创建一个左右框架,右边框架宽度是左边框架的3倍,以下语句正确的是()。

A. public void test(string a,string b)

B.

C.

D. 

[if !supportLists]45. [endif]在C#程序中,下列关于DataSet的说法错误的是()。

A.可以理解成一个临时的数据库        

B. 在与数据库断开连接后,DataSet中的数据会消失

C.在DataSet中可以包含多个DataTable        

D. DataSet实际上是从数据源中检索到的数据在内存中的缓存

[if !supportLists]46. [endif]在.NET的Windows应用程序中,关于MDI窗体说法错误的是()。

A. 每个MDI应用程序只能有一个父窗体

B. 关闭MDI父窗体时自动关闭所有打开的MDI子窗体

C. 启动一个MDI应用程序时,首先启动MDI子窗体

D. 可以同时打开多个子窗体

[if !supportLists]47. [endif]C#中如果想将4个数按冒泡排序升序排列,则需要比较()次

A. 6   B. 8

C. 10 D. 12

[if !supportLists]48. [endif]关于C#语言中的switch case语句,下列说法正确的是()。

A.switch判断的表达式可以是整型或字符型,但不能是字符串型

B. 在该语句中,最多不能超过五个case子句

C. 在该语句中,只能有一个default子句

D. 在该语句中,只能有一个break语句

[if !supportLists]49. [endif]在WinForm程序中可以通过(    )控件来实现以下的界面示例

A、工具栏

B、状态栏

C、菜单栏

D、文本框

[if !supportLists]50. [endif]在ADO.NET中,下列代码运行时将出现异常的是()。

SqlDataReader reader=sqlCmd.ExecuteReader();//1

reader.Read();  //2

reader.Close();  //3

reader.Read();  //4

A、1

B、2

C、3

D、4

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