All cost decisions it makes during the 30 year period is,
are zero because the cost decisions were made at the beginning of the business
 
        
             
        
        
        
Answer:
$210
Explanation:
Given:
Total budget = $1,685
Amount spent on small improvements = $425
The budget left after spending on small improvements 
= Total budget - Amount spent on small improvements 
= $1,685 - $425
= $1,260
Now,
the budget left is the maximum budget for the all 6 interior doors
Thus, 
6 × max budget for single door = $1,260
or
Max budget for single door = $210
 
        
             
        
        
        
Answer:
DECIDE
Explanation:
D - define the problem
E - establish the criteria
C - consider all alternatives
 I - identify the best alternative
D - develop and implement a plan of action
E - evaluate and monitor the solution and give feedback when necessary
hope this helps please like and mark as brainliest 
 
        
             
        
        
        
Answer:
#include <iostream>
using namespace std;
int main()
{
    double number1, number2, sum;
    cout<<"Enter a number: ";
    
    cin >> number1;
    
    cout<<"Enter another number: ";
    
    cin >> number2;
    sum = number1 + number2;
    
    cout <<"The sum of two numbers is "<< sum <<endl;
    return 0;
}
Explanation:
The correct program can be seen above.
You need to add  #include <iostream> and using namespace std; before your main function. Other issues are following;
Line 4, 5, 6, 7, 9 -> cout and cin must start with a lowercase letter
Line 5 -> cin >> number1;
Line 7 -> cin >> number2;
Line 8 -> sum = number1 + number2;
Line 9 -> cout << "The sum of two numbers is " << sum << endl;
 
        
             
        
        
        
Answer:
It will have no consequence.
It will help meet citizens ' needs and wants.
It will have negative consequence. (C)
It will help contribute to the success of the society. (X)
Explanation: