Answer:
I think, Every year, thousands of people die as a result of workplace injuries.
Answer:
#include <bits/stdc++.h>
using namespace std;
void funct(){
string name;
cout<<"enter the string: ";
cin>>name;
reverse(name.begin(), name.end());
cout<<"The string is : "<<name<<endl;
}
int main()
{
funct();
return 0;
}
Explanation:
create the function funct() with return type void and declare the variable type string and print a message for asking to used enter the string.
The string enter by user is store in the variable using cin instruction.
after that, we use a inbuilt function reverse() which takes two argument.
firs argument tell the starting point and second index tell the ending point. then, the reverse function reverse the string.
name.begin() it is a function which return the pointer of first character of string.
name.end() it is a function which return the pointer of last character of the string.
finally, print the reverse string.
for calling the function, we have to create the main function and then call the function.
The tool that receives packets and send them along towards their final destination is; Internet Server
<h3>Internet Servers</h3>
We are told that the tool is used to receive packets and send them along towards their final destination.
- Now, the tool is an internet server because internet servers are softwares and hardwares that make use of HTTP and other protocols to respond to client requests that are made over the World Wide Web.
Now, the main job of an internet server is to display website content through storing, processing and delivering webpages to the final destination.
Read more about internet server at; brainly.com/question/20602197
The answer & explanation for this question is given in the attachment below.