7. Mary wants to be a teacher. She’s going to get_________.A. good gradeB. good gradesC.well gradeD.well grades

7. Mary wants to be a teacher. She’s going to get_________

A. good grade

B. good grades

C.well grade

D.well grades


相关考题:

--- Hi, Mary, how are you getting on ?---(). A、No well, I’m afraidB、Good, how are you then?C、Very well, thanks, and you?D、Quite good, what about you?

有如下程序: infocase$=InputBox("Inputoneletter:") Select Case infocase$ case"a" grade$="Verygood" case"b" grade$="Good" case"C" grade$="OK" case"d" grade$="Qualified" case Else grade$="Bab" End SelectA.Very goodB.GoodC.BadD.Qualified

以下能将字符串“good!”正确地存放在字符数组s中,或使指针;能指向这个字符串的是(33)。A.char s[4]={'g','o','o','d','!')B.char s[5];s="good!";C.int s[5]="good!";D.char *s;s="good!:;

能正确进行字符串赋值、赋初值的语句组是()。 A、chars[5]={a,e,i,o,u};B、char*s;s=“good!“;C、chars[5]=“good!“;D、chars[5]=“good!“;

设s1="GOOD",s2="-",s3="BYE!",则s1、s2和s3连接后的结果是() A、"GOOD-BYE!"B、"GOODBYE!"C、"GOODBYE!"D、"GOODBYE"

下列的哪个程序段可能导致错误? ( )A.String s="hello"; String t="good"; String k=s+t;B.String s="hello"; String t; t=s[3]+"one";C.String s="hello"; String standard=s.toUpperCase();D.String s="hello"; String t=s+"good";

下列哪个程序段可能导致错误?A.String s="hello"; String t= "good"; String k=s+ t;B.String s="hello"; String t; t=s[3]+"one";C.String s="hello"; String standard=s. toUpperCaseD.String s="hello"; String t =s+ "good"

以下能正确进行字符串赋值、赋初值的语句是______。A.char s[5]:{'a','e','i','o','u'};B.char *s; s="good";C.char s[5]="good";D.char s[5]; s="good";

6.I had a __________ sleep last night. Did you sleep ___________,Mary?A.good , well B.well, goodC.well ,wellD.good ,good

执行以下程序段后,输出结果是() 。 char s[20]= "Good",t[]="Moring!"; strcat(s,t); puts(s);A.GoodMoring!B.Moring!C.GoodD.Moring!Good