Answer:
I think it was about cheaper ads on Instagram and how they are lowering their prices.
Explanation:
Answer:
The answer is "True".
Explanation:
To transfer data, the fiber optic wire used a high-speed data transmission medium, which includes a small glass or plastic polymers, that carry the light beam to transmit data through swift light flashes through the cable.
- It enables the transmission of data more quickly over larger distances.
- In this cable, the traditional cable use to provide web data transfer to cable TV, that why the given statement is true.
Answer:
1, 4, 7
Explanation:
The instruction in the question can be represented as:
for i in range(1,10,3):
print i
What the above code does is that:
It starts printing the value of i from 1
Increment by 3
Then stop printing at 9 (i.e.. 10 - 1)
So: The sequence is as follows
Print 1
Add 3, to give 4
Print 4
Add 3, to give 7
Print 7
Add 3, to give 10 (10 > 10 - 1).
So, it stops execution.
Answer:
def normalize(text):
text = text.lower()
text = text.split()
return text
Explanation:
The functiinfunction is provided with an input text when called upon, then it changes every character in the text into lower case and split each word with a space.