Answer:
See explaination
Explanation:
#include <iostream>
using namespace std;
string * createAPoemDynamically()
{
string *p = new string;
*p = "Roses are red, violets are blue";
return p;
}
int main() {
while(true) {
string *p;
p = createAPoemDynamically();
if (!p)
{
cout << "Memory allocation failed\n";
}
cout<<*p<<"\n";
// assume that the poem p is not needed at this point
//delete allocated memory
delete p;
}
}
Answer:
What colors does she like most, and what colors best correlate with the subject of the website.
Explanation:
You want to have the color relate to the subject of the website, or just favorites!
Answer:
wow its quite long ill send it to you in a couple of days
In an online business, the buyers can't examine the product, their reviews are unpredictable, and there is also a threat of hackers attacking the website.
<h3>What is an online business?</h3>
Conducting an activity of selling products online with the help of internet is known as an online business. Apart from numerous benefits, it has some great disadvantages like,
- Threats of hacking and cyberattacks on the website.
- There may be bad reviews from the buyers if they are not satisfied with the product they purchased.
- The buyers don't have the accessibility of physical experience of the product before buying.
Hence, options A, C and D are the disadvantages of an online business.
Learn more about online business here:
brainly.com/question/27626484
#SPJ1