Accp6.0
选择题(针对以下题目,请选择最符合题目要求的答案。针对每一道题目,所有答案都选对,则该题得分,所选答案错误或不能选出所有答案,则该题不得分。其中1-20每题1.5分,21-40每题2分,41-50每题3分。)
1 | 在C# 中,关于如下代码说法错误的是( )。 | |
using System; //.... .. namespace HelloWorld { cIass Program { static void Main(string[ ] args) { //...... } } } (选择一项) | ||
a) | 使用namespace 关键字定义命名空间 | |
b) | 命名空间可以提高管理代码和使时代码的效率 | |
c) | using 的作用是用来引入其他命名空间 | |
d) | 类名Program 必须与所属源文件的名字一样 | |
2 | 在HTML 中,显示为水平线的标签为()o (选择→项) | |
a) | <h1> | |
b) | <div> | |
c) | <br> | |
d) | <hr> | |
3 | 在WinForms 中,窗体对象的ShowDialogO方法的返回值是( )类型。(选择一项) | |
a) | int | |
b) | void | |
c) | DialogResult | |
d) | ShowValue | |
4 | 在HTML 中,要创建一个隐藏域,则应设置<input>标签的type 属性为()o 选择一项) | |
a) | file | |
b) | hidden | |
c) | submit | |
d) | text | |
5 | 在C#控制台应用程序中运行如下代码,输出的结果是()。 | |
int CurrentDay = 3; switch (CurrentDay) { case 3: case 4: Console. WriteLine (" Thursday" ); break; case 1: Console. WriteLine("Monday"); break; case 2: Console.WriteLine("Tuesday"); break; default: Console.WriteLine("Week" ); break; } (选择一项) | ||
a) | Thursday | |
b) | Monday | |
c) | Week | |
d) | 编译错误 | |
6 | 在C# 中,StringBuilder 类的()方法可以直接将默认的行终止符追加到当前对象的末尾。(选择一项) | |
a) | Append() | |
b) | AppendLine() | |
c) | AppendFormat() | |
d) | Insert() | |
7 | 在Java 中,如下代码横线处为( )时,输出结果是"hello"。 | |
public class Test { public static String str="hello"; public static void main(String[] args) { System.out.print(__________); } }(选择二项) | ||
a) | Test. str | |
b) | new Test().str | |
c) | Test().str | |
d) | 任何代码都无法满足 | |
8 | WinForms 中设置控件的( ) 属性可以设置该控件相对于窗体的某个边缘的距离保持不变。(选择一项) | |
a) | AutoSize | |
b) | Locatìon | |
c) | Locked | |
d) | Anchor | |
9 | 在Java 中,下列说法正确的是() 。(选择一项) | |
a) | Java 基本数据类型有int 、char 、String 等 | |
b) | 2__name 是一个合法的变量名 | |
c) | name与 Name 表示同一个变量 | |
d) | 变量需要赋值后,才能使用 | |
10 | 在Java 中,关于声明String 对象,下面语句错误的是( )。(选择一项) | |
html中提交表单用什么属性 | ||
a) | String str = new String(); | |
b) | String str = "hello "; | |
c) | String str = new String("hello"); | |
d) | String str = new String('h'); | |
11 | 在WinForms 中,下列关于菜单栏控件MenuStrip 的属性和事件说法错误的是( ) 。(选择一项) | |
a) | Name 表示代码中菜单对象的名称 | |
b) | Items 表示在菜单中显示的项的集合 | |
c) | Text 表示与菜单相关联的文本 | |
d) | DropDownltems 表示在父菜单中显示的顶的集合 | |
12 | 在HTML 中,如下图所示,当把鼠标指针悬停在图片上时,显示文字" 蝴蝶”;要实现此效果应该设置<img>标签的() 的值为"蝴蝶" (选择一项) | |
a) | height 属性 | |
b) | title 属性 | |
c) | src 属性 | |
d) | width 属性 | |
13 | 在WinForms 中,设置窗体的( ) 属性值为CenterScreen 时,该窗体运行后出现在屏幕中央。(选择一项) | |
a) | BeginPosition | |
b) | StartPositon | |
c) | FirstPostion | |
d) | DefaultPosition | |
14 | 在Java 中,下列语句输出的结果是()。 | |
public class Test { public static void main(String args[]) { int age=21; String name="Anne"; System.out. println(" name="name+" ,age= " +age) ; } }(选择一项) | ||
a) | name=Anne ,age=21; | |
b) | name=Anne, age=2 1 | |
c) | 编译错误 | |
d) | 运行错误 | |
15 | 下列关于Java 中方法的说法错误的是()。(选择一项) | |
a) | 对象执行的操作可以通过编写类的方法来实现 | |
b) | 方法可以带参数,也可以不带参数 | |
c) | 方法调用的形式必须是: 类名.方法名 | |
d) | 方法可以有返回值,也可以没有返回值 | |
16 | 若要使用CSS 控制字体的大小,则应该设置()属性。(选择一项) | |
a) | font-fami1y | |
b) | font-weight | |
c) | font-size | |
d) | font-variant | |
17 | 下列Java 代码中,正确的是()。(选择一项) | |
a) | "hello ".indexOf("e")返回的值是"2" | |
b) | “hello".substring(2)返问的字符申是"ello" | |
c) | “hello".substring (2 ,3)返回的字符串是”l” | |
d) | “hello ". tri m()返回的字符串是” hello" | |
18 | Java 中mainO方法为程序的入口方法,下列选项项()是正确的写法。(选择一项) | |
a) | public static void main(String args[]){} | |
b) | private void static main(String [] args){} | |
c) | public static void main (int args) {} | |
d) | private static String main(String args){} | |
19 | 在HTML 中,表示双引号的为()。(选择一项) | |
a) | " | |
b) | < | |
c) | > | |
d) | ||
20 | 在Winforms 中,有如下代码: MessageBox.Show(" 是否删除?","提示" MessageBoxButtons. YesNoCancel,____________ ); 如果想实现如图所示效果,需在下划线处舔加代码( )。(选择一项) | |
a) | MessageBoxIcon.OK | |
b) | MessageBoxIcon.Stop | |
c) | MessageBoxIcon.Cancel | |
d) | MessageBoxIcon.Infomation | |
21 | 在HTML 中,如下图所示,要在标题栏中显示"我的第一个网页"需要使用()标 签。(选择一项) | |
a) | <div> | |
b) | <title> | |
c) | <meta> | |
d) | <a> | |
22 | 在Java 中,下列语句输出的结果是()。 | |
public clss Test { public static void main(String args[]) { System.out. print(" hello' '); System.out.println("world"); } } (选择一项) | ||
a) | hello world | |
b) | hello world | |
c) | helloworld | |
d) | hello world | |
23 | 在WinForms 中,在窗体FrmMain 中有如下代码 private void btOK _ Click( object sender, .Eve\1tÁrgs e) { FrmList frmList = new .FrmList 0; frmList.MdiParent = this; frmList.Show(); } 则可能( )。(选择一项) | |
a) | 触发"btOK Click " 事们打开FrmMain 窗体 | |
b) | FrmList 窗体以FrmMain 窗体为MDl父窗体打开 | |
c) | FrmList 窗体以btOK 窗体为MDI 父窗体打开 | |
d) | FrmMain 窗体以FrmList 窗体为MDI 父窗体打升 | |
24 | 在WinForms 应用程序中,如果。lcckBox 控件的Checked 属性值设置为False ,则 程序运行后( ).0 (选择一项) | |
a) | 此CheckBox 不可见 | |
b) | 此CheckBox 不被选中 | |
c) | 此CheckBox 不显示文本信息 | |
d) | 此CheckBox 不被加载 | |
25 | 在Java 中,以下变量命名正确的是()。(选择二项) | |
a) | string | |
b) | void | |
c) | _&c | |
d) | _ name | |
26 | 下列关于控件ListView 的属性的描述错误的是( )。(选择一项) | |
a) | Columns 属性表示" 详细信息"视图中显示的行 | |
b) | MultíSelect 属性表示是否允许选择多项 | |
c) | View 属性用于设置ListVíew 的视图模式 | |
d) | FullRowSelect 属性表示当选中一项时,它的子项是否同该项一起突出显示 | |
27 | 在Java 中,如下代码的输出结果是()。 | |
public cIass Test { public static void main(String args[]) { int a = 1, b = 2; int c = a + b++; System.ou t.prin tln( c++); System.out.println(c + a); } } (选择一项) | ||
a) | 3 5 | |
b) | 4 5 | |
c) | 3 4 | |
d) | 4 4 | |
28 | 下列选项中属于SqlDataAdapter 的属性的是( )。(选择一项) | |
a) | SqlCommand | |
b) | AddCommand | |
c) | SqlConnection | |
d) | SelectCommand | |
29 | 在WinForms 应用程序中,有如下代码: | |
DataSet ds = new DataSet(); int num = ds.Tables.Count; 运行后num的值是( ) 0 (选择一项) | ||
a) | 0 | |
b) | 1 | |
c) | 2 | |
d | null | |
30 | 在C# 中,对如下所示代码进行冒泡排序,则需进行( )次比较。 int[] array=new{3,4,2,1,5} (选择一项) | |
a) | 5 | |
b) | 9 | |
c) | 10 | |
d) | 11 | |
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论