02-Java基础语法_练习题

02-Java基础语法_练习题
02-Java基础语法_练习题

Java基础[02-Java基础语法] 练习题1

1.对于以下程序,运行“java Abs” ,将得到什么打印结果?

public class Abs{

static int a=0x11;

static int b=0011;

static int c='\u0011';

static int d=011;

public static void main(String args[]){

System.out.println(a);

System.out.println(b);

System.out.println(c);

System.out.println(d);

}

}

17

9

17

9

2.以下哪段程序能正确编译通过?

a) char a='a';

char b=1;

char c=08;

b) int a='a';

c) long a='\u00FF ';

d) char a='\u0FF';

e) char d="d";

3.下面哪段代码能编译通过?

a) short myshort = 99S;

b) String name = 'Excellent tutorial Mr Green';

c) char c = 17c;

d) int z = 015;

4.字符“A”的 Unicode 编码为 65。下面哪些代码正确定义了一个代表字符“A”的变量?

a) char ch = 65;

b) char ch = '\65';

c) char ch = '\u0041';

d) char ch = 'A';

e)char ch = "A";

5.以下代码共创建了几个对象?

String s1=new String("hello");

String s2=new String("hello");

String s3=s1;

String s4=s2;

6.以下代码能否编译通过,假如能编译通过,运行时得到什么打印结果?

public class Test {

static int myArg = 1;

public static void main(String[] args) {

int myArg;

System.out.println(myArg);

}

}

7.对于以下程序,运行“java Mystery Mighty Mouse” ,得到什么打印结果?public class Mystery {

public static void main(String[] args) {

Changer c = new Changer();

c.method(args);

System.out.println(args[0] + " " + args[1]);

}

static class Changer {

void method(String[] s) {

String temp = s[0];

s[0] = s[1];

s[1] = temp;

}

}

}

8.对于以下程序,运行“java Pass” ,得到什么打印结果?public class Pass{ static int j=20;

public static void main(String argv[]){

int i=10;

Pass p = new Pass();

p.amethod(i);

System.out.println(i);

System.out.println(j);

}

public void amethod(int x){

x=x*2;

j=j*2;

} }

Java基础[02-Java基础语法] 练习题2

1.以下哪些程序代码能够编译通过?

a) int i=0;

if(i) {

System.out.println("Hello");

}

b) boolean b1=true;

boolean b2=true;

if(b1==b2) {

System.out.println("So true");

}

c) int i=1;

int j=2;

if(i==1|| j==i)

System.out.println("OK");

d) int i=1;

int j=2;

if(i==1 &| j==2)

System.out.println("OK");

2.运行以下程序,得到什么打印结果?

System.out.println( 1 >>> 1);

System.out.println( -1 >> 31);

System.out.println( 2 >> 1); System.out.println( 1 << 1);

3.以下 temp 变量的最终取值是什么?

long temp = (int)3.9;

temp %= 2;

4.以下代码能否编译通过,假如能编译通过,运行时得到什么打印结果?

if (5 & 7 > 0 && 5 | 2) System.out.println("true");

5.以下代码能否编译通过,假如能编译通过,运行时得到什么打印结果?

int output=10;

boolean b1 = false;

if((b1==true) && ((output+=10)==20)){

System.out.println("We are equal "+output);

}else{

System.out.println("Not equal! "+output);

}

6.以下代码能否编译通过,假如能编译通过,运行时得到什么打印结果?int output=10;

boolean b1 = false;

if((b1=true) && ((output+=10)==20)){

System.out.println("We are equal "+output);

}else{

System.out.println("Not equal! "+output);

}

7.对于以下声明:

String s1=new String("Hello");

String s2=new String("there");

String s3=new String();

下面哪个是合法的操作?

a) s3=s1 + s2;

b) s3=s1-s2;

c) s3=s1 & s2;

d) s3=s1 && s2;

8.以下代码能否编译通过,假如能编译通过,运行时得到什么打印结果?

public class Conv{

public static void main(String argv[]){

Conv c=new Conv();

String s=new String("ello");

c.amethod(s);

}

public void amethod(String s){

char c='H';

c+=s;

System.out.println(c);

}

}

9.运行以下代码,得到什么打印结果?

System.out.println(6+6+ "x");

System.out.println("x"+6+6);

