Answer: Power
Explanation:
The rate at which work is done or the amount of work done based on a period of time is referred to as power.
Power can also be defined as the amount of energy that is being transferred per unit time. The unit of power is one joule per second or simply called the watt.
no artical shoul be used here
Answer:
A calliper is a device used to measure the dimensions of an object.
Many types of calipers permit reading out a measurement on a ruled scale, a dial, or a digital display. Some calipers can be as simple as a compass with inward or outward-facing points, but no scale.
I'm not sure what a "Vapier" Calliper is, but I assume it's about the same thing.
Full Question
1. Correct the following code and
2. Convert the do while loop the following code to a while loop
declare integer product
declare integer number
product = 0
do while product < 100
display ""Type your number""
input number
product = number * 10
loop
display product
End While
Answer:
1. Code Correction
The errors in the code segment are:
a. The use of do while on line 4
You either use do or while product < 100
b. The use of double "" as open and end quotes for the string literal on line 5
c. The use of "loop" statement on line 7
The correction of the code segment is as follows:
declare integer product
declare integer number
product = 0
while product < 100
display "Type your number"
input number
product = number * 10
display product
End While
2. The same code segment using a do-while statement
declare integer product
declare integer number
product = 0
Do
display "Type your number"
input number
product = number * 10
display product
while product < 100
Answer:
6,3,2,5,1,4 because they jst are
Explanation: