| ( | | ) | 1.
| 在Excel VBA中要顯示一段文字hello那一段語法是對的(1)msgbox hello
(2)msgbox "hello"
(3)say "hello"
(4)say hello
|
| ( | | ) | 2.
| MsgBox的回傳值型別是(1)string
(2)single
(3)date
(4)integer
|
| ( | | ) | 3.
| 在Excel VBA中要宣告變數I為字串語法為(1)dim I as single
(2)dim I as string
(3)dim I as date
(4)dim I as integer
|
| ( | | ) | 4.
| 插入按鈕是那個圖示(1)
(2)
(3)
(4)
|
| ( | | ) | 5.
| 在Excel 2007要儲存含有巨集的格式,檔案副檔名為(1)txt
(2)xlsm
(3)xlsx
(4)csv
|
| ( | | ) | 6.
| 在Excel VBA中要宣告變數I為日期語法為(1)dim I as integer
(2)dim I as single
(3)dim I as string
(4)dim I as date
|
| ( | | ) | 7.
| 在Excel VBA中變數的宣告要使用那一個指令(1)print
(2)set
(3)dim
(4)let
|
| ( | | ) | 8.
| 切換設計模式及執行模式圖示是(1)
(2)
(3)
(4)
|
| ( | | ) | 9.
| 在Excel VBA中物件屬性的圖示為(1)
(2)
(3)
(4)
|
| ( | | ) | 10.
| 在Excel中活頁簿的英文名稱為(1)workbook
(2)worksheet
(3)excel
(4)Application
|
| ( | | ) | 11.
| 修改Excel按鈕顯示文字是使用那一個屬性(1)value
(2)caption
(3)name
(4)text
|
| ( | | ) | 12.
| 在Excel VBA中下列那一個敍述是錯的(1)i=-i
(2)i+1=i
(3)let i=i+1
(4)i=i
|
| ( | | ) | 13.
| 在Excel物件的使用方式中是用什麼來表示階層(1)句號
(2)等號
(3)冒號
(4)減號
|
| ( | | ) | 14.
| 在Excel VBA中要宣告變數I為有小數語法為(1)dim I as date
(2)dim I as integer
(3)dim I as single
(4)dim I as string
|
| ( | | ) | 15.
| 在Excel VBA中程式碼註解是用什麼字元(1)冒號
(2)分號
(3)單引號
(4)雙斜線
|
| ( | | ) | 16.
| 在Excel VBA中列的英文為(1)row
(2)column
(3)cell
(4)x
|
| ( | | ) | 17.
| 在Excel中工作表的英文名稱為(1)worksheet
(2)excel
(3)Application
(4)workbook
|
| ( | | ) | 18.
| 在Excel VBA中要宣告變數I為整數語法為(1)dim I as single
(2)dim I as string
(3)dim I as date
(4)dim I as integer
|
| ( | | ) | 19.
| 下列那一個Excel VBA語法是正確的(1)cells(1,1)=123
(2)excel.range("a1").text=123
(3)range(a1).value=123
(4)cells("a1").value=123
|
| ( | | ) | 20.
| 變數的命名規則(1)變數名稱不可為關鍵字,例如for、next、while、public等
(2)以上皆是
(3)第一個字元需英文字母
(4)變數名稱不可包含空白、點、,逗號或其他特殊字元
|