Answer:
Option a is the correct answer for the above question.
Explanation:
- The above question asked about the order of the result which is derived from the above query. The above query holds an order by clause in desc order which is used to produce the result in descending order.
- The descending order result is produced on the behalf of balance_due attributes and the option a also states the same. Hence option a is correct while the other is not because:-
- Other is not states that the result is produced on the behalf of descending order.
Is what it is so it can’t be what it isn’t
D is the answer to the question
Answer:
nothing
Explanation:
Because the return type of the function is void. void means does not return any thing.
The syntax of the function:
type name( argument_1, argument_2,......)
{
statement;
}
in the declaration the type define the return type of the function.
it can be int, float, double, char, void etc.
For example:
int count( int index);
the return type of above function is int. So, it return integer.
similarly,
void count(int index);
it return type is void. So, it does not return any thing.
Answer:
false
Explanation:
string literal cannot be be assigned to a fixed length char array. however, it can be assigned using a char* e.g:
char* word =(char*) "CCA\0";