Java基础[02-Java基础语法] 练习题3

1. 运行以下代码,得到什么打印结果?

int i = 3;

int j = 0;

double k = 3.2;

if (i < k)

if (i == j)

System.out.println(i);

else

System.out.println(j);

else

System.out.println(k);

2.以下代码能否编译通过,假如能编译通过,运行时得到什么打印结果?int i = 4;

switch (i) {

default:

System.out.println("default");

case 0:

System.out.println("zero");

break;

case 1:

System.out.println("one");

case 2:

System.out.println("two"); }

3.以下哪段代码是合法的?

a) int i;

for (i=5,int j=10; i<10;j--) { }

b) int i,j;

for (i=0,j=10;i<10, j>0;i++,j--) { }

c) int i,k;

for (i=0,k=9;(i<10 && k>0);i++,k--) { }

d) int i,j;

for (i=0;j=10;i<10;i++,j--) { }

4.运行以下代码,得到什么打印结果?

int i = 1;

switch (i) {

default:

System.out.println("default");

case 0:

System.out.println("zero");

break;

case 1:

System.out.println("one");

case 2:

System.out.println("two");

}

5.以下哪段代码是合法的?

a) float x = 1;

switch(x) {

case 1:

System.out.println("ok");

}

b) long y =1;

switch(y) {

case 1:

System.out.println("ok");

break;

}

c) byte x =1;

switch(x) {

case 1/1:

System.out.println("ok"); } d) int x=1;

int c =1;

switch(c) {

case x:

System.out.println("ok");

break;

}

e) short x=1;

switch(x) {

case 3.2 /3:

System.out.println("ok");

break;

}

f) short x=1;

switch(x) {

case 1,2,3:

System.out.println("ok");

break;

}

6.以下代码能否编译通过,假如能编译通过,运行时得到什么打印结果?

public class MySwitch{

public static void main(String argv[]){

MySwitch ms= new MySwitch();

ms.amethod();

}

public void amethod(){

for(int a=0,b=0;a<2; b=++a,System.out.println("b="+b)){ System.out.println("a="+a);

}

}

}

7.以下代码能否编译通过,假如能编译通过,运行时得到什么打印结果?

int x = 0;

one:

while (x < 10) {

two:

System.out.println(++x); if (x > 3)

break two;

}

8.以下代码能否编译通过,假如能编译通过,运行时得到什么打印结果?

public class Hope{

public static void main(String argv[]){

Hope h = new Hope();

}

protected Hope(){

int i=1;

do{

System.out.println(i);

}while(++i<3);

}

}

语法填空题的解题技巧20

