Answer:
c.storage device
Explanation:
Why is it important to plan out the design of an app?
Answer:
you could mess it up
Explanation:
let me explain an app may be easy if you know what your doing. if you dont you most likely might miss a code or mess up the hole code.
how do you make a triangle on art.kano.com
Umm, I guess you just try to do one? I don't know.. Sorry if I couldn't help out.
I believe you can do it!
Answer: I would watch a YouT-ube video on a tutorial on doing that
But i am pretty sure it involves coding
Explanation:
rolulzoss
A. State three positive uses of computers in the government sector
Answer:
1) it's easier to keep documents
Write a function that takes as input a person’s name, city, state, zip code, and address, where the address is either one string (one line) or two strings (two lines), and prints the person’s information like a mailing label. Show that the routine works regardless of whether it is called with one address line or two address lines.
I realized you needed this in python.
def func(name, city, state, zip, address1, address2):
print(name)
print(address1)
if address2 != "":
print(address2)
print(city + ", " + state + " " + zip)
func(input("Enter your name: "), input("Enter your city: "), input("Enter your state: "), input("Enter your zip: "),
input("Enter the first part of your address: "),
input("Enter the second part of your address: (simply press enter if not applicable) "))
This works for me. If you come across any errors, I'll do my best to help out. Best of luck.