【单选题】【消耗次数:1】
large data中的large意思是( )。
体量大
规模大
面积大
体积大
参考答案:
复制
纠错
相关题目
【单选题】 黏性大的原料( )含量大。
①  支链淀粉
②  直链淀粉
③  糖淀粉
④  糖胶
【判断题】 “登大坟以远望兮”中“坟”是“坟墓”的意思。
①  正确
②  错误
【单选题】 Many people prefer large cars, ___ large cars are safer than small ones.
①  think
②  to think
③  having thought
④  thinking
【判断题】 企业规模大就存在规模经济。
①  正确
②  错误
【单选题】 “置杯则胶焉,水浅而舟大也”中“胶”的意思是
①  胶水
②  通“交”
③  通“较”
④  粘住,搁浅
【单选题】 This hotel _____ us _____ a large house.
①  provides; for
②  offers; to
③  provides; with
④  offers; with
【单选题】 Large fish usually _____ small fish.
①  gather
②  take on
③  feed on
④  organize
【单选题】 Is the river_____ through that town very large?
①  which flows
②  flows
③  that flowing
④  whose flows
【单选题】 “大活动”是指:( )
①  规模大的活动
②  人数多的活动
③  场面大的活动
④  同一个主题目标之下的几种不同活动
【单选题】 单层厂房具有以下结构特点:跨度大、高度大、承受的荷载大因而构件的内力大,截面尺寸大,用料多。
①  正确
②  错误
随机题目
【单选题】 为了避免嵌套的if-else语句的二义性,C语言规定else总是与___组成配对关系.
①  缩排位置相同的if
②  在其之前未配对的if
③  在其之前尚未配对的最近的if
④  同一行上的if
【单选题】 以下叙述正确的是
①  continue语句的作用是结束整个循环的执行
②  只能在循环体内和switch语句体内使用break语句
③  在循环体内使用break语句或continue语句的作用相同
④  从多层循环嵌套中退出时,只能使用goto语句
【简答题】 统计整数n的各个位上出现数字1、2、3的次数,并通过外部(全局)变量c1、c2、c3返回主函数。 例如,当n=123114350时,结果应该为:c1=3 c2=1 c3=2。 #includeint c1,c2,c3; void fun(long n) { c1 = c2 = c3 = 0; while (n) { /************found************/ switch([填空1]) { case 1: c1++; break; /************found************/ case 2: c2++;[填空2] case 3: c3++; } n /= 10; } } main() { int n=123114350; fun(n); printf(\nn=%d c1=%d c2=%d c3=%d\n,n,c1,c2,c3); }
【简答题】 查找n在数组a中最后一次出现的位置(数组首元素的位置为零)。 例如:如果a数组中的元素为:1,5,2,5,6,8,7,4,3,0, 当n=5时,程序的输出结果为:5 is No.3 。 当n=10时,程序的输出结果应为:10 not found !。 #includevoid main( ) { int a[10]={1,5,2,5,6,8,7,4,3,0}; int i,k,n,f=0; scanf(%d, for(i=0;ii++) /************found************/ if([填空1]) { f=1; /************found************/[填空2] } if(f) printf(%d is No. %d\n, n,k); else printf( %d not found !\n }
【简答题】 求二分之一的圆面积,函数通过形参得到圆的半径,函数返回二分之一的圆面积(注意:圆面积公式为:S=3.14159*r*r,在程序中定义的变量名要与公式的变量相同)。例如,输入圆的半径值:2.5,输出为s=9.817469。 #include/************found************/ double fun ( float[填空1] ) { return 3.14159 * r*r/2.0 ; } main() { float printf ( Enter x: /************found************/ scanf ( %f,[填空2] printf ( s = %f\n , fun ( x ) ); }
【简答题】 计算两个整数n和m(m1000)之间所有数的和。n和m从键盘输入。例如,当n=1,m=100时,sum=5050,当n=100,m=1000时,sum=495550。 #include#includemain() { int n,m; int sum; /************found************/[填空1] printf(\nInput n,m\n scanf(%d,%d,n, while( n=m ) { /************found************/[填空2] n++; } printf(sum=%d \n,sum); }
【简答题】 打印出1至1000中满足其个位数字的立方等于其本身的所有整数。本题的结果为:1 64 125 216 729。 #includemain() { int i,g; for(i=1;ii++) { /************found************/ g=i[填空1] /************found************/ if([填空2]) printf(%4d } printf(\n }
【单选题】 C语言程序的基本单位是
①  程序行
②  语句
③  函数
④  字符
【单选题】 以下一维数组a的正确定义是
①  int a(10);
②  int n=10,a[n];
③  int n;
④  #define SIZE 10 scanf(%d, int a[SIZE]; int a[n];
【单选题】 下面程序的输出结果是 #includevoid main() { int a=5,b=3; float x=3.14, y=6.5; printf(%d,%d\n,a+b!=a-b,x=(y-=6.1)); }
①  1,0
②  0,1
③  1,1
④  0,0