单项选择题

案例分析题

Successful Language Learners
Some people seem to have a knack for learning languages.They can pick up new vocabulary,master rules or grammar,and learn to write in the new language more quickly than others.They do not seem to be any more intelligent than others,so what makes language learning so much easier for them?Perhaps if we take a close look at these successful language learners,we may discover a few of the techniques that make language easier for them.
First of all,successful language learners are independent learners.They do not depend on the book or the teacher;they discover their own way to learn the language.Instead of waiting for the teacher to explain,they try to find the patterns and the rules for themselves.They are good guessers who look for clues and form.their own conclusions.When they guess wrong,they guess again.They try to learn from mistakes.
Successful language learning is active learning.Therefore,successful learners do not wait for a chance to use the language;they look for such a chance.They find people who speak the language and they ask these people to correct them when they make a mistake.They will try anything to communicate.They are not afraid to repeat what they hear or to say strange things;they are willing to make mistakes and try again.When communication is difficult,they can accept information that is inexact or incomplete.It is more important for them to learn to think in the language than to know the meaning of every world.
Finally,successful language learners are learners with a purpose.They want to learn the language because they are interested in the language and the people who speak it.It is necessary for them to learn the language in order to communicate with these people and to learn from them.They find it easy to practice using the language regularly because they want to learn with it.
What kind of language learner are you?If you are a successful language learner,you have probably been learning independently,actively,and purposefully.On the other hand,if your language learning has been less than successful,you might as well try some of the techniques outlined above.

Paragragh1().

A. Ways to learn a language Successfully
B. Learning to Language Purposefully
C. Learning a Language Actively
D. Learning a Language Independently
E. Learning from Mistakes
F. Learning to Think in the Target Language

热门 试题

未分类题
阅读以下说明和Java代码,将应填入(n)处的语句写在对应栏内。 【说明】 本程序通过移动滑动条修改颜色RGB值,从而控制颜色。程序中有一个面板、3个标签和3个滑动条,标签和滑动条一一对应,分别对应三原色红、绿、蓝,任意拖动其中的一个滑动条,所对应的颜色值就会发生变化,面板的颜色也会发生对应的变化,如下图所示,滑动条值的范围是0~255。 【Java代码】 import java.awt.*; import java.awt.event.*; import javax.swing.*; public class simple extends JFrame. implements AdjustmentListener{ public simple(){ setTitle('simple'); setSize(300, 200); addWindowListener(new WindowAdapter(){ public void windowClosing((1)){ System.exit(0); } }); Container contentPane=getContentPane(); JPanel p=(2); p.setLayout(new GridLayout(3, 2)); p.add(redLabel=new JLabel('Red 0')); p.add(red=new JScrollBar(Adjustable. HORIZONTAL, 0, 0, 0, 255)); red.setBlocklncrement(16); red.addAdjustmentListener(this); p.add(greenLabel=(3) ('Green 0')); p.add(green=new JScrollBar(Adjustable.HORIZONTAL 0, 0, 0, 255)); green setBIocklncrement(16); green.addAdjustmentListener(this); p.add(blueLabel=new JLabel('Blue 0')); p.add(btue=new JScrollBar(Adjustable. HORIZONTAL, 0, 0, 0, 255)); blue,setBIocklncrement(16); blue.addAdjustmentListener(this); contentPane.add(p, 'South'); colorPanet=new JPanel(); colorPanet.setBackground(new Color(0, 0, 0)); contentPane.add((4),'Center'); } public void adjustmentValueChanged(AdjustmentEvent evt){ redLabel.setText('Red'+red.getValue()); greenLabel.setText('Green'+green.getValue()); blueLabel.setText('Blue'+blue.getValue()); coiorPanel.setBackground(new Color(red.getValue(), green.getValue(), blue.getValue())); colorPanel.repaint(); } public static void main(String[] args){ JFrame. f=(5); f.show(); } private JLabel redLabel; private JLabel greenLabel; private JLabel blueLabel; private JScrollBar red; private JScroilBar green; private JScrollBar blue; private JPanel colorPanel;