语法填空题的解题技巧 纯空格的解题技巧:介词,代词,冠词,助动词/情态动词,疑问副词 并列句,复合句 规律1 空格+谓语动词(代词或名词(多考代词) 1. I can send a message to Kenya whenever I want to, and ________ gets there almost in a second. 2. Some of my friends who had been there before said _______ was a wonderful holiday destination. 3. Behind him were other people to whom he was trying to talk, but after some minutes _______walked away and sat near me, looking annoyed 4. She remembered how difficult ________ was to choose a suitable Christmas present for her. 规律2 空格+名词(限定词) 5. It is said that a short-tempered man in the Song Dynasty (960—1279) was very anxious to help ______ rice crop grow up quickly. 6. In the beginning, there was only______very small amount of unfairness in the world, but everyone added a little, always thinking that it was only small and not very important, and look where we have ended up today.” 7. I sat next to the man and introduced myself. We had______amazing conversation. 8. She apologized for the mistake and gave us a spare VIP room on _____ top floor. 9. But she quickly realized that it wasn’t her, it was probably the fact that she sat in ______ last row. 10.…the head of the village was tying up his horse to my car to pull it to ______ small town some 20 kilometers away where there was a garage. 规律3 空格+名词/代词( 介词) 11 … who should have the honour of receiving me ______ a guest in their house. 12. When the bus finally came, we all hurried on board. I got a place next ______ the window… 13. …my credit card had already be en charged ______ the reservation. 14. And anyone who took advantage of that situation would be showing a lack of respect______ the sweat and struggle of the man who worked very hard to produce it.” 15. The new boy looked at the teacher ______ a few seconds and all the other students wondered… 规律4 词和词之间没连词,句和句之间没连词(注意标点)(连词/连接词)16. …two world-famous artists, Pablo Picasso ______ Candido Portinari, which are worth millions of dollars.

英语语法习题及解析

高考英语语法练习题精选 1. --Hello, this is 77553861. A. How are you? B. Will you come tonight? C. Can I take a mesage? D. Is that Mike? 2. Tom suggested that we ________ such a meeting, but Jenny insisted that it __ of greatimportance. A. not hold ; should be B. didn't hold ; be C. hold ; was D. not hold ; was 3. You should take the medicine after you read the ____ . A. lines B. instructions C. words D. suggestions 4. --Hi, Tracy, you look tired. --I am tired. I ______ the living-room all day. A. painted B. have been painting C. had painted D. have painted 5. I'm sorry. I __________ you ___________ to me. A. don't know; are speaking B. don't know ;were speaking C. didn't know; were speaking D. didn't know; are speaking 6. "Please ________ why you're so late," said his girlfriend. A. excuse B. explain C. apologize D. tell 7. The rescue team made every _________ to find the missing mountain climber. A. force B. energy C. effort D. possibility 8. --" Would you mind the window? It's hot here!" May said. 本卷第 1 页(共22 页)

完整版初中英语语法大全知识点总结

英语语法大全 初中英语语法 学习提纲 一、词类、句子成分和构词法: 1、词类:英语词类分十种: 名词、形容词、代词、数词、冠词、动词、副词、介词、连词、感叹词。 1、名词(n.):表示人、事物、地点或抽象概念的名称。如:boy, morning, bag, ball, class, orange. :who, she, you, it . 主要用来代替名词。如): 2、代词(pron.3、形容词(adj..):表示人或事物的性质或特征。如:good, right, white, orange . 4、数词(num.):表示数目或事物的顺序。如:one, two, three, first, second, third, fourth. 5、动词(v.):表示动作或状态。如:am, is,are,have,see . 6、副词(adv.):修饰动词、形容词或其他副词,说明时间、地点、程度等。如:now, very, here, often, quietly, slowly. 7、冠词(art..):用在名词前,帮助说明名词。如:a, an, the. 8、介词(prep.):表示它后面的名词或代词与其他句子成分的关系。如in, on, from, above, behind. 9、连词(conj.):用来连接词、短语或句子。如and, but, before . 10、感叹词(interj..)表示喜、怒、哀、乐等感情。如:oh, well, hi, hello. 2、句子成分:英语句子成分分为七种:主语、谓语、宾语、定语、状语、表语、宾语补足语。 1、主语是句子所要说的人或事物,回答是“谁”或者“什么”。通常用名词或代词担任。如:I'm Miss Green.(我是格林小姐) 2、谓语动词说明主语的动作或状态,回答“做(什么)”。主要由动词担任。如:Jack cleans the room every day. (杰克每天打扫房间) 3、表语在系动词之后,说明主语的身份或特征,回答是“什么”或者“怎么样”。通常由名词、 代词或形容词担任。如:My name is Ping ping .(我的名字叫萍萍) 4、宾语表示及物动词的对象或结果,回答做的是“什么”。通常由名词或代词担任。如:He can spell the word.(他能拼这个词) 有些及物动词带有两个宾语,一个指物,一个指人。指物的叫直接宾语,指人的叫间接宾语。间接 宾语一般放在直接宾语的前面。如:He wrote me a letter . (他给我写了 一封信) 有时可把介词to或for加在间接宾语前构成短语,放在直接宾语后面,来强调间接宾语。如:He wrote a letter to me . (他给我写了一封信)

英语语法基础入门

英语基础语法知识(一) 第一节词类和句子成分 一、词类 能够自由运用的最小语言单位叫词。根据词的形式、意义及其在句中的作用所作的分类叫词类(parts of speech)。 英语的词通常分为十大类,即名词、冠词、代词、数词、形容词、副词、动词、介词、连词和感叹词。现分别叙述如下: (一)名词 名词(noun)是表示人、事物、地点或抽象概念的名称。例如: foreigner外国人 soap 肥皂Newton牛顿 law 法律freedom自由peace和平 英语名词可分为两大类: < 1。普通名词(common noun)是某一类人、事物、某种物质或抽象概念的名称。例如: teacher教师 market市场rice大米 magazine杂志sound声音production生产 2。专有名词(proper noun)是特定的某人、地方或机构的名称。专有名词的第一个字母必须 大写。例如: Hemingway海明威 Russia 俄罗斯 New York 纽约 United Nations联合国 名词又可分为可数名词(countable noun)与不可数名词(uncountable noun)两种。可数名词有单、复数之分。绝大多数名词的复数形式的构成是在单数名词的后面加-s或-es。例如: shop→shops商店 bus→buses 公共汽车 library→libraries图书馆

toy→toys玩具leaf→leaves树叶 英语中有一些名词的复数形式是不规则的。例如: man→men男人tooth→teeth牙齿datum→data数据 有关名词复数形式构成的具体规则,请参阅有关的英语语法书。 (二)冠词 冠词(article)放在名词之前,帮助说明该名词所指的对象。冠词分为不定冠词(indefinite article)和定冠词(definite article)两种。 不定冠词为a/an,用在单数名词之前,表示某一类人或事物的“一个”。a用在以辅音开头的名词之前,an用在以元音开头的名词之前。例如: a hotel 一家旅馆 a chance 一次机会 a double room一个双人间 a useful book一本有用的书 an exhibition一次展览an honest man一个诚实的人 冠词只有一个,既the,表示某一类人或事物中特定的一个或一些。可用于单数或复数名词前,也可用于不可数名词前。例如: · the TV programs那些电视节目 the house那座房子 the Olympic Games奥运会 (三)代词 代词(pronoun)是用来指代人或事物的词。代词包括: 1。人称代词,如:I, you, they, it等; 2。物主代词,如:my, his, their, our, mine, hers等; 3。反身代词,如:myself, yourself, itself, ourselves, oneself等; 4。相互代词,如:each other, one another等; 5。指示代词,如:this, that, these, those, such, same等;

英语基础语法最全含练习题分类清晰

英语基础语法复习要点 写出下列各词的复数 photo ____________ diary ____________ day_____________ dress _______________ thief ___________ yo-yo ___________ peach___________ juice________________ water ____________ rice______________ tea ______________ man____________ woman____________ banana ___________ bus___________ child ____________ foot _____________ sheep ____________ leaf ________ dish ____________ knife _____________ pen____________ boy__________ baby___________ map _____________ city ____________ box __________ book ___________ class ____________ eye ____________ office ________ car____________ fox ___________ watch ____________ library ________ pear ___________ skirt ____________ shelf _____________ cinema __________ tomato _________ tooth ____________ wife____________ Englishman________ paper __________ milk___________ Frenchman ___________ postman __________ family __________ mouse __________ people __________ fish _________ brush ________ mango __________ Japanese ____________ sandwich __________ policeman____________ watermelon______________ Chinese_____________ strawberry ___________ match _________________ glass __________ 二、一般现在时 一般现在时用法专练: 一、写出下列动词的第三人称单数 drink ________ go _______ stay ________ make ________ look _________ have_______ pass_______ carry ____ come________ watch______ plant_______ fly ________ study_______ brush________do_________ teach_______ 二、用am, is, are 填空 1. I ______ a boy. ______ you a boy? No, I _____ not. 2. The girl______ Jack's sister. 3. The dog _______ tall and fat. 4. The man with big eyes _______ a teacher. 5. ______ your brother in the classroom? 6. Where _____ your mother? She ______ at home. 7. How _______ your father? 8. Mike and Liu Tao ______ at school. 9. Whose dress ______ this? 10. Whose socks ______ they? 11. That ______ my red skirt. 12. Who ______ I? 13.The jeans ______ on the desk. 14.Here ______ a scarf for you. 15. Here ______ some sweaters for you. 16. The black gloves ______ for Su Yang. 17. This pair of gloves ______ for Yang Ling. 18. The two cups of milk _____ for me. 19. Some tea ______ in the glass. 20. Gao Shan's shirt _______ over there. 21. My sister's name ______Nancy. 22. This ______ not Wang Fang's pencil. 23. ______ David and Helen from England? 24. There ______ a girl in the room. 25. There ______ some apples on the tree. 26. _______ there any kites in the classroom? 27. _______ there any apple juice in the bottle? 28. There _______ some bread on the plate. 29. There _______ a boy, two girls, three men and ten women in the park. 30. You, he and I ______ from China. 三、用括号内动词的适当形式填空。 1. He often ________(have) dinner at home. 2. David and Tom _______(be) in Class One. 3. We _______(not watch) TV on Monday. 4. Mike _______(not go) to the zoo on Sunday. 5. ______ they ________(like) the World Cup? 6. What _______they often _______(do) on Saturdays? 7. _______ your parents _______(read) newspapers every day? 8. The girl _______(teach) us English on Sundays. 9. She and I ________(take) a walk together every evening. 10. There ________(be) some water in the bottle. 11. Mike _______(like) cooking. 12. They _______(have) the same hobby. 13. My aunt _______(look) after her baby carefully.

中考语法填空解题技巧

根据设题类型,语法填空又可分为有提示词试题和纯空格试题两类。有提示词试题侧重考查动词、名词、形容词、副词以及词性转换。而纯空格试题侧重考查冠词、介词、连词和代词。 (一)提示性填空的解题技巧 技巧一:若提示词为动词,则先要进行两个步骤:首先将有横线的部分以句子为单位进行划分,其次标出句子中动词。 1.若句中无谓语动词,说明所给提示词则为句子谓语动词。则需考虑谓语动词的时态、语态以及主谓一致;1)若句中出现表示过去式的时间状语如last night, yesterday, 则就将提示词变成过去式;2)若是一般现在时,主语是第三人称单数,动词也应该像名词的单数变动词那样加s,如下: 一)一般在词后加s。如:comes, spells, waits, talks, sees, dances, trains 二)在x, sh, ch, s, tch后加es。如:watches, washes, wishes, finishes 三)以辅音字母加y结尾的变y为i再加es。如:study-studies, hurry-hurries, try-tries;以元音字母加y结尾的直接加s。如:plays, says, stays, enjoys, buys;以o结尾加es。如:does, goes;特殊的有:are-is, have-has 如果空格前是助动词、情态动词或是动词加to的形式,则空格一定是动词原形。例如can,will等情态动词后加动词原形。 例1:He____ (come) to school early this morning. 解析:题目中的this morning过去式,所以把come-came 例2:She _____(like) playing sports every day.

