网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
单选题
Which of the following statements about the Audio-lingual Method is wrong? _____
A
The method involves giving the learner stimuli in the form of prompts.
B
The method involves praising the correct response or publishing incorrect response until the right one is given.
C
Mother tongue is accepted in the classroom just as the target language.
D
Emphasis is laid upon using oral language in the classroom; some reading and writing might be done as homework.
参考答案
参考解析
解析:
Audio-lingual Method(听说教学法)的基本特点是:先听说、后读写;教学以句型为中心;将外语与母语对比,确定教学难点;大量练习和反复实践;及时纠正任何错误;尽量不用母语;广泛利用电化教学手段。C项不是听说教学法的特点。
Audio-lingual Method(听说教学法)的基本特点是:先听说、后读写;教学以句型为中心;将外语与母语对比,确定教学难点;大量练习和反复实践;及时纠正任何错误;尽量不用母语;广泛利用电化教学手段。C项不是听说教学法的特点。
更多 “单选题Which of the following statements about the Audio-lingual Method is wrong? _____A The method involves giving the learner stimuli in the form of prompts.B The method involves praising the correct response or publishing incorrect response until the right one is given.C Mother tongue is accepted in the classroom just as the target language.D Emphasis is laid upon using oral language in the classroom; some reading and writing might be done as homework.” 相关考题
考题
Which of the following is a formal invitation that requests a formal response that describes the method of work and associated compensation.A Request for quotation (RFQ)B Request for proposal (RFP)C Request for bids (RFB)D Invitation for bids (IFB)E Letter of intent (LOI)
考题
148 Which of the following is a formal invitation that requests a formal response that describes the method of work and associated compensation.A. Request for quotation (RFQ)B. Request for proposal (RFP)C. Request for bids (RFB)D. Invitation for bids (IFB)E. Letter of intent (LOI)
考题
Which of the following statements about authentication responses and conditions is true? ()(Choose two.)
A. When a router receives a failure response, it stops querying authentication methods.B. When a router receives an error response, it stops querying authentication methods.C. If the router receives a failure response from an authentication method, it queries the next method.D. The router does not differentiate between failure and error responses; the authentication process is always interrupted.E. If it receives no response from the authentication method, a router will determine the error condition on its own; the router also has the option to proceed to the next method in a list if configured accordingly.
考题
Which of the following statements about Audio-lingual Method is wrong?A.The method involves giving the learner stimuli in the form of prompts.
B.The method involves praising the correct response or publishing incorrect response until the right one is given.
C.Mother tongue is accepted in the classroom just as the target language.
D.Emphasis is laid upon using oral language in the classroom; some reading and writing might be done as homework.
考题
Total Physical Response as a TEFL method is more often used for teaching__________.
A.children
B.adults
C.ESP course
D.GE course
考题
Total Physical Response as a TEFL method is more often used for teaching__________ .
A.children
B.adults
C.ESP course
D.GE course
考题
The Total Physical Response method emphasizes comprehension and the use of physical actions to teach a foreign language at an introductory level.()
考题
Which of the following statements about authentication responses and conditions is true? ()(Choosetwo.)A、When a router receives a failure response, it stops querying authentication methods.B、When a router receives an error response, it stops querying authentication methods.C、If the router receives a failure response from an authentication method, it queries the next method.D、The router does not differentiate between failure and error responses; the authentication process is always interrupted.E、If it receives no response from the authentication method, a router will determine the error condition On its own; the router also has the option to proceed to the next method in a list if configured accordingly.
考题
Which two prevent a servlet from handling requests.?()A、 The servlet’s init method returns a non-zero status.B、 The servlet’s init method throws a Servlet ExceptionC、 The servlet’s init method sets the Servlet Response’s context length to 0D、 The servlet’s init method sets the Servlet Response’s content type to null.E、 The servlet’s init method does NOT return within a time period defined by the servlet container.
考题
When designing a system to use WS-Federation, which browser Single Sign-On (SSO) method should be used?()A、Browser GETB、Browser POSTC、Browser ArtifactD、Browser Response
考题
Which statements concerning the methods notify() and notifyAll() are true? A、Instances of class Thread have a method called notify().B、A call to the method notify() will wake the thread that currently owns the monitor of the object.C、The method notify() is synchronized.D、The method notifyAll() is defined in class Thread.E、When there is more than one thread waiting to obtain the monitor of an object, there is no way to be sure which thread will be notified by the notify() method.
考题
Which of the following statements about variables and scope are true?() A、 Local variables defined inside a method are destroyed when the method is exited.B、 Local variables are also called automatic variables.C、 Variables defined outside a method are created when the object is constructed.D、 A method parameter variable continues to exist for as long as the object is needed in which the method is defined.
考题
Which two statements are true about using the isUserInRole method to implement security in a Java EEapplication?()A、It can be invoked only from the doGet or doPost methods.B、It can be used independently of the getRemoteUser method.C、Can return "true" even when its argument is NOT defined as a valid role name in the deployment descriptor.D、Using the isUserInRole method overrides any declarative authentication related to the method in which it is invoked.
考题
Which two statements are true about the hashCode method?()A、The hashCode method for a given class can be used to test for object equality and object inequality for that class.B、The hashCode method is used by the java.util.SortedSet collection class to order the elements within that set.C、The hashCode method for a given class can be used to test for object inequality, but NOT objecte quality, for that class.D、The only important characteristic of the values returned by a hashCode method is that the distribution of values must follow a Gaussian distribution.E、The hashCode method is used by the java.util.HashSet collection class to group the elements within that set into hash buckets for swift retrieval.
考题
You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5. The application must redirect the original URL to a different ASPX page. You need to ensure that the users cannot view the original URL after the page is executed. You also need to ensure that each page execution requires only one request from the client browser. What should you do?()A、Use the Server.Transfer method to transfer execution to the correct ASPX page.B、Use the Response.Redirect method to transfer execution to the correct ASPX page.C、Use the HttpContext.Current.RewritePath method to transfer execution to the correct ASPX page.D、Add the Location: new URL value to the Response.Headers collection. Call the Response.End() statement. Send the header to the client computer to transfer execution to the correct ASPX page.
考题
You are developing an ASP.NET MVC 2 Web application. A page makes an AJAX request and expects a list of company names in the following format. ["Adventure Works","Contoso"] You need to write an action method that returns the response in the correct format. Which type should you return from the action method?()A、AjaxHelperB、XDocumentC、JsonResultD、DataContractJsonSerializer
考题
Which of the following statements about variables and their scopes are true? () A、 Instance variables are member variables of a class.B、 Instance variables are declared with the static keyword.C、 Local variables defined inside a method are created when the method is executed.D、 Local variables must be initialized before they are used.
考题
单选题When designing a system to use WS-Federation, which browser Single Sign-On (SSO) method should be used?()A
Browser GETB
Browser POSTC
Browser ArtifactD
Browser Response
考题
单选题Which of the following statements about Audio-lingual Method is wrong?A
The method involves making a comparison between foreign language and mother language.B
The method involves correcting the mistakes timely.C
Mother tongue is accepted in the classroom as the target language.D
Emphasis is laid upon using oral language in the classroom; some reading and writing might be done as homework.
考题
单选题Which of the following information should be entered on the form?A
Amount of money earnedB
Name of employerC
Remittance method usedD
Employee’s company address
考题
多选题Which statements concerning the methods notify() and notifyAll() are true?AInstances of class Thread have a method called notify().BA call to the method notify() will wake the thread that currently owns the monitor of the object.CThe method notify() is synchronized.DThe method notifyAll() is defined in class Thread.EWhen there is more than one thread waiting to obtain the monitor of an object, there is no way to be sure which thread will be notified by the notify() method.
考题
单选题You are developing an ASP.NET MVC 2 Web application. A page makes an AJAX request and expects a list of company names in the following format. ["Adventure Works","Contoso"] You need to write an action method that returns the response in the correct format. Which type should you return from the action method?()A
AjaxHelperB
XDocumentC
JsonResultD
DataContractJsonSerializer
考题
单选题Total Physical Response as a TEFL method is more often used for teaching .A
childrenB
adultsC
ESP courseD
GE course
考题
单选题You create a Microsoft ASP.NET application by using the Microsoft .NET Framework version 3.5. The application must redirect the original URL to a different ASPX page. You need to ensure that the users cannot view the original URL after the page is executed. You also need to ensure that each page execution requires only one request from the client browser. What should you do?()A
Use the Server.Transfer method to transfer execution to the correct ASPX page.B
Use the Response.Redirect method to transfer execution to the correct ASPX page.C
Use the HttpContext.Current.RewritePath method to transfer execution to the correct ASPX page.D
Add the Location: new URL value to the Response.Headers collection. Call the Response.End() statement. Send the header to the client computer to transfer execution to the correct ASPX page.
考题
多选题Which two prevent a servlet from handling requests.?()AThe servlet’s init method returns a non-zero status.BThe servlet’s init method throws a Servlet ExceptionCThe servlet’s init method sets the Servlet Response’s context length to 0DThe servlet’s init method sets the Servlet Response’s content type to null.EThe servlet’s init method does NOT return within a time period defined by the servlet container.
考题
单选题Which of the following about ISM Code is not right?()A
It aims to ensure safety at seaB
It aims to avoid damage to the environmentC
It aims to prevent human injury or loss of lifeD
It aims to provide a method to run a company
考题
多选题Which two statements are true about using the isUserInRole method to implement security in a Java EEapplication?()AIt can be invoked only from the doGet or doPost methods.BIt can be used independently of the getRemoteUser method.CCan return true even when its argument is NOT defined as a valid role name in the deployment descriptor.DUsing the isUserInRole method overrides any declarative authentication related to the method in which it is invoked.
热门标签
最新试卷