itgle.com

Interrupt Service Routines (ISR) are the )ortions of the program code that handle the interrupt requests. When an Interrupt is triggere i (either a hardware or software interrupt), the processor breaks away from the current task. moves the (72) to the ISR

题目

Interrupt Service Routines (ISR) are the )ortions of the program code that handle the interrupt requests. When an Interrupt is triggere i (either a hardware or software interrupt), the processor breaks away from the current task. moves the (72) to the ISR, and then continues operation. When the ISR has comr Leted, the processor retums execution to the previous location.

A.memory

B.function

C.instruction pointer D variable


相似考题
参考答案和解析
正确答案:C
中断服务程序是用来进行中断请求处理的程序。当中断被触发时(不管是硬中断还是软中断),处理器会停止当前的工作,将指令指针指向中断服务程序,并继续操作。当中断完成后,处理器会恢复到中断之前的位置。
更多“Interrupt Service Routines (ISR) are the )ortions of the program code that handle the inte ”相关问题
  • 第1题:

    ( )refers to the range of computer hardware and OS platforms on which the source code of a program can be compiled and run.

    A.Usability
    B.Portability
    C.Reliability
    D.Maintainability

    答案:B
    解析:
    可移植性指的是计算机硬件和操作系统平台的范围,在这些平台上都可以编译和运行程序的源代码。A可使用性 B可移植性 C可靠性 D可维护性

  • 第2题:

    An operating system also has to be able to service peripheral( ),such as timers,motors,sensors,communicationdevices,disks,etc.All of those can request the attention of the OS( ),i.e.at the time that they want to use the OS,theOS has to make sure it's ready to service the requests.Such a request for attention is called an interrupt.There are twokinds of interrupts:Hardware interrupts and Software interrupts.The result of an inteiTup:is also a triggering of theprocessor,so that it jumps to a( )address.Examples of cases where software interrupts appear are perhaps a divide by zero,a memory segmentation fault,etc.So this kind of interrupt is not caused by a hardware event but by a specificmachine language operation code.Many systems have more than one hardware interrupt line,and the hardwaremanufacturer typically assembles all these interrupt lines in an interrupt(请作答此空).An Interrupt( )is a piece of hardware that shields the OS from the electronic details of the interrupt lines,so that interrupts can be queued and none of themgets lost.

    A.vector
    B.array
    C.queue
    D.ist

    答案:A
    解析:

  • 第3题:

    public class Test {   public static void main (String args) {  string foo = “blue”;  string bar = foo;   foo = “green”;   System.out.printIn(bar);   }   }   What is the result?()  

    • A、 An exception is thrown.
    • B、 The code will not compile.
    • C、 The program prints “null”
    • D、 The program prints “blue”
    • E、 The program prints “green”

    正确答案:D

  • 第4题:

    public class foo {  public static void main (string[]args)  try {return;}  finally {system.out.printIn(“Finally”);}  }  What is the result?()

    • A、 The program runs and prints nothing.
    • B、 The program runs and prints “Finally”
    • C、 The code compiles, but an exception is thrown at runtime.
    • D、 The code will not compile because the catch block is missing.

    正确答案:B

  • 第5题:

    Company.com recently updated the programs used in an HACMP pre-event. The procedure Involved coping the new code over the old code in the appropriate directory on one of the nodes as indicated by the HACMP event entry. The cluster was synchronized. During a fallover test, the backup system did not behave as expected.  What is the most likely problem?()  

    • A、 The new pre-event program was node locked to a hostname
    • B、 The new pre-event program was not made executable on al nodes.
    • C、 The new pre-event program was not compatible with the backup machine.
    • D、 The new pre-event program was not propagated to all the nodes in the cluster.

    正确答案:D

  • 第6题:

    Where can you add your own PL/SQL code in relation-handling triggers?()

    • A、Before the "End default relation program section" comment. 
    • B、After the "Begin default relation program section" comment. 
    • C、Before the "Begin default relation program section" comment. 
    • D、It is not possible to modify the relation-handling code that Forms automatically creates for relations.

    正确答案:C

  • 第7题:

    单选题
    You develop a service application named PollingService that periodically calls long-running procedures.These procedures are called from the DoWork method.You use the following service application code:   When you attempt to start the service, you receive the following error message: Could not start the PollingService service on the local computer.Error 1053: The service did not respond to the start or control request in a timely fashion. You need to modify the service application code so that the service starts properly.What should you do?()
    A

    Move the loop code into the constructor of the service class from the OnStart method.

    B

    Drag a timer component onto the design surface of the service. Move the calls to the long-running procedure from the OnStart method into the Tick event procedure of the timer, set the Enabled property of the timer to True, and call the Start method of the timer in the OnStart method.

    C

    Add a class-level System.Timers.Timer variable to the service class code. Move the call to the DoWork method into the Elapsed event procedure of the timer, set the Enabled property of the timer to True, and call the Start method of the timer in the OnStart method.

    D

    Move the loop code from the OnStart method into the DoWork method.


    正确答案: A
    解析: 暂无解析

  • 第8题:

    单选题
    Where can you add your own PL/SQL code in relation-handling triggers?()
    A

    Before the End default relation program section comment. 

    B

    After the Begin default relation program section comment. 

    C

    Before the Begin default relation program section comment. 

    D

    It is not possible to modify the relation-handling code that Forms automatically creates for relations.


    正确答案: A
    解析: 暂无解析

  • 第9题:

    多选题
    You create a service application that monitors free space on a hard disk drive.  You must ensure that the service application runs in the background and monitors the free space every minute. What should you do?()
    A

    Add code to the default constructor of the Service class to monitor the free space on the hard disk drive.

    B

    Add code to the OnStart method of the Service class to monitor the free space on the hard disk drive.

    C

    Add an instance of the System.Windows.Forms.Timer class to the Service class and configure it to fire every minute.

    D

    Add an instance of the System.Timers.Timer class to the Service class and configure it to fire every minute.

    E

    Add code to the OnStart method of the Service class to start the timer.

    F

    Add code to the Elapsed event handler of the timer to monitor the free space on the hard disk drive.

    G

    Add code to the Tick event handler of the timer to monitor the free space on the hard disk drive.


    正确答案: A,G
    解析: 暂无解析

  • 第10题:

    单选题
    public class foo {  public static void main (string[]args)  try {return;}  finally {system.out.printIn(“Finally”);}  }  What is the result?()
    A

     The program runs and prints nothing.

    B

     The program runs and prints “Finally”

    C

     The code compiles, but an exception is thrown at runtime.

    D

     The code will not compile because the catch block is missing.


    正确答案: D
    解析: 暂无解析

  • 第11题:

    单选题
    You are creating a Windows Forms application by using the .NET Framework 3.5.You plan to develop a new control for the application. You need to ensure that the control extends the DataGridView control by allowing the cells to contain multicolored text. What should you do?()
    A

    Override the OnPaint method.

    B

    Write a code segment to handle the CellPainting event.

    C

    Write a code segment to handle the CellParsing event.

    D

    Write a code segment to handle the RowPostPaint event.


    正确答案: B
    解析: 暂无解析

  • 第12题:

    单选题
    In INMASAT-A service code 32().
    A

    medical assistance

    B

    medical advise

    C

    maritime assistance

    D

    technical assistance


    正确答案: A
    解析: 暂无解析

  • 第13题:

    After analyzing the source code,()generates machine instructions that will amy out the meaning of the program at a later time.

    A.an Interpreter
    B.A.linker
    C.A.compiler
    D.A.converter

    答案:C
    解析:
    本题考查计算机专业英语知识在分析了源代码之后,()生成了机器指令,将在以后执行程序的含义A 翻译B 链接器C 编译器D 转换器

  • 第14题:

    其中关于服务代码(SERVICE CODE)下面的描述是正确的?()

    • A、服务代码( Service code)可以帮助客户提取他/她的车辆在非营业时间
    • B、服务代码( Service code)是单独的维修项目
    • C、服务代码( Service code)经车间发出
    • D、服务代码( Service code)描述了保养工作的成本
    • E、服务代码( Service code)可通过仪表读出

    正确答案:D,E

  • 第15题:

    public class foo {   public static void main (stringargs)   try {return;}   finally {system.out.printIn(“Finally”);}   }     What is the result?()  

    • A、 The program runs and prints nothing.
    • B、 The program runs and prints “Finally”
    • C、 The code compiles, but an exception is thrown at runtime.
    • D、 The code will not compile because the catch block is missing.

    正确答案:B

  • 第16题:

    下列四组选项中,均是不合法的C51标识符的是()

    • A、abc、#int、65
    • B、int、5xy、isr-t0
    • C、isr*int0、interrupt、int3
    • D、int3、t1_t2、you

    正确答案:B

  • 第17题:

    Given  1.  public class Foo {  2.  public static void main (String [] args) }  3.  try { return;}  4.  finally { Syste.out.printIn (“Finally”);}  5. }  6. }   What is the result( )?

    • A、 The program runs and prints nothing.
    • B、 The program runs and prints “Finally”.
    • C、 The code comiles. But an exception is thrown at runtime.
    • D、 The code will not compile because the catch block is missing.

    正确答案:B

  • 第18题:

    You are developing a Windows Communication Foundation (WCF) service to replace an existing ASMX Web service.The WCF service contains the following code segment. (Line numbers are included for reference only.) 01 [ServiceContract( )] 02 03 public interface IEmployeeService 04 { 05 [OperationContract( )] 06 EmployeeInfo GetEmployeeInfo(int employeeID); 07 08 } 09 10 public class EmployeeService : IEmployeeService 11 { 12 13 public EmployeeInfo GetEmployeeInfo(int employeeID) 14 { 15 ... 16 } 17 } 18 19 20 public class EmployeeInfo 21 { 22 ... 23 public int EmployeeID { get; set; } 24 public string FirstName { get; set; } 25 public string LastName { get; set; } 26 27 }The existing Web service returns the EmployeelD as an attribute of the Employeelnfo element in the response XML.You need to ensure that applications can consume the service without code changes in the client. What should you do?()

    • A、Insert the following code at line 02. [DataContractFormat()] Insert the following code at line 22. [DataMember()]
    • B、Insert the following code at line 02. [XmlSerializerFormat()] Insert the following code at line 22. [XmlAtttibute()]
    • C、Insert the following code at line 09. [XmlSerializerFormat()] Insert the following code at line 22. [XmlAttribute()]
    • D、Insert the following code at line 19. [DataContractFormat()] Insert the following code at line 22. [DataMember()]

    正确答案:B

  • 第19题:

    单选题
    What is the result( )?
    A

     The program prints “0”.

    B

     The program prints “4”.

    C

     The program prints “8”.

    D

     The program prints “12”.

    E

     The code does not compile.


    正确答案: E
    解析: 暂无解析

  • 第20题:

    单选题
    public class Test {  public static void main (String [] args)  {  string foo = “blue”;  string bar = foo;  foo = “green”;  System.out.printIn(bar);  }  }   What is the result?()
    A

     An exception is thrown.

    B

     The code will not compile.

    C

     The program prints “null”

    D

     The program prints “blue”

    E

     The program prints “green”


    正确答案: B
    解析: 暂无解析

  • 第21题:

    单选题
    Company.com recently updated the programs used in an HACMP pre-event. The procedure Involved coping the new code over the old code in the appropriate directory on one of the nodes as indicated by the HACMP event entry. The cluster was synchronized. During a fallover test, the backup system did not behave as expected.  What is the most likely problem?()
    A

     The new pre-event program was node locked to a hostname

    B

     The new pre-event program was not made executable on al nodes.

    C

     The new pre-event program was not compatible with the backup machine.

    D

     The new pre-event program was not propagated to all the nodes in the cluster.


    正确答案: C
    解析: 暂无解析

  • 第22题:

    单选题
    Which reference code is displayed during the boot process that signals that an administrator may interrupt the boot process to enter the SMS Menu?()
    A

    517

    B

    B0G1

    C

    E1F1

    D

    00A8


    正确答案: B
    解析: 暂无解析

  • 第23题:

    单选题
    You work as an application developer at Certkiller .com. You have been given the task of developing a Windows service application that regularly monitors other Windows services on the same computer. This Windows service application must also log any abnormal file system activity. You have added the following class to the Windows service application: public class EnumerateService : ServiceBase { public static EnumerateService () { this.ServiceName = "Enumerate Service"; this.CanStop = true; } protected override void OnStart (string[] args) { // Enumerate all services and initialize the FileSystemWatcher } protected override void OnStop () { // Stop the FileSystemWatcher and perform cleanup } public static void Main () { EnumerateService service = new EnumerateService(); } } You then create the installer for the Windows service application, and install the Windows service application. You have configured the Windows service Startup type to Automatic, and rebooted the system. You then test the new Windows service application, and find that it is not working.You need to ensure that the service is working properly. What should you do?()
    A

     Override the OnBoot method instead of the OnStart method.

    B

     Replace the Main method code with the following code: EnumerateService service = new EnumerateService (); Service.Run ();

    C

     Override the OnLoad method instead of the OnStart method.

    D

     Replace the Main method code with the following code: EnumerateService service = new EnumerateService (); Run (service);


    正确答案: D
    解析: 暂无解析