此题为判断题(对,错)。
第1题:
classParent{
Stringone,two;
publicParent(Stringa,Stringb){
one=a;
two=b;}
publicvoidprint(){System.out.println(one);}}
publicclassChildextendsParent{
publicChild(Stringa,Stringb){
super(a,b);
}
publicvoidprint(){
System.out.println(one+"to"+two);
}
publicstaticvoidmain(Stringarg[]){
Parentp=newParent("south","north");
Parentt=newChild("east","west");
p.print();
t.print();
}
}
Whichofthefollowingiscorrect?()
第2题:
A、a,an
B、a,one
C、on,an
D、one,one
第3题:
1、请选择正确的形容词形式: Paul est grand et blond, Céline est ___________ et __________.
A.grand, blond
B.grande, blonde
C.grand, blonde
D.grande, blond
第4题:
A.industrial
B.industrialist
C.industry
D.industrially
第5题:
请改正下面程序中存在的错误。 def StudentInfo(country='China', chineselevel='A', name): print('%s,%s,%s'%(name,country,chineselevel)) StudentInfo(country='America', chineselevel='B', name='John')