Answer:
These are personal skill
Explanation:
Interpersonal ;; how you deal with the others.
Mathematical ;; how you use maths.
Verbal ;; how you speak
Those are internal values. They do not fit those others. So personal.!
Answer:
Production is where the principal photography for the movie or TV show takes place.
Explanation:
During rehearsals and camera blocking, Stand-Ins work with the Director, Assistant Director, camera crew, and other crew members to block out actor movements and lighting set-ups for a scene.
Answer:
ii. break
Explanation:
In Computer programming, a loop can be defined as a sequence of instructions that are executed repeatedly until a specific condition is true or for a certain number of times.
This ultimately implies that, a loop is a programming structure that continually repeats a sequence of instructions until a specific condition is true (met) or for a definite number of times.
Basically, there are three (3) main types of loop in programming and these includes;
I. For loop.
II. While loop.
III. Repeat.
Since loops continually repeats a sequence of instructions until a specific condition is true (met), it is a best practice to ensure that the loop breaks at some point to avoid an infinite loop. An infinite loop typically causes a software program to crash.
Thus, the break command is used by programmers to prevent an infinite loop or terminate a current loop immediately.
Hence, the command to get out of the loop is break.
To convert the inputs to dollars and cents, we make use of a combination of multiplication and addition.
The program written in Python where comments are used to explain each line is as follows:
<em />
<em>#This gets input for the number of quarters</em>
quarters = int(input("Quarters: "))
<em>#This gets input for the number of dimes</em>
dimes = int(input("Dimes: "))
<em>#This gets input for the number of nickels</em>
nickels= int(input("Nickels: "))
<em>#This gets input for the number of pennies</em>
pennies= int(input("Pennies: "))
<em>#This converts the amount to dollars and cents</em>
dollars = quarters * 0.25 + dimes * 0.10 + nickels * 0.05 + pennies * 0.01
<em>#This prints the amount to 2 decimal places</em>
print("Amount ${:.2f}".format(dollars))
Read more about Python programs at:
brainly.com/question/22841107
Answer:
Variables. Variables are used to store items in a database so that humans and the computer can better understand the program, and use later on for referencing.