Answer:
Follows are the method definition to this question:
void Reverse_Order(struct Node* h)//defining a recursive method Reverse_Order that takes structure in parameter
{
if (h == NULL)//use if block to check head equal to null
return;//use return keyword
Reverse_Order(h->next);//call method recursively
cout<<h->data;//print data
}
Explanation:
In the above code, a recursive method "Reverse_Order" takes structure as the parameter, and inside the method, structure variable h is used that uses the if conditional statement to check the header equal to null.
In the condition is true, it will use the return keyword, and in the next step, it calls the method recursively, and print its value in the reverse order.
Answer:
Syntax error
Explanation:
This is a type of error that occurs when there is a problem with the code that makes it unable to compile and execute.
For example, making a conditional statement without using the correct parameters will result in a syntax error.
I believe the answer is B spread sheet because i use spread sheets to make my life easier. I organize info in a spread sheet then it is really easy to find.
hope this helps<span />
Answer:
hmmm well what is your magager?? every job will ask you what you can do.
Answer:
The answer is A.Absolute reference.
Explanation:
Absolute reference is a cell reference whose location remains constant when the formula is copied.