| ( | | ) | 1.
| 在Excel VBA的即時視窗輸入 print 1 & 2 & 3 請問會顯示(1)123
(2)0
(3)1+2+3
(4)6
|
| ( | | ) | 2.
| 在Excel VBA的中斷模式時,按那一個按鈕可以逐一行執行(1)F5
(2)shift+F8
(3)Ctrl+Shift+F9
(4)F8
|
| ( | | ) | 3.
| 在Excel VBA要強制宣告變數才可以使用,要在程式的最上方加上(1)Option Explicit
(2)Option
(3)Explicit
(4)dim
|
| ( | | ) | 4.
| 在Excel VBA的即時視窗輸入 print 1+2+3 請問會顯示(1)1+2+3
(2)6
(3)0
(4)123
|
| ( | | ) | 5.
| 在Excel VBA的即時視窗輸入 print instr("1+2=3","=") 請問會顯示(1)2
(2)3
(3)4
(4)1
|
| ( | | ) | 6.
| 在Excel VBA的即時視窗輸入 print lcase("How are you")請問會顯示(1)How Are You
(2)HOW ARE YOU
(3)How are you
(4)how are you
|
| ( | | ) | 7.
| 在Excel VBA的即時視窗輸入 print left("N1234",1) 請問會顯示(1)1
(2)2
(3)N
(4)4
|
| ( | | ) | 8.
| 請問 此圖程式執行結果(1)在變數i>5時會中斷程式
(2)在變數i不等於5時會中斷程式
(3)在變數i=5時會中斷程式
(4)在變數i<5時會中斷程式
|
| ( | | ) | 9.
| 在Excel VBA的即時視窗輸入? Mid("daylong", 2, 3)請問會顯示(1)yl
(2)ylo
(3)ay
(4)ayl
|
| ( | | ) | 10.
| 在Excel VBA的即時視窗輸入 print len(trim(" 1+2=3 ")) 請問會顯示(1)6
(2)0
(3)4
(4)5
|
| ( | | ) | 11.
| 在Excel VBA中小於等於的符號是(1)>=
(2)=>
(3)<=
(4)=<
|
| ( | | ) | 12.
| 在Excel VBA的即時視窗輸入 print right("N1234",1) 請問會顯示(1)N
(2)4
(3)1
(4)2
|
| ( | | ) | 13.
| 在Excel VBA中不等於的符號是(1)!=
(2)<>
(3)>=<
(4)==
|
| ( | | ) | 14.
| 請問 此圖i若變成95,執行時會在即時視窗顯示(1)丁
(2)甲
(3)乙
(4)丙
|
| ( | | ) | 15.
| 請問 此圖i若變成95,執行時會在即時視窗顯示(1)丁
(2)甲
(3)乙
(4)丙
|
| ( | | ) | 16.
| 在Excel VBA的即時視窗輸入 print 1 & 2 + 3 請問會顯示(1)0
(2)15
(3)123
(4)6
|
| ( | | ) | 17.
| 在Excel VBA的即時視窗輸入 print mid("N1234",2,1) 請問會顯示(1)1
(2)2
(3)3
(4)N
|
| ( | | ) | 18.
| 在Excel VBA的即時視窗輸入 print ucase("How are you")請問會顯示(1)How are you
(2)how are you
(3)How Are You
(4)HOW ARE YOU
|
| ( | | ) | 19.
| 在Excel VBA的即時視窗輸入 print len("中文字abc")請問會顯示(1)0
(2)6
(3)9
(4)3
|
| ( | | ) | 20.
| 在ExcelVBA中要將3顯示在即時視窗要如何使用(1)print 3
(2)debug.print 3
(3)echo 3
(4)debug.echo 3
|