Answer:
Option(d) is the correct answer to the given question.
Explanation:
A hot site is a place off site in which the task of a corporation could restart during a massive failure.The hot site seems to have all the needed equipment for such the corporation to schedule the normal activities, such as phone jacks, replacement data, laptops, and linked devices.
- The main objective of hot sites provide an useful backup mechanism for any corporation that wishes to pursue its business in the presence of exceptional circumstances or events.
- All the others options are not related to hot site that's why they are incorrect option.
Answer:
a
Explanation:
The variable declared in the for is accessible only within the for loop and it goes out of scope once the loop get end
eg : for(int i=1;i<=10,i++) // variable i is declared
{
// variable i is visible only in this block,
}
//After this the variable i goes out of scope