APP下载
首页
>
财会金融
>
2024年物联网知识题库
搜索
2024年物联网知识题库
题目内容
(
单选题
)
以下关于 WinForms 窗体的方法错误的说法是()

A、 Close()方法为关闭窗体

B、 Show()方法为显示窗体

C、 ShowDialog()方法为显示模式窗体

D、 Hide()方法为卸载窗体

答案:D

解析:

2024年物联网知识题库
SqlCommand对象的方法不包括( )
https://www.shititong.cn/cha-kan/shiti/0001eb89-18dc-6c4b-c0b0-e819a112ab00.html
点击查看题目
C#中,新建一字符串变量str,并将字符串"Tom's Living Room"保存到串中,则应该使用下列哪条语句()
https://www.shititong.cn/cha-kan/shiti/0001eb89-18dd-98f1-c0b0-e819a112ab00.html
点击查看题目
以下关于 WinForms 窗体的方法的说法正确的是()
https://www.shititong.cn/cha-kan/shiti/0001eb89-18dc-f8ba-c0b0-e819a112ab00.html
点击查看题目
C#中的事件处理有 3 个步骤:1、订阅事件 2、定义事件 3、发生事件时通知订阅者, 正确的顺序是
https://www.shititong.cn/cha-kan/shiti/0001eb89-18dc-5582-c0b0-e819a112ab00.html
点击查看题目
在SQL Server 2005中,查找 student 表中所有身份证号码CardNo 的前三位为010或020的记录,以下语句正确的是( )
https://www.shititong.cn/cha-kan/shiti/0001eb89-18dd-3d13-c0b0-e819a112ab00.html
点击查看题目
在ADO.NET中,用于执行数据库插入、更新和删除操作的对象是()
https://www.shititong.cn/cha-kan/shiti/0001eb89-18de-26ae-c0b0-e819a112ab00.html
点击查看题目
下列()控件可以用于多选操作
https://www.shititong.cn/cha-kan/shiti/0001eb89-18de-0913-c0b0-e819a112ab00.html
点击查看题目
下列语句创建了()个string 对象 string[,] strArray = new string[3][4];
https://www.shititong.cn/cha-kan/shiti/0001eb89-18dd-a39c-c0b0-e819a112ab00.html
点击查看题目
在三层架构中,DataGridView控件属于()层次
https://www.shititong.cn/cha-kan/shiti/0001eb89-18dd-f797-c0b0-e819a112ab00.html
点击查看题目
在 SQL 中,对查询结果分组使用()子句
https://www.shititong.cn/cha-kan/shiti/0001eb89-18dd-0f99-c0b0-e819a112ab00.html
点击查看题目
首页
>
财会金融
>
2024年物联网知识题库
题目内容
(
单选题
)
手机预览
2024年物联网知识题库

以下关于 WinForms 窗体的方法错误的说法是()

A、 Close()方法为关闭窗体

B、 Show()方法为显示窗体

C、 ShowDialog()方法为显示模式窗体

D、 Hide()方法为卸载窗体

答案:D

解析:

分享
2024年物联网知识题库
相关题目
SqlCommand对象的方法不包括( )

A. ExecuteNonQuery()

B. ExecuteReader()

C. ExecuteScalar()

D. SelectAll()

解析:

https://www.shititong.cn/cha-kan/shiti/0001eb89-18dc-6c4b-c0b0-e819a112ab00.html
点击查看答案
C#中,新建一字符串变量str,并将字符串"Tom's Living Room"保存到串中,则应该使用下列哪条语句()

A. string str = "Tom\'s Living Room";

B. string str = "Tom's Living Room";

C. string str("Tom's Living Room");

D. string str("Tom"s Living Room");

解析:

https://www.shititong.cn/cha-kan/shiti/0001eb89-18dd-98f1-c0b0-e819a112ab00.html
点击查看答案
以下关于 WinForms 窗体的方法的说法正确的是()

A. Close()方法为关闭窗体

B. Show()方法为显示窗体

C. ShowDialog()方法为显示模式窗体

D. Hide()方法为卸载窗体

解析:

https://www.shititong.cn/cha-kan/shiti/0001eb89-18dc-f8ba-c0b0-e819a112ab00.html
点击查看答案
C#中的事件处理有 3 个步骤:1、订阅事件 2、定义事件 3、发生事件时通知订阅者, 正确的顺序是

A. 123

B. 321

C. 132

D. 213

解析:

https://www.shititong.cn/cha-kan/shiti/0001eb89-18dc-5582-c0b0-e819a112ab00.html
点击查看答案
在SQL Server 2005中,查找 student 表中所有身份证号码CardNo 的前三位为010或020的记录,以下语句正确的是( )

A. select * from student where cardno like '010%' or cardno like '020%'

B. select * from student where cardno like '010%' or '020%'

C. select * from student where cardno like '0[1,2]0%'

D. select * from student where cardno like '0(1,2)0%'

解析:

https://www.shititong.cn/cha-kan/shiti/0001eb89-18dd-3d13-c0b0-e819a112ab00.html
点击查看答案
在ADO.NET中,用于执行数据库插入、更新和删除操作的对象是()

A. DataSet

B. DataTable

C. DataView

D. Command

解析:

https://www.shititong.cn/cha-kan/shiti/0001eb89-18de-26ae-c0b0-e819a112ab00.html
点击查看答案
下列()控件可以用于多选操作

A. CheckBox

B. RadioButton

C. ComboBox

D. ListBox

解析:

https://www.shititong.cn/cha-kan/shiti/0001eb89-18de-0913-c0b0-e819a112ab00.html
点击查看答案
下列语句创建了()个string 对象 string[,] strArray = new string[3][4];

A. 0

B. 3

C. 4

D. 12

解析:

https://www.shititong.cn/cha-kan/shiti/0001eb89-18dd-a39c-c0b0-e819a112ab00.html
点击查看答案
在三层架构中,DataGridView控件属于()层次

A. 数据访问层

B. 业务逻辑层

C. 表示层

D. 数据传输层

解析:

https://www.shititong.cn/cha-kan/shiti/0001eb89-18dd-f797-c0b0-e819a112ab00.html
点击查看答案
在 SQL 中,对查询结果分组使用()子句

A. GROUP BY

B. AVG

C. INNER JOIN

D. SUM

解析:

https://www.shititong.cn/cha-kan/shiti/0001eb89-18dd-0f99-c0b0-e819a112ab00.html
点击查看答案
试题通小程序
试题通app下载