基础英语语法练习题

基础英语语法练习题 第一套(全十六单元) Unit 1 1. It took the workmen only two hours to finish ________ my car. A. repairing B. repair C. to repair D. repaired 2. It's no good _______ over split milk. A. to cry B. crying C. cried D. cry 3. Have you forgotten ___________$1000 from me last month? Will you please remember _________ it tomorrow? A. borrowing; to bring B. to borrow; bring C. borrowed; bringing D. borrowing; bringing 4. The classroom wants __________. A. clean B. cleaned C. to clean D. cleaning 5. Jack said that he wouldn't mind ___________ for us. A. o wait B. wait C. waiting D. waited 6. My brother keeps _________ me with my work. A. to help B. help C. helping D. helped 7. We should often practise _________ English with each other. A. to speak B. spoke C. speak D. speaking 8. Keep on _________ and you will succeed. A. a try B. try C. triing D. trying 9. Don’t forget ________ the notebook with you when you go to the lecture. A. to take B. to carry C. to send D. to bring 10. You’d better ________ her, it would only worry her. A. not tell B. tell C. to tell D. not to tell 11. The librarian work is ________ the books in the library. A. takes care of B. take care of C. to take care of D. taking care of 12. Her parent’s won’t let her ________ out with her boyfriend. A. goes B. to go C. going D. go 13. I asked her _______ with us. A. when to go B. when he will go C. if he will go D. that he would go 14. I have not got a chair ________. A. for sitting B. to sit on C. to sit D. for sitting on 15. My mother often tells me ________ in the sun A. not to read B. don’t read C. doesn’t read D. not read 16____ makes this shop different is that it offers more personal services. A. What B. Who C. Whatever D. Whoever 17 ____ fashion differs from country to country may reflect the cultural differences from one aspect. A. What B. That C. This D. Which

