Answer:
ultraviolate light
Explanation: Because the photosensitive material in the plate reacts to the ultraviolate light and causes a chemical change exposing the plate
Answer:
Beeper
Explanation:
A buzzer pr beeper, as security device, converts electrical energy to sound energy.
Answer:
The correct program to this question as follows:
Program:
//header file
#include <stdio.h> //include header file for using basic function
int main() //defining main method
{
int amountToChange=19,numFives,numOnes; //defining variable
numFives = amountToChange/5; //holding Quotient
numOnes = amountToChange%5; //holding Remainder
printf("numFives: %d\n", numFives); //print value
printf("numOnes: %d\n", numOnes); //print value
return 0;
}
Output:
numFives: 3
numOnes: 4
Explanation:
In the above program first, a header file is included then the main method is declared inside the main method three integer variable is defined that are "amountToChange, numFives, and numOnes", in which amountToChange variable a value that is "19" is assigned.
- Then we use the numFives and the numOnes variable that is used to calculate the number of 5 and 1 , that is available in the amountToChange variable.
- To check this condition we use (/ and %) operators the / operator is used to hold Quotient value and the % is used to hold Remainder values and after calculation prints its value.
It is called a fluid layout
A fluid
web page typically is configured with percentage widths that sometimes take up
100% of the browser. They will use relative units like percentages instead of pixels
and will often fill the width of the page regardless of what the width of the
browser might be. They keep the same spatial weighting to all elements and
works fine on different sizes of screens of similar sort. They define each area
of an image layout perfectly.