Answer:
import random
randomlist = []
for i in range(0,20):
n = random.randint(-29,30)
if n < 0 :
n = 100
randomlist.append(n)
print(randomlist)
Explanation:
The random module is first imported as it takes care of random. Number generation.
An empty list called randomliay is created to hold the generated random integers.
Using a for loop, we specify the range of random numbers we want.
Inside the for loop ; we attach our generated random integer which will be in the range (-29 to 30) in a variable n
For each n value generated, if the value is less than 0( it is negative, since all the values are integers), replace the value with 100.
Answer:
The answer is Frequency Spectrum.
Explanation:
The frequency spectrum is range of all component frequencies.It contains all the waves which are as following:-
Gamma Rays
X-Rays
Ultraviolet
Visible light.
Infrared
Micro wave
Radio wave
These all waves have their range of frequencies.The waves that are visible to us is only the visible light.
Answer:
answer 4
Explanation:
no technology, no computers, no computers= paper and paper= handwriting :-)
The answer is FALSE
The RJ11 is most commonly known as the "telephone" standard. Most wired landline phones almost certainly use an RJ11 jack or an RJ11 connector. RJ11 has between 4 or 6 wire connection, but only 2 wires are used for connection as compared to a RJ14 which is also used in connecting telephone lines and uses 4 wires for connection.
The elements in a string type array will be initialized to "Null".