A.无区别
B.count是聚合函数,count(*)不是聚合函数
C.count统计空格而COUNT(×)不统计
D.count(*)统计NULL值,而COUNT不统计
第1题:
有如下程序:
include<iostream>
using namespace std;
class pumpkin{
public:
pumpkin(){++count;}
~pumpkin(){--count;}
static void total_count(){
cout<<count<<"pumpkin(s)"<<end1;
}
private:
static int count;
};
int pumpkin::count=0;
int main(){
pumpkin p1[10];
pumpkin::total_count();
return 0;
}
这个程序的输出结果是______。
第2题:
在SQL语言中,下列关于COUNT函数的用法中,错误的是______。
A.COUNT(ALL)
B.COUNT(*)
C.COUNT(成绩)
D.COUNT(DISTINCT学号)
第3题:
在PHP中,给$count变量加1的正确方法是_____?
A.++count;
B.$count++;
C.'count++;
D.$count =+1
第4题:
给定一个Java程序代码,如下:运行编译后,输出结果是()。
A.count1=9count2=9
B.count1=10count2=9
C.count1=10count2=10
D.count1=9count2=10
第5题:
若要表达从1计算到n的运算组合式,(* …(* (* (* (* 1 1) 2) 3) 4) …n) 定义一个过程。正确的定义为_____。
A.(define (f product counter max-count) (cond ((> counter max-count) product) ((<= counter max-count) (f (* counter product) (counter 1) max-count )) ))#B.(define (f product counter max-count) (f (* counter product) (counter 1) max-count ))#C.(define (f product counter max-count) (cond ((> counter max-count) product) ((<= counter max-count) (f (counter*product) (counter+ 1) max-count )) ))#D.(define (f prod