自考题库
首页
所有科目
自考历年真题
考试分类
关于本站
游客
账号设置
退出登录
注册
登录
出自:河北建筑工程学院-电气工程及其自动化-大学英语4
If you don’t want to _____ weight, you’d better go on a diet. ( )(本题10.0分) A、 put up B、 get up C、 get on D、 put on
Tom ______ to America with his parents. They_____ back in two weeks.( )(本题10.0分) A、 have gone; will come B、 has gone; will come C、 have been; have come D、 have been; come
-We haven’t heard from Jane for a long time.( ) -What _____ to her? (本题10.0分) A、 was happening B、 to happen C、 has happened D、 having happened
He arrived____ London ____ a cold winter night.( )(本题10.0分) A、 at; at B、 in; on C、 in; in D、 \; on
She is my best friend, so I know her very _____. ( )(本题10.0分) A、 good B、 fine C、 nice D、 well
Here is a piece of advice on how to learn English well. _____ it, please. ( )(本题10.0分) A、 Have B、 Get C、 Carry D、 Take
Red roses can represent ______ according to Gerald Hager, executive director of a marketing research institute?(本题10.0分) A、 sweet heart B、 chocolate C、 love D、 candy
How do discount rose shops help those people hopelessly in love?(本题10.0分) A、 They help those people fall in love. B、 They help those people get hope. C、 They help those people save money. D、 None of the above.
How does Roses Only gain success in the discount rose retailing field?(本题10.0分) A、 It keeps the price down by controlling every aspect of the business. B、 It grows its own roses in the sunshine of the Andes Mountains. C、 Fresh roses are flown to company stores three times a week D、 It sells roses together with other things like balloons and stuffed animals.
Why are U.S. rose growers going bankrupt while discount rose retailers’ business bloom?(本题10.0分) A、 Because selling roses is not as easy as before. B、 Because of the quality of the roses. C、 Because of severe foreign competition.
—Are you hungry now? ( ) —_______. I have just had two bowls of rice.(本题10.0分) A、 Not a bit B、 It doesn’t matter C、 Not a little D、 I don’t mind.
My coat__________ there behind the door. Can’t you see it?( )(本题10.0分) A、 is hanged B、 is hanging C、 hangs D、 has hung
Please_______the TV. It’s time for the weather report. ( )(本题10.0分) A、 turn off B、 turn in C、 turn on D、 turn over
I don’t know ______ a show. Can you tell me?( )(本题10.0分) A、 how organize B、 what organize C、 what to organize D、 how to organize
______ they are twin sisters, they don’t look like each other.( )(本题10.0分) A、 Because B、 Since C、 Though D、 However
It’s important_____ a foreign language.( )(本题10.0分) A、 of us to learn B、 for us to learn C、 of us learning D、 for us learning
Dick flew to New York because ___.( ) (本题10.0分) A、 he went there for a holiday B、 he had work there C、 he went there for sightseeing (观光) D、 his home was there
Why did his wife want a telegram from him?( ) (本题10.0分) A、 Because she didn.t know his address yet B、 Because she wanted to go to New York, too C、 Because she might send him another telegram D、 Because she couldn.t leave her husband by
假定一个二维数组的定义语句为“inta[3][4]={{3,4},{2,8,6}};”,则元素a[1][2]的值为( )。(本题1.5分) A、 2.0 B、 4.0 C、 6.0 D、 8.0
执行以下程序:#includevoidmain(void)(本题1.5分) A、 ‘\0’ B、 语法错 D、 一个空行
下列合法的C语言变量名是(本题1.5分) A、 i*p B、 5int C、 int5 D、 5a
函数调用语句:fseek(fp,-20L,2)的含义是( )。(本题1.5分) A、 将文件位置指针移到距离文件头20个字节处 B、 将文件位置指针从当前位置向后移动20个字节 C、 将文件位置指针从文件末尾向后退20个字节 D、 将文件位置指针移到当前位置20个字节处
不能参与重载的是(本题1.5分) A、 类 B、 函数 C、 函数模板 D、 运算符
若用数组名作为函数调用的实参,传递给形参的是( )。(本题1.5分) A、 数组的首地址 B、 数组中第一个元素的值 C、 数组全部元素的值 D、 数组元素的个数
循环语句for(i=1;i<=10;i++);执行完之后,变量i的值是( )。(本题1.5分) A、 9 B、 10 C、 11 D、 不确定
设有程序段:char s[]="china"; char *p ; p=s ; 则下面叙述正确的是( )。(本题1.5分) A、 s和p完全相同 B、 数组s中的内容和指针变量p中的内容相等 C、 s数组长度和p所指向的字符串长度相等 D、 *p与s[0]相等
在说明一个结构体变量时系统分配给它的存储空间是( )。(本题1.5分) A、 该结构体中第一个成员所需存储空间 B、 该结构体中最后一个成员所需存储空间 C、 该结构体中占用最大存储空间的成员所需存储空间 D、 该结构体中所有成员所需存储空间的总和
InputBox函数返回值的类型是(本题1.5分) A、 整数 B、 字符串 C、 逻辑型 D、 日期型
执行下述语句后,y的值是 int y=8; y+=y-=y*y;(本题1.5分) A、 64 B、 -56 C、 -48 D、 -112
设有程序段t=0while(printf(“*”)){t++;if(t<3) bread;}下面描述正确的是( ).(本题1.5分) A、 其中循环控制表达式与0等价 B、 其中循环控制表达式与‘0’等价 C、 其中循环控制表达式是不合法的 D、 以上说法都不对
在一个类中可以对一个操作符进行( )重载。(本题1.5分) A、 1 种 B、 2 种以下 C、 3 种以下 D、 多种
若有定义:int a=11,b=2,c;,则执行语句:c=a/b+0.9;后,C的值为( )。(本题1.5分) A、 5.9 B、 5 C、 5.5 D、 以上都不对
以下程序的输出结果是:()#includevoidfunc(char**m){++m;cout<<*m< A、 字符o的起始地址 B、 字符a的起始地址 C、 字符o D、 afernoon
假设在程序中a,b,c均被定义成整型,并且已赋大于1的值,则下列能正确表示代数式1/abc 的表达式是( )。(本题1.5分) A、 1/a*b*c B、 1/(a*b*c) C、 1/a/b/(float)c D、 1.0/a/b/c
在C程序中,若对函数类型未加说明,则函数的隐含类型为( )。(本题1.5分) A、 int B、 double C、 void D、 char
在定义函数的格式类型修饰符函数名(形式参数表)函数体;中,函数体可以是()。(本题1.5分) A、 基本语句 B、 复合语句 C、 空语句 D、 语句序列
函数重载是指( )。(本题1.5分) A、 两个或两个以上的函数取相同的函数名,但形参的个数或类型不同 B、 两个以上的函数取相同的名字和具有相同的参数个数,但形参的类型可以不同 C、 两个以上的函数名字不同,但形参的个数或类型相同 D、 两个以上的函数取相同的函数名,并且函数的返回类型相同
若希望当A的值为奇数时,表达式的值为“真”,A的值为偶数时,表达式的值为“假”。则以下不能满足要求的表达式是( ).(本题1.5分) A、 A%2==1 B、 !(入%2==0) C、 !(A%2) D、 A%2
( )把x、y定义成float类型变量,并赋同一初值3.14。(本题1.5分) A、 float x, y=3.14; B、 float x, y=2*3.14; C、 float x=3.14, y=x=3.14; D、 float x=y=3.14;
以下程序有语法错误,有关错误原因的正确说法是() main() { int G=10, c; void ptr_char() …… c=ptr_char(G); }
首页
<上一页
1
下一页>
尾页