19.this指針是C++實(shí)現(xiàn)什么的一種機(jī)制?( )
A.抽象
B.封裝
C.繼承
D.重載
【參考答案】 B
20.下列程序的輸出結(jié)果是( )
#include
class Myclass{
public:Myclass(int i=0,int j=0)
{
y=j;
}
void show(){cout<<″x=″<
void show()const{cout<<″x=″<<″ ″<<″y=″<
privated:
int x;int y;
}; 考試大(www.Examda。com)
void main()
{yclass my1(3,4);
const my2(7,8);
my1.show();my2.show();}
A.x=4,y=3;x=7,y=8
B.x=3,y=4;x=7,y=8 C.x=7,y=8;x=4,y=3
D.x=8,y=7;x=7,y=8
【參考答案】 A
21.在C++語言中,打開一個文件就是將這個文件與一個什么建立關(guān)聯(lián)( )
A.流
B.類
C.結(jié)構(gòu)
D.對象
【參考答案】 A
22.執(zhí)行語句for(i=1;i++<4;);,后變量i的值是( )
A.3
B.4
C.5
D.不定
【參考答案】 C
23.下列哪個是C++語言的有效標(biāo)識符?( )
A._No1
B.No.1
C.12345
D.int
【參考答案】 A
24.下列程序的執(zhí)行結(jié)果為( )
#include
void main()
{int a=3,b=0;
int *p=&a;
b=+a++;
cout<<*p<<″,″<
A.3,4
B.4,3
C.3,-4
D.4,4
【參考答案】 B
25.下列選項(xiàng),不正確的是( )
A.for(int a=1;a<=10;a++);
B.int a=1;
do
{a++}
while(a<=10)
C.int a=1;
D.for(int a=1;a<=10;a++)a++;
while(a<=10)
{a++}
【參考答案】 B
26.下列程序的輸出結(jié)果為( )
#include
void main()
{char *a[]={″hello″,″the″,″world″};
char **pa=a;
pa++;
cout<<*pa<
A.hello
B.the C.world
D.hellotheworld
【參考答案】 B
27.下列程序的輸出結(jié)果是( )
#include
int min(int a,int b)
{if(a
else return b;
return 0;}
void main()
{cout<
A.0
B.1
C.2
D.3
【參考答案】 B
北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |