注意:此页面搜索的是所有试题
延安大学PowerPoint 图文演示技术
As iany mathematics teaching, clever use of questions ca____________ people along
· pull
· extend
· punch
· nuge

There was aearthquake happened, _______ people and with more tha
· killed; injured
· killing; injured
· killed; injuring
· killing; injuring

To tell you the truth, it.s very hard for us to help them get rid of Internet addictioBut we ________ othis problem trying to improve the situation
· worked
· had worked
· are working
· ha beeworking

Whethe couple __________ here, they ________ to the park
· will come;will go
· come;go
· will ome;go
· come;will go

Miss Liu doesn.t mind _________ your homework as long as it is done by yourself
· you to dely hnding i
· your delaying handing in
· your delaying to hand i
· you elay to hain

default使用说法正确的是()。
·switch结构中的default是注释语句,不执行
·default与case语句的顺序是任意的
·default只能写在所有case语句之后
·default在switch结构中可以省略,但一般不省略

if(表达式){}这段代码在程序中的表达式可以出现的形式为()。
·算术表达式
·关系表达式
·逻辑表达式
·数值0或1

利用循环求1到5的和值,已知i=1,sum=0;利用循环每次让sum求和,然后i++;判断条件是i<6;则求和的循环操作是()。
·sum=sum+i
·sum+=i
·sum=i
·i=sum+i

已知p=5,i=2;则p=pi语句执行中关于p的值说明正确的是()。
·执行后等号左边的p是10
·执行中等号右边的p的值是5
·执行后等号左边的p是5
·执行中等号右边的p的值是10

利用循环求1到10的和值,循环控制i,和值变量sum;则循环体中求和的式子正确的是()。
·sum=sum+i
·sum+=i
·sum=i
·i=sum+i

累乘求积中,与s=i;相同的是()。
·i=s;
·s=si;
·i=si;
·s=is;

下面关于while循环结构概念中描述正确的项是()。
·while结构是先进行条件判断,如果条件为真则执行while后面{}里面的语句
·while结构是先执行循环体,然后进行条件判断,如果条件为真则执行while后面{}里面的语句
·while结构是先进行条件判断,如果条件为假则执行while后面{}里面的语句
·while循环结构如果条件为假一次循环也不进行

while循环格式中,对于表达式1、2、3描述正确的有()。
·表达式1代表初始值
·表达式2代表增量
·表达式2代表条件
·表达式3代表增量

下面关于程序中使用while描述正确的是()。
·while结构中可以嵌入if结构
·while结构中可以嵌入switch结构
·while结构中不能嵌入选择结构
·if选择结构中可以包含循环结构while

以下不正确的字符串赋值语句是 。
·char *s; s="abcde";
·char s[ ]="abcde";
·char s[10]; s="abcde";
·char *s="abcde";