Answer:
character
Which word (s) best describe personality. character
Asphalt Shingles...............
Sorry is this a question? If it is a question I don’t know the answer
Answer:
In cell A3 we type
=Right(A2,5)
Explanation:
The Right function in the Microsoft excel is placing the character or the string into the right position .Following are the syntax to using the right function in the excel sheet
=Right(cell name,num _of_character )
- cell name-In this we have to specify the cell name
- num_of_character -In this we have to specify the number of character we want the right of the cell name .
From the given question We have putting the string in the cell A2 and we have used the function in the cell A3 i.e
=Right(A2,5)
Answer:
The function in C++ is as follows:
int isSorted(int ar[], int n){
if (
||
){
return 1;}
if (
<
){
return 0;}
return isSorted(ar, n - 1);}
Explanation:
This defines the function
int isSorted(int ar[], int n){
This represents the base case; n = 1 or 0 will return 1 (i.e. the array is sorted)
if (
||
){
return 1;}
This checks if the current element is less than the previous array element; If yes, the array is not sorted
if (
<
){
return 0;}
This calls the function, recursively
return isSorted(ar, n - 1);
}