Answer:
The reciprocal is 0.4
Explanation:
To find the reciprocal of a fraction, switch the numerator and the denominator (the top and bottom of the fraction, respectively). So, simply speaking, the reciprocal of a/b is b/a. To find the reciprocal of a number, divide 1 by the number.
Example:
What is a reciprocal of 10?
The opposite of 10 is -10. The reciprocal of 10 is 110 or 0.1
Answer:
comma
Explanation:
The for loop is used to execute the specific statement again and again until the condition is false.
The syntax:
for(initialization;condition;increment/decrement)
{
statement;
}
In the initialization, we an initialize more than one variable by using the 'comma' as separator.
similarly for condition and increment/decrement part as well.
for example:
for(int x = 0,y = 0;x<5,y<5;x++,y++)
{
statement;
}
we can used as many as possible by using comma
A field whose data type is URL address data can store text that can be used as a hyperlink address.