Answer:
1. Cloud Storage Solutions
2. Digital Communication Tools
3. Cloud ERP Systems
4. CRM Platforms
5. Digital Accounting Tools
For more information, please visit: https://www.gend.co/blog/the-digitisation-tools-with-the-biggest-impact-for-business?hs_amp=true
Hope this helps!!
Answer:
1 - if all three are the same person then possibility of verifying the software or its scope for the general public will remain unknown
2 - it will not return any profit when all are the same person thus it will remain in one isolated environment
3 - it cannot be used by the masses if all three people are the same person
Explanation:
while building any software system it needs three sets of people who are an important part of this development chain. They are the client, developer, and user. if suppose all three are the same person while developing any software then some problems are occurring and that are mentioned below
1 - if all three are the same person then possibility of verifying the software or its scope for the general public will remain unknown
2 - it will not return any profit when all are the same person thus it will remain in one isolated environment
3 - it cannot be used by the masses if all three people are the same person
the one thing that needs to be done for removing all these problems is to assigned different people for different phases. so that the developer can validate the scope of software in the market.
The correct answer is A : Business Process
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.