1 meters is = 100 centimeters
Input is the right answer.hope it helps.
Accessing a web site in search of magazine articles about a product before its purchase is an example of<u> information seeking.</u>
<u />
<h3>Why knowledge seeking is important?</h3>
Information seeking as a social phenomenon has been instrumental in identifying how academics disseminate new ideas and comment on existing research. Observing how academics make informed choices, and identify resources and strategies to stay on top of the publications is an important element of academic research.
<h3>What are information-seeking Behaviours?</h3>
Information-seeking behavior is the act of actively seeking information to answer a specific query. Information-searching behavior is the conduct which stems from the searcher interacting with the system in question.
To learn more about Information seeking, refer
brainly.com/question/1382377
#SPJ4
Answer:
grade = input("Enter grade")
def add(grade):
if grade == 9:
print("Not in High School Freshman")
elif grade == 10:
print("In High School")
print("somophone")
elif grade == 11:
print("in High School")
print("Junior")
elif grade == 12:
print("in High School")
print("Senior")
else:
print("Grade Not Accepted:")
return 0;
add(11)
Output:
Enter grade 11
in High School
Junior
Process finished with exit code 0
Explanation:
Firstly remember that this is a function, and not a program. Hence, you need to call the function to test it. A python program is interpreted line by line, Hence, we can test a function as well. Here we input a grade, and through the function find the details related to it and the print it out, which is clearly explained through the definition of the function.