一.选择,填空题
1.在ADO.NET中,对于Command对象的ExecuteNonQuery()方法和ExecuteReader()方法,下面叙述错误的是(C)。
a)insert、update、delete等操作的Sql语句主要用ExecuteNonQuery()方法来执行;
b)ExecuteNonQuery()方法返回执行Sql语句所影响的行数。
c)Select操作的Sql语句只能由ExecuteReader()方法来执行;~
d)ExecuteReader()方法返回一个DataReder对象;
- 面向对象的语言具有__继承性_性、_封装性_性、_多态性 性。
3.能用foreach遍历访问的对象需要实现 ________________接口或声明________________方法的类型。(@)
答:IEnumerable 、 GetEnumerator()
4.在C#中,表示一个字符串的变量应使用以下哪条语句定义?( B )
A. CString str;
B. string str;
C. Dim str as string
D. char * str;
5.在C#编制的财务程序中,需要创建一个存储流动资金金额的临时变量,则应使用下列哪条语句?( A )
A. decimal theMoney;
B. int theMoney;