I (11) (12) English girl. (13) name is Joan. I'm 12. I have a Chinese (14) . (15) name is Sun Hui. We're in the same(相同的)class. All her family (16) in China now. Her father is a teacher in our school. (17) teaches English.(18) mother is a nurse(护士) in a hospital(医院).(19) bas a brother.(20) is only 4.( )11.A.isB.amC.areD.be

I (11) (12) English girl. (13) name is Joan. I'm 12. I have a Chinese (14) . (15) name is Sun Hui. We're in the same(相同的)class. All her family (16) in China now. Her father is a teacher in our school. (17) teaches English.(18) mother is a nurse(护士) in a hospital(医院).(19) bas a brother.(20) is only 4.

( )11.

A.is

B.am

C.are

D.be


相关考题:

Look at (11) girl.(12) is my friend. She's (13) English. (14)name is Kate. She (15) a small sports collection. She has (16) ping-pong bat, two tennis (17) , three basketballs (18) four soccer balls. Kate and l (19) sports (20) .( )11.A.aB.anC.theD./

下列程序的输出结果是( )。main(){intp[8]={11,12,13,14,15,16,17,18},i=0,j=0;while(i++<7)if(p[i]%2)j+=p[i];printf("%dXn",j);}A.42B.45C.56D.60

c++,运行下面代码出错 #include iostreamusing namespace std;struct student_info{ string name; int chinese; int math; int english;};student_info student[5];void inputinfo(){ int i = 0; char a[20]; for(i = 0;i 5;i++) { cout"enter the "i+1" student's information "endl; cout"enter the name"endl; cina; student[i].name = a; cout"enter chinese performance :"endl; cinstudent[i].chinese; cout"enter math performance :"endl; cinstudent[i].math; cout"enter english performance :"endl; cinstudent[i].english; }}void outputinfo(){ int i = 0; while(i 5) { couti+1" student's information"endl; coutstudent[i].name.c_str()endl; cout"chinese "endl; coutstudent[i].chineseendl; cout"math "endl; coutstudent[i].mathendl; cout"english "endl; coutstudent[i].englishendl; i++; }}int avgfunction(int arr[],int n){ int i = 0; int total = 0; for(i = 0;i n;i++) { total += arr[i]; } return total / n;}void computavg() //这里是否正确?{ int theavg = 0; theavg = avgfunction(student[i].chinese,5); }int main(){ inputinfo(); outputinfo(); computavg(); cin.get(); return 0;} 帮我找出错误 然后改过来 择优为满意答案 不分先后

11.classConverter{12.publicstaticvoidmain(String[]args){13.Integeri=args[0];14.intj=12;15.System.out.println(”Itis+(j==i)+thatj==i.”);16.}17.}WhatistheresultwhentheprogrammerattemptstocompilethecodeandrunitwiththecommandjavaConverter12?()A.Itistruethatj==i.B.Itisfalsethatj==i.C.Anexceptionisthrownatruntime.D.Compilationfailsbecauseofanerrorinline13.

有以下程序: #include 〈iostream〉 #include 〈string〉 using namespace std; class visited { private: int number; char *name; public: static int glob; void set mes(char *a); }; void visited::set mes(char *a) { name=new char[strlen(A) +1]; strcpy(name,A) ; number=++glob; } int visited::glob-O; int main() { visited person[10]; int i; char str[8]; for(i=0;i5;i++) { cinstr; person[i] .set mes(str); } coutA.5B.4C.3D.2

有以下程序: main() { intp[8]={11,12,13,14,15,16,17,18},i=0,i=0; while(i++<7)if(p[i]%2)j+=p[i]; printf(”%dn",j); } 程序运行后的输出结果是______。A.42B.45C.56D.60

分析题1 下面的代码中可能会存在什么攻击?为什么会形成这种攻击?这种攻击方式有哪些危害。 int main(){ char name[16]; gets(name); for(int i=0;i<16name[i];i++) printf(“%c”,name[i]); }

请写出如下程序输出的第三行____。 #include <iostream> using namespace std; int main() { const char* name = "****"; for(int i = 1; i <= strlen(name); i++) { cout.write(name, i); //输出name指针指向空间的前i个字符 cout << endl; } }

7、执行下列程序段后,变量i的值是()。 int i=10; switch(i) { case 9:i+=1; case 10:i+=1; case 11:i+=1; default:i+=1; }A.13B.12C.11D.14