Idek but hope u figure it out!
Answer:
x = input ("Enter a word: ")
y = input ("Enter a word: ")
print ( x, " ", y)
Explanation:
This is the simplest way to write it using Python.
Answer:
Explanation:
Since no further information was provided I created the PayLevel function as requested. It takes the Ssn as input and checks it with a premade dictionary of Ssn numbers with their according salaries. Then it checks that salary against the average of all the salaries and prints out whether it is Above, Below, or Average. The output can be seen in the attached picture below.
employeeDict = {162564298: 40000, 131485785: 120000, 161524444: 65000, 333221845: 48000}
average = 68250
def PayLevel(Ssn):
pay = employeeDict[Ssn]
print("Employee " + str(Ssn) + " is:", end=" "),
if pay > average:
print("Above Average")
elif pay < average:
print("Below Average")
else:
print("Average")
PayLevel(161524444)
PayLevel(131485785)
Answer:a)wiki
Explanation: Wiki , which is operated by the wiki software ,is a website that provides the knowledge content to the various users.The site content is written in the basic form of language using the markup language.The text present in the content can be change accordingly.
Other given options are incorrect a e-zine is a type of electronic magazine on the computer system,blog is known as the journal in online mode,and search engine is used for searching any particular component on system. Thus the correct option is option(a).