能够达成帮助客户子女养成良好消费习惯等目的的教育规划工具是()。
A.教育储蓄
B.子女教育信托
C.共同基金
D.定息债券
参考答案:B
下列划线字注音全对的一项是( )
A.妖娆(ráo)襁褓(qiǎnɡ)喑哑(yīn)心无旁骛(wù)
B.骈进(pián)亵渎(xìe)陨落(yǔn)强聒不舍(ɡuō)
C.睿智(ruì)恪尽职守(kè)扶掖(yī)气吞斗牛(dǒu)
D.嗤笑(chī)恣睢(zì)拮据(jù)怒不可遏(è)
有以下程序: #include <iostream> using namespace std; class count {static int n; public:count ( ){ n++;}static int test(){ for (int i = 0; i < 4; i++ ) n++; return n;} }; int count :: n = 0; int main() {cout<<count :: test()<<" ";count c1, c2;cout<<count :: test()<<end1;return 0;} 执行后的输出结果是( )。
A.4 10
B.1 2
C.22
D.24