Question: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
What should you do? To answer, you need to move the three appropriate actions from the list of actions to the answer area and arrange them in the correct order.
A Add an instance of the system.Timers.Timer class to the Service class and configure it to fire every minute. <br /><br />Add code to OnStart method of the Service class to start the timer. <br /><br />Add Code to the Elapsed event handler of the timer to monitor the free space on the hard disk drive. <br /><br />
B Add code to OnStart method of the Service class to start the timer. <br /><br />Add Code to the Elapsed event handler of the timer to monitor the free space on the hard disk drive. <br /><br />Add an instance of the system.Timers.Timer class to the Service class and configure it to fire every minute. <br /><br />
C Add an instance of the system.Timers.Timer class to the Service class and configure it to fire every minute. <br /><br />Add Code to the Elapsed event handler of the timer to monitor the free space on the hard disk drive. <br /><br />
D Add an instance of the system.Timers.Timer class to the Service class and configure it to fire every minute. <br /><br />Add code to OnStart method of the Service class to start the timer. <br /><br />Add Code to the Elapsed event handler of the timer to monitor the free space on the hard disk drive. <br /><br />Add code to the the Tick event handler of the timer to monitor the free space on the hard disk drive.