Since wireframing and storyboarding are both part of the developing phase, I would think that the answer is Planning
The answer to this question is that Mary should choose insert image . Then, in the wrap text Mary should choose “top and bottom” to add it below the text she wrote. Using the option Top and bottom - text appears at the top and bottom of the image.
Answer:
The difference between While loop and Do - While loop are explained below.
Explanation:
- While loop : It is a looping procedure in which the statements inside the while loop are executed depending on the condition outside the while before starting the loop.
- If the condition is true then the code inside loop is executed otherwise not.
- Do - While loop: It is a looping procedure in which the statements inside the loop get executed and then the condition at the end of the loop is checked.
- This means even the condition is fails the statements inside the loop are executed once.
- Do while loop name itself suggests that "do the while and then check the condition".
Answer:
A. A1
Explanation:
Worksheet's Columns are named with Alphabets. i.e. A,B,C,D,E....
And Worksheet's rows are named with numbers. i.e. 1,2,3,4,5....
So the intersection of first row number as "1" and First Column name as "A" is A1 as worksheet displays column name first and then row number.