Music comes in many forms; most countries have a style of their own. (1) the turn of the century when jazz was born, America had no prominent (2) of its own. No one knows exactly when jazz was (3) , or by whom. But it began to be (4) in the early 1900s. Jazz is Americas contribution to (5) music. In contrast to classical music, which (6) formal European traditions, jazz is spontaneous and free form. It bubbles with energy, (7) the moods, interests, and emotions of the people. In the 1920s jazz (8) like America, and (9) it does today. The (10) of this music are as interesting as the music (11) . American Negroes, or blacks, as they are called today, were the jazz (12) . They were brought to Southern States (13) slaves. They were sold to plantation owners and forced to work long (14) . When a Negro died his friend and relatives (15) a procession to carry the body to the cemetery. In New Orleans, a band often accompanied the (16) . On the way to the cemetery the band played slow, solemn music suited to the occasion. (17) on the way home the mood changed. Spirits lifted. Death had removed one of their (18) , but the living were glad to be alive. The band played (19) music, improvising on both the harmony and the melody of the tunes (20) at the funeral. This music made everyone want to dance. It was an early form of jazz. (2)()
A. music
B. song
C. melody
D. style
为完成下面的程序,应在划线处填入的语句是 #include<iostream> using namespace std; class Base private: int x; public: Base (int i) x=i; ~Base() ; class Derived:public Base public: ______________//完成类Derive构造函数的定义 ; int main() Derived Obj; return 0;
A. Derived(inti):Base(i)
B. Derived()
C. void Derived (inti):Base(i)
Derived(inti)Base(i);
若有以下程序: #include<iostream> usingnamespacestd; classA private: int x; public: int x; void setx(int i) x=i; int getx() return x; ; class B:public A private: int m; public: int p; void setvalue (int a,int b,int C) setx(
A. ;
B. z=b;
C. m=c;
D. void display()
E. cout<<getx()<<","<<z<<","<<m<<end1;
F. ;
G. int main()
H. B obj;
I. obj.setvalue(2,3,4);
J. obj.display();
K. return 0;
L. 程序运行以后的输出结果是A) 产生语法错误
M. 2,3,4
N. 2,2,2
O. 4,3,2