Answer:
B: micro
Explanations
a small computer that contains a microprocessor as its central processor.
It is not entirely clear what this question means. I am going to assume that 'value' of a string refers to a numerical value, i.e. the strings represent numbers. The question also does not mention the programming language to use. There is a function in Delphi:
function isGreater(number1, number2: string): boolean;
begin
Return StrToFloat(number1)>StrToFloat(number2);
end;
Answer:
long fact(int n)
{
if(n<=1)//base case
return 1;
long p=fact(n-1);//recursive call.
return n*p;//returning the factorial.
}
Explanation:
Above written function is written in C++ language.It is a recursive function to find the factorial of the function.
If we enter a number equal to or less than 1 then the function returns 1. Then the recursive call is made and it is stored in the long variable p and the result is returned as n*p.
<span>The highest point of the Business Cycle is known as the boom</span>
Answer: Down editing
Explanation:
Down editing is a method of replying emails which allows you to respond point by point to an email. It add certainty, precision and quality to your response and helps prevent misunderstanding of email response.