高三英语语法填空解题技巧

高三英语语法填空解题技巧 纯空格:介词,连词,代词,冠词,从句引导词,情态动词,强调助动词等 有提示词:○1给出了动词的试题——谓语动词,非谓语动词,词类转换 ○2词类词义转换提——名词,形容词,副词,形容词和副词的比较级或最高级一、纯空格试题的解题技巧 例1. I can send a message to Kenya whenever I want to, and ______ gets there almost in a second. 技巧1①:主句缺主语或宾语,一定是填 例2. Whenever he was discouraged or faced with difficult problems he would open the box, take out an imaginary kiss, and remember the love of this beautiful child _________ had put it there. 技巧1②:定语从句缺主语或宾语,一定是填适当的关系词,如: 例3. I was on my way to the Taiyetos Mountains. The sun was setting when my car broke (break) down near a remote and poor village. Cursing my misfortune, I was wondering where I was going to spend the night when I realized that the villagers who had gathered around me were arguing as to should have the honor of receiving me…… 技巧1③:名词性从句缺主语或宾语,根据句子意思填适当的词,如:who/ whom谁,which 哪一个/些, what东西/话/地方, whoever, whichever, whatever, whomever 例4. While she was getting me settled (settle) into a tiny but clean room, the head of the village was tying up his horse to my car to pull it to a small town some 20 kilometres away _________there was a garage. 技巧2①:定语从句缺地点状语用________________, 缺时间状语用_________________,缺原因状语用____________。 例5. …It is said that the father kept that little gold box by his bed for all the years of his life. __________________ he was discouraged or faced with difficult problems he would open the box, take out an imaginary kiss, and remember the love of this beautiful girl……. 例6. ….____________ old you are, it’s not too late to make your life more interesting. 技巧2②:状语从句 缺地点状语用________________, 缺时间状语用_________________, 缺原因状语用____________, 缺方式状语用___________________。 例7. It is said that ______ short-tempered man in the Song Dynasty(920-1279)was very anxious to help _____ rice crop grow up quickly. 技巧3:名词前面若没有限定词(冠词,形容词性物主代词,不定代词),很可能是填限定词。 例8. …The little girl looked ______ at him with tears rolling from her eyes and said: “Daddy, it’s not empty. I blew kisses into it ____ it was all full.”The father was crushed. He fell ___ his knees and put his arms around his precious little girl. He begged her to forgive him for his unnecessary anger. 技巧4 :介词的使用要注意搭配和上下文语境提示。 例9. …Two world-famous artists, Pablo Picasso______ Candido Portinari, which are worth millions of dollars.

