1. [单选题]一个汉字或中文标点符号在计算机中占用( )个字节的存储空间。
A. 1
B. 2
C. 4
D. 8
2. [单选题]在计算机中所有的数值采用二进制的()表示。
A. 原码
B. 反码
C. 补码
D. ASCII码
3. [多选题]下面语句中,表示过虑条件是vend_id=1002或vend_id=1003的是( )
A. select * from products where vend_id=1002 or vend_id=1003
B. select * from products where vend_id in (1002,1003);
C. select * from products where vend_id not in (1004,1005);
D. select * from products where vend_id=1002 and vend_id=1003