Answer:
because it is easy to access not hard not all things from the internet are reliable they don't always have expert sources
Explanation:
this is the definition:<span>a global computer network providing a variety of information and communication facilities, consisting of interconnected networks using standardized communication protocols.</span>
Contact sheet. Anything else?
Answer:
Explanation:
The following code is written in Python. It prompts the user for the name and age, saves them to their own variables. Then it creates and calculates the dogAge variable. Finally, it combines all of this information and prints out the statement.
name = input("Enter your name: ")
age = input("Enter your age: ")
dogAge = int(age) * 7
print("Your name is", name, "and in dog years you are", dogAge, "years old.")