When it is shining it is precious. When it is normal it is accurate.
Please make as brainliest please please
Answer: C) Real-time editing
Explanation: Real-time editing is when two or more people work on thesame document live and simultaneously, this means that each user is able to work on thesame piece of document right from their individual devices at the same time with automatic and instant merging of their individual input. Google uses this feature in Google docs; which allows one to share notes and research with other users allowing them to work on the document from their individual devices live and simultaneous.
Answer:
by its system software
Explanation:
it is programmes by programmers like that its language is binary (0,1) so thats y when we switch it it gets to on just because that button is programmed like that if the home button wasn't on the mobile the mobile would not work it would be useless...
Answer:
#include<stdio.h> //header file
int main() //main function
{
float num; // variable declaration
printf("Enter a number to test:\n"); // getting variable for test
scanf("%f", &num);
if (num>45.6) //Testing weather greater or smaller
printf("\n %f is greater than 45.6", num); // Result if greater
else
printf("\n %f is not greater than 45.6", num); // Result if smaller or equal
return 0;
}
Explanation:
- First of all , a variable will be declared in float (data type ).
- User will input data in variable.
- The variable will be compared using logical operator with 45.6
- If it is greater, A phrase will be passed that number is greater than 45.6
- Else if the number will not greater the phrase will say that the number is not greater than 45.6