基础英语语法训练200题

II、GRAMAR AND STRUCTURE Exercises 1.The earth goes round the sun for millions upon millions of years without changing its orbit; it the force of gravitation. A. subject B. subjected to C. subjects to D. is subject to 2.The sun is the source of most forms of energy, only a small part of its energy has been used by man. A. and so far B. but so far C. that so far D. but so as 3.Such the case, there were no grounds to justify you complaints and I can do nothing about it.. A. was B. is C. were D. being 4.The people at the reception were pretty worried about Jane because no one was aware she had gone. A. where B. of where C. the place D. of the place where 5. There is no other way you can get there in there hours. A. whereas B. wherein C. whereby D. wherever 6.Any preexisting illness, even the common cold, increases the chances of contracting another disease. A. as mild one as B. as one mild as C. as a mild one as D. as mild a one as 7.Ultrasonic sound is is inaudible to human ear. A. one as B. that as C. such as D. that it 8.The professor said that he would take the statistical data gained through a serious of experiments. A. a source B. as a source C. of a source D. up a source 9. small specimen of the embryonic fluid is removed from a fetus, it will be possible to determine whether the baby will be born with birth defects. A. A B. That a C. If a D. When it is a 10.Java Man, who lived before the first Ice Age, is the manlike animal. A. It is generally believed that B. Generally believed that C. Believed generally is D. That is generally believed 11.Total care means that the ill adult requires a complete bed bath, occupied bed making, and that all procedures, such as change of dressings and placement of intravenous lines, for him. A. must be done B. be done C. are done D. have to be done 12. “Can he buy the car?” “he is as poor as be.” A. may B. man C. need D. can 13.You cannot be careful in making the decision as it was such a critical case. A. very B. quite C. too D. so 13.Imagine a world where a clock dances, where a train has a face and talk, where things move the wrong way. Imagine all , and you have the world of Animation. A. that B. these C. those D. this 15.The examination wasn’t very difficult, but it was long. A. too much B. so much C. very much D. much too 16.Patients with influenza must be separated from the residential quarter the disease should spread from person to person. A. in case B. unless C. lest D. otherwise 17.It is the first time that Princess of Wales has been to the United states, . A. isn’t she B. hasn’t she C. isn’t it D. hasn’t it 18. Understanding the culture habits of another nation, especially containing as many different subcultures as the United States, is a complex task.. A. one B. the one C. that D. such 19. left before the deadline, it doesn’t seem likely that John will accomplish the job.

