332,828 views
43 votes
43 votes
I need help I have questions I need answers in coding html,css,js and python.Fast

The purpose of the sleep method is to reduce the amount of energy the program uses.
True
False
The _____ is a collection of webpages that use the internet.
pseudocode
World Wide Web
Python
server
Which of the following lines of code would correctly create a list called weapons?
weapons == [“sword”, “sling”, “knife”]
weapons = [“sword” or “sling” or “knife”]
weapons = (“sword”, “sling”, “knife”)
weapons = [“sword”, “sling”, “knife”]
Which of these lines of code would import both the random and the time modules?
import random, time
import random and time
time.import, random.import
import(random, time)
When using HTML, your text should be placed between the opening and the closing tags.
True
False

User FuzzyAmi
by
2.8k points

1 Answer

23 votes
23 votes

Answer:

1. True

2. World Wide Web

3. weapons = [“sword”, “sling”, “knife”]

4. import random, time

5. True.

Step-by-step explanation:

For number 1 I'm not quite sure since I never personally used it, but it does reduce CPU usage when activated so it's very possible it's true.

User Nikolay R
by
2.9k points