Answer:
Focus on facts.
Suggest improvements even in positive reviews.
Respond to the business if it offers to address your concern.
Explanation:
In order to establish credibility when posting complaints or reviews, focus must be on fact and must be well supported.
Readers will have more trust in a review that is balanced, therefore one must try to request suggestion for improvement even if the post is positive. Update can be done on original post to effect changes or bring in ideas gotten through communication with the business.
Since the website is permanent, one will be able to edit a post, but not to remove it. Also posts from unknown sources can be tracked, so transparency is needed
Answer: Network redundancy can be defined as the process of adding the network device, along with a line of communication to provide network availability.
Explanation:
Benefits of building redundancy into a network: It decreases the risk of network failure.
If one server fails to transfer the information, then the backup server will take the charge to help in continuing the communication.
Potential issues with building redundancy: Denial of service and cyber attacks are the threats to network.
Without the use of backup system the one point failure can disrupt the entire system.
#include <iostream>
#include <vector>
std::vector<int> v;
int main(int argc, char* argv[]) {
while(1) {
int temp;
std::cout << "\nEnter a number: ";std::cin>>temp;
if(temp<0) {
std::cout << "\nEven number(s) is/are:\n---------------------\n";
for(int i=0;i<v.size();i++) {
if(v.at(i)%2==0) std::cout << v[i] << " ";
else continue;
}
std::cout << std::endl;
break;
}else {
v.push_back(temp);
}
}
return 0;
}