x = input("Enter a word: ")
y = input("Enter a word: ")
x,y = y, x
print(x)
print(y)
I hope this helps
Answer:
Companies typically choose the best approach to carry out the implementation, utilizing several well-known and popular implementation strategies which include big bang, phased- rollout, parallel adoption, and a combination of phased-rollout and parallel adoption.
Explanation:
Answer:
CPU, printer, peripherals
Explanation:
Keep in mind hardware is parts you can add to the computer. Other examples are monitor, keyboard, mouse.
Microsoft Office and the operating system are software.
Answer:
Explanation:
Click File > Options > Mail.
Under Compose messages, click Stationery and Fonts
On the Personal Stationery tab, under New mail messages, click Font.
If you want to change font styles for messages you reply to or forward, under Replying or forwarding messages, click Font
On the Font tab, under Font, click the font you want to use.
You can also select a font style and size.
If the font you choose isn't installed on the recipient's computer, the recipient's mail program substitutes an available font.
Answer:
Answered below.
Explanation:
//Program in Python
login_name = "Admin"
password = "PASS"
display = " "
user_login_name = input ("Enter username: ")
user_password = input("Enter your Password: ")
if user_login_name == login_name and user_password == password:
display = "Correct Login"
elif user_login_name != login_name:
display = "wrong username"
elif user_password != password:
display = "wrong password"
print(display)