i need help on that too :cc
 
        
             
        
        
        
Answer:
Hard very good hard drive 
Explanation:
 
        
                    
             
        
        
        
Answer:
Because then it would break
Explanation:
You achieve this by obtaining correct measurements. When measuring a window, plumb refers to the vertical planes, and level refers to the horizontal planes. So he did not install the window totally plumb
 
        
             
        
        
        
Answer:
Algorithm:
1. Declare an integer variable N.
2. Read the value N from user.
3.While(N):
  3.1 find r=N%10;
  3.2 print r in new line.
  3.3 Update N as N=N/10.
4.end program.
Implementation in C++.
// header
#include <bits/stdc++.h>
using namespace std;
// main function
int main() 
{
// variable
 int N;
 cout<<"Enter an Integer:";
    cin>>N;
// find the digits of number
    while(N)
    {
        // last digit
        int r=N%10;
        // print last digit
        cout<<r<<endl;
        // update the number
        N=N/10;
}
return 0;
}
Output:
Enter an Integer:329                                        
9                                                           
2                                                           
3 
 
        
             
        
        
        
Answer:
The plan that includes procedures and processes that ensure the smooth functioning of the business even after a disaster is the:
business continuity and disaster recovery plan.
Explanation:
An entity that has good business continuity and disaster recovery plan maintains its full operational activities and processes after a business disaster.   After the business disaster, the entity may even grow bigger, because it has identified critical functions and their dependencies for continued growth.  While the period is a time of recovery, for business entities that are well-prepared, the recovery period offers a unique opportunity for innovation and rapid recovery and development on all fours: organization, processes, people, and performance.