Loop takes only positive numbers and terminates once it encounters a negative numbers.
Answer and Explanation:
Using javascript:
Var positiveInt= window.prompt("insert positive integer");
While(positiveInt>=0){
Alert("a positive integer");
Var positiveInt= window.prompt("insert positive integer");
}
Or we use the do...while loop
Var positiveInt= window.prompt("insert positive integer");
do{
Var positiveInt= window.prompt("insert positive integer");
}
While (positiveInt>=0);
The above program in javascript checks to see if the input number is negative or positive using the while loop condition and keeps executing with each input until it gets a negative input
Answer:
Power = 1920 Watts or 1.92 Kilowatts
Explanation:
Given the following data;
Resistance = 30 Ohms
Voltage = 240 Volts
To find power rating of the kettle;
Mathematically, the power consumption of an electric device is given by the formula;
Power = voltage²/resistance
Substituting into the formula, we have;
Power = 240²/30
Power = 57600/30
Power = 1920 Watts or 1.92 Kilowatts
Answer:
Nothing just the video is series of photos together
Explanation:
I believe it is a white curb!
When writing the cover letter, the following points are important:
- Keep it short.
- Proofread.
- Avoid cliches.
- Be creative.
<h3>
What is a cover letter?</h3>
A cover letter simply means a document that's written alongside a CV when an individual applies for jobs.
The cover letter should be addressed to a specific person and should describe one's accomplishments and achievements.
Learn more about cover letters on:
brainly.com/question/3602860