Answer:
Contribute to individual 401(k) = $61,000
Explanation:
Given:
Revenue = $538,000
Expenses = $107,600
Find:
Contribute to individual 401(k)
Computation:
Contribute to individual 401(k) = $55,000
Kathy is younger then 50 years so, She have t pay $6,000 more:
So,
Contribute to individual 401(k) = $55,000 + $6,000
Contribute to individual 401(k) = $61,000
Answer:
B. Leadership
Explanation:
Leadership is the art for encouraging the people towards attaining a common goal. In this, it give directions to the workers & colleagues in order to meet out the needs of the company by having a strategy.
Since in the question it is mentioned that manager permit the assitant to make the decision but also scheduled the weekly meeting
So here the manager represent the leadership attribute
Answer:
2..?
Explanation:
I'm bad at finding area lol
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;