
【名词&注释】
数据处理(data processing)、数据模型(data model)、逻辑关系(logical relation)、数据结构(data structure)、存储空间(storage space)、密切相关(closely related)、小写字母、大写字母(majuscule)、运行时(run-time)、输入输出函数
[单选题]下列叙述中,错误的是
A. 数据的存储结构与数据的处理的效率密切相关
B. 数据的存储结构与数据的处理的效率无关
C. 数据的存储结构在计算机中所占的空间不一定是连续的
D. 一种数据的逻辑结构可以有多种存储结构
查看答案&解析
举一反三:
[单选题]最常用的一种基本数据模型是关系数据模型,它的表示应采用( )。
A. 树
B. 网络
C. 图
D. 二维表
[单选题]可以用前面加带( )的表达式来设置宏的操作参数。
A. …
B. =
C. ,
D. :
[单选题]设有定义charstr[80];以下不能将输入数据first\nsecond\n读取到数组str中的语句是( )。
A. cin.get(str,strlen(str));
B. cin.getline(str,strlen(str));
C. cin>>str;
D. cin.read(str,strlen(str));
[单选题]当输入为"quert?"时,下面程序的执行结果是includemain(){ char c;c=getchar();while(c
当输入为"quert?"时,下面程序的执行结果是 #includestdio.h> main() { char c; c=getchar(); while(c!='?') { putchar(c); c=getchar(); } }
A. quert
B. Rvfsu
C. quert?
D. rvfsu?
[单选题]设在工程中有一个标准模块,其中定义了如下类型: Type stutype ino As Integer strname As String*20 strsex As String*1 smark As Single End Type 在窗体上画一个名为Connnand1的命令按钮,要求当执行事件过程Command1_Click时,在c:\的随机文件student..dat写入一条记录。下列能够完成该操作的事件过程是( )。
A. Sub Command1_C1ick() Dim student As studtype Dim record_no As Integer record_no=1 With student .ino=12 .strname="smith" .strsex="男" .smark=89 End With Open" c:\student.dat" For input As 1 len=len(student) Put 1,record_
B. Sub Command1_Click( ) Dim student As studtype Dim record_no As Integer record_no=1 With student .ino=12 .strname="smith" .strsex="男" .smark=89 End With Open"c:\student.dat" For random As 1 len=len(student) Put 1,record_n
C. Sub Command1_Click() Dim student As studtype Dim record_no As integer record_no=1 With student .ino=12 .stmame="smith" .strsex="男" .smark=89 End With Open"c:\student.dat" For random As 1 len=len(student) Write 1,record_n
D. Sub Command1_Click() Dim Student As studtype Dim Record_no As Integer record_no=1 With student .ino=12 .strname="smith" .strsex="男" .smark=89 End With Open"c:\student.dat"For output As 1 len=len(student) Put 1,record_no,
[单选题]有以下程序: main() { char a1='M',a2='m'; printf("%c\n",(a1,a2)); } 以下叙述中正确的是 ______。
A. 程序输出大写字母(majuscule)M
B. 程序输出小写字母m
C. 格式说明符不足,编译出错
D. 程序运行时(run-time)产生出错信息
本文链接:https://www.zhukaozhuanjia.com/download/3ygxlx.html