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)
Explanation:
that programming language you must use?
Answer:
Written in Python
import math
principal = 8000
rate = 0.025
for i in range(1, 11):
amount = principal + principal * rate
principal = amount
print("Year "+str(i)+": "+str(round(amount,2)))
Explanation:
This line imports math library
import math
This line initializes principal amount to 8000
principal = 8000
This line initializes rate to 0.025
rate = 0.025
The following is an iteration from year 1 to 10
for i in range(1, 11):
This calculates the amount at the end of the year
amount = principal + principal * rate
This calculates the amount at the beginning of the next year
principal = amount
This prints the calculated amount
print("Year "+str(i)+": "+str(round(amount,2)))
Answer:
Search for the Intel Virtualization Technology (Intel-VT) branding on Intel processors, and search for AMD-V on the AMD processors.
Explanation:
- Streaming SIMD Extensions (SSE) seems to be a standardized instruction, data from multiple guidance collection enhancement to the x86 architecture, developed by Intel and released immediately after the introduction of Advanced Micro Devices 3DNow in their Pentium III range of CP Units in 1999.
- Hyper-V requires different requirements of hardware for running virtual machines in a safe, efficient manner. Minimum 4 Gb of storage. You might need more RAM on the Hyper-V Server for either the virtual servers.
Therefor, it's the right answer.
Answer:
The answer of this question is true