Answer:
how do we answer that question when there is no choices to chose from
Explanation:
Answer:
is an action or series of actions that a microprocessor, also known as a central processing unit (CPU), in a computer performs when it receives information.
C and D are direct opposite so one of them cannot be true. A career will bring more responsibilities. So the answer is D. less responsibilities.
#include using namespace std;int main(){int year = 12,value = 10,total = 0;do{year++;value *= 2;total += value;}while(value*2 < 1000);cout << "Age: " << year << endl;cout << "Last gift: " << value << endl;cout << "Total: " << total << endl;cin.get();return 0;