One of the disadvantages of watching the scene rather than reading it is the difficulty in interpreting the movements in the absence of stage directions.
<h3>What are stage directions?</h3>
- They are instructions.
- Show how actors must express their characters through movements and behaviors.
- They show how the scenario should be set.
The stage directions shown in the text above show how actors should move through stage directions. This is shown in detail and specifies that it can be missed if the scene is watched and not read.
More information on stage directions is at the link:
brainly.com/question/404162
Answer:
True.
Explanation:
In the order of houston, San antonio, and dDallas. :)
with populations of (2,3m. 1,5m. 1,3m) each.
Answer:
7
Explanation:
23 - (9 - 5)^2 = 23 - 4^2 = 23 - 16 = 7
The code that read two numbers from user input, then, print the sum of those numbers are as follows:
x = int(input("write a number: "))
y = int(input("write another number: "))
print(x + y)
<h3 /><h3>Code explanation</h3>
- The first line of code ask the user for a number input. The integer input is stored in a variable x.
- The second line of code ask the user for another number input . The integer input is stored in a variable y.
- Finally, we print the sum of the user's input.
learn more on python code here: brainly.com/question/15183327?referrer=searchResults