语法填空题的解题技巧

语法填空题的解题技巧 一、让学生真正了解语法填空题。 在知道高考题型改变之初,许多学生都出现了畏难情绪,觉得题型的 改变对于自己的英语成绩无疑是雪上加霜,主要源于大部分学生认为自己英语成绩低下的主要原因就是语法不好。针对这种情况,平复学生畏难情绪的最好办法就是让学生了解这个题型,并且能够在自己的知识水平的基础上斩获能够得到的分数。解决这个问题需要三个步骤。 首先,让学生清楚语法填空题的出题特点:提示性填空题和自由填空两大类。提示性填空主要考察动词(包括时态、语态和非谓语动词)、形容词和副词(包括形容词和副词之间词性转换和词形转化以及比较级和最高级的变化)以及名词(比较少,但是曾有词性转换方面的题出现)。而自由填空主要集中在冠词(和名词相生相依)、代词、介词、连词和关系词几个方面。学生了解了语法填空题还是在考平时学习的内容,只不过换个考查形式而已。 其次,在广东卷选取一个相对简单的题给学生进行模拟训练,如2010年广东卷的语法填空不是很难,让学生在规定的15分钟内完成,结果,有近三分之一的学生能够做出5个左右,能够得到7.5分,有较好的同学做对了7个,也就是能够得到10.5分,这个成绩明显要比单项选择题得分高,但是也有不容忽视的问题,有至少10个学生得了零分,还有20多个学生做对了两三个空。 不过学生做完题后感觉不像想象中的那么难,所以对语法填空题的畏难情绪一扫而光。 第三,学生的畏难情绪消除之后,还要让学生理智看待语法填空题,并且和短文改错题进行比较,找到两个题型之间的异与同,虽然考查目的不同,但是考查的知识都是相同的,学生在做这两方面的题时,会自觉的想到知识之间的联系,一方面增加做题的自信心,另一方面可以对知识学习做到融会贯通。二、细化做题方法,增加其可操作性。

英语语法专项练习题大全

英语语法练习题 名词 1. This is ___ reading-room. A. the teacher’s B. teacher’s C. teacher’s D. the teachers’ 2. Nothing was found but ___ broken. A. the room window B. the room’s window C. the room of the window D. the window of room 3. How many___ would you like? A. paper B. bread C. pieces of papers D. pieces of bread 4. He was praised for his ___. A. brave B. bravery C. bravely D. great brave 5. Please get me a new ___ when you go to town. A. clothes B. dress C. clothing D. trousers 6. There are 34___ doctors in the hospital. A. woman B. women C. woman’s D. women’s 7. Some___ are even thinner than your little finger. A. bamboo B. bamboos C. kinds of bamboo D. kinds of bamboos 8. He was born in this town and now he lives in ___. A. Building second B. Building Two C. the Building Two D. Building the Second 9. Old as he is, he has ___to do every day. A. a lot of work B. much works C. lots of homeworks D. quite a lot of homeworks 10. Jack’s room is furnished with ___. A. new furnitures B. many new furnitures C. many new pieces of furnitures D. many new pieces of furniture 11. Have you read ___newspaper yet? A. today’s B. Today’s C. the today’s D. your today’s 12. It’s not far, only ___walk from here to our school. A. a ten minutes B. ten minutes C. a ten minutes’ D. ten minutes’ 13. Last month, he wrote me ___letter. A. a 1000-word B. 1000 words C. a 1000-words D. 1000 words’ 14. He had a ___sleep yesterday. A. a good night B. a good-night C. a g ood night’s D. good-night’s 15. ___is not a long way to drive. A. Three miles distance B. Three-mile distance

相关文档
最新文档