下列哪些函数功能是对全局表进行修改?( )
A: gettablestr(tablename, row, col)
B: settablestr(tablename, row, col, “string”)
C: gettablenum(tablename, row, col)
D: settablenum(tablename, row, col, value)
A: gettablestr(tablename, row, col)
B: settablestr(tablename, row, col, “string”)
C: gettablenum(tablename, row, col)
D: settablenum(tablename, row, col, value)
举一反三
- 在VBA中,将某个单元格的背景填充为绿色,文字颜色改为蓝色,则正确的是 A: Cells(row, col).Interior.Color = RGB(0, 255, 0):Cells(row, col).Font.Color = RGB(0, 0, 255) B: Cells(row, col).Interior.Color = RGB(0, 0, 255):Cells(row, col).Font.Color = RGB(0, 255, 0) C: Cells(row, col).Interior.Color = RGB(255, 255, 255):Cells(row, col).Font.Color = RGB(0, 0, 255) D: Cells(row, col).Interior.Color = RGB(0, 0, 0):Cells(row, col).Font.Color = RGB(0, 0, 255)
- 以下两行循环的嵌套,可以打印出倒三角(上大下小)的是: A: row 从 1 循环到 N col 从 1 循环到 N 输出 “ B: “ C: row 从 1 循环到 N col 从 1 循环到 row 输出 “ D: “ E: row 从 1 循环到 N col 从 1 循环到 N + 1 - row 输出 “ F: “ G: row 从 1 循环到 N col 从 1 循环到 row - N 输出 “ H: “
- Mysql 中创建触发器的语句格式正确的是( )。 A: create trigger… for each row … B: create trigger… on…for each row … C: create trigger… on…for each row D: create trigger… on tableName
- Bootstrap布局的思想使用容器( )。 A: contain B: row C: container D: col
- 下列定义类的格式,和创建对象格式正确的是() A: public class Cell{ private int row; int col; public void getCellInfo(){System.out.println(row+":"+col); }} B: 创建对象的格式:Cell c=new Cell(); C: public class Cell(){ private int row; int col; public void getCellInfo(){System.out.println(row+":"+col); }} D: 创建对象的格式:Cell c=new Cell;