<span>an oceanic plate collides with a continental plate</span>
This idk but i have a friend who might know it thou
Answer:
September 2, 1945
Since then, both August 14 and August 15 have been known as “Victoryover Japan Day,” or simply “V-J Day.” The term has also been used for September 2, 1945, when Japan's formal surrender took place aboard the U.S.S
Explanation:
Answer:
The pseudocode is as follows:
input name
while name != "STOP"
print name
input name
End while
Explanation:
This gets name from the user
input name
This loop is repeated until the user inputs "STOP".
while name != "STOP"
This prints the name entered by the user
print name
This gets another name input from the user
input name
The loop ends here
End while