Answer:
the study of the production and distribution of goods and services and their management is
Explanation:
thats all you said
Answer:
An absolute cell reference is a cell address that contain a dollar sign $ in row and column coordinate or both. We use absolute reference to keep row and column constant
Example: C5*$C$2
The reference to C2 is absolute and will not change when copied.
Answer:
True
Explanation:
This is a definite yes (true) since the newer technologies like Microsoft's ASP.net, (Active server pages) offers greater possibilities such as integration to modern databases like MySql, MongoDB etc, cloud computing technologies etc. These newer technologies are designed for the current platforms with their special requirements.
Answer:
#include <bits/stdc++.h>
using namespace std;
int main() {
string in;//string in for taking input...
cout<<"Do you want to continue ?"<<endl;
getline(cin,in);//taking input from the user...
if(in=="y"||in=="Y"||in=="yes"||in=="OK"||in=="Why not?")//conditions..
cout<<"OK"<<endl;
else if(in=="No")
cout<<"terminating"<<endl;
else
cout<<"Bad input"<<endl;
return 0;
}
Explanation:
I have taken a string in.
Then taking input from user.
Checking the conditions using if else if ladder.