单选题 设有如下变量声明:
Dim TestDate AS Date
为变量TestDate正确赋值的表达方式是
  • A. TestDate=#1/1/2002#
  • B. TestDate=#"1/1/2002"#
  • C. TestDate=Date("1/1/2002")
  • D. TestDate=Format(m/d/yy,"1/1/2002")
【正确答案】 A
【答案解析】[解析] 日期型常量的一般表示形式是; mm/dd/yyyy,如2002年1月20日可表示为 #1/20/2002# 为避免与字符串型常量相混淆,日期常量要用“#”括起来。