B. Calc or Excel
C. Impress or PowerPoint
D. Notepad or Paint​
Answer:
I think notepad is best suited for this task...
The right or one position to the right.
I hope this was helpful.
inkjet
dot matrix
3D
laser
Answer:
inkjet
Explanation:
inkjet printers if you'll be printing a small volume of documents and colored images regularly, inkjet printers will get the job done.
Answer:Laser
Explanation: I took the quiz
Going to need your answer choices
thanks :)
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: