Answer:
a1="Ada Lovelace"
a2= input("Enter Password: ")
def checkpassword(a2):
if a2 == a1:
print("Correct Password")
else:
print("Wrong Password")
return 0
Explanation:
The string as password is given. Now we ask the user to input the password, and this is compared to the original password. If the passwords match, print password matched, or else print wrong password.
Answer:
I believe it's A computer system consists of the operating system that tells the computer how to execute commands.
Explanation:
I looked up the answer; I believe the answer is true.
Answer:
Sequential
Explanation:
Based on the information provided within the question it can be said that the search algorithm that is being described in this scenario is a Sequential algorithm. This is because sequential programming focuses on programming (or in this case searching for) a result by doing one step at a time as opposed to various functions running simultaneously.
Answer:The Nine steps of the engineering design process
- <u>Identify the Problem</u>-Defining the problem
- Finding solutions through Brainstorming technique
- Conducting a background research/Survey
- Developing the solution-Creating an array of solutions
- Selecting the best solution
- Building a prototype
- Testing and redesigning
- Improve the design-Specifying the requirement
- Communicating the result