There is a amount of 1,00
Answer:
Point type is a horizontal or vertical line of text that begins where you click and expands as you enter characters. Each line of text is independent—the line expands or shrinks as you edit it, but doesn’t wrap to the next line. Entering text this way is useful for adding a few words to your artwork.
Select the Type tool or the Vertical Type tool .
The pointer changes to an I-beam within a dotted box. The small horizontal line near the bottom of the I-beam marks the position of the baseline, on which the text rests.
(Optional) Set text-formatting options in the Control panel, Character panel, or Paragraph panel.
Click where you want the line of text to begin.
Explanation:
Answer:
B) Loop control Variable
Explanation:
When programming, A loop control variable is used to control the number of iterations for a program loop. By convention programmers love to call this variable counter, i, j, n etc. The control variable when defined will determine the number of times a loop will execute. See the example bellow in C++ where we use a for loop to print the word "Hello" 5 times
<em>#include <iostream></em>
<em>using namespace std;</em>
<em>int main()</em>
<em>{</em>
<em> for(int counter = 0; counter<5; counter++){</em>
<em> cout<<"Hello"<<endl;</em>
<em> }</em>
<em> return 0;</em>
<em>}</em>
In this code snippet, the control variable is called counter and the condition is that counter will run from 0 to 4. So we get the world Hello printed five times