Hello!
The answer is:
-D. Communication with friends and family after other systems were disabled by a major earthquake.
I hope this helps you! :)
Answer:
Explanation:
Radio waves are a part of electromagnetic waves. They are high wavelength and low frequency waves that are classified as non-ionizing radiation. These waves are mostly used for communication purposes.
Radio waves carry are interpreted by devices that converts them to mechanical energy that can be interpreted and easily discerned. These waves carry a broad range of information.
These waves carry time-varying electrical signals that can easily be transmitted and they are produced by accelerated electrical charges.
Marie could either ask a friend or her parents to peer edit it and tell her if its good enough or if she should work on it more.<span />
Answer:
please write in english i cannot understand
Explanation:
Answer:
Following are the python code to print the given pattern:
print('FOURTH') # using print method
for i in range(10): #using loop to count numbers
for j in range(10-i): # use loop to print asterisk value in reverse order
print("*", end=" ") #print value
print("") #using print method for space
Output:
Please find the attachment.
Explanation:
The description of the above python program can be described as follows:
- In the first line, use the print method, that print message "FOURTH".
- In the next line, two for loop is used in which the first loop counts the number to be print value, inside the loop another for loop is used.
- In this loop, it prints asterisk values in its reverse order and for new lines, it will use the print method with a single white space.