Answer:
a group of instructions that can be used to organize a program or perform a repeated task
Explanation:
A function is a group of commands that can be called upon with extra parameters if needed.
Example:
def foo(): #defining this function and naming it foo
return True #what is performed when foo is called on
if foo() == True: #foo() is calling on a function named foo
print('yes')
Answer: TRUE
Explanation: Networking technology is the term used to describe the entire processes through which computer or mobile systems are linked up either through optic fibers,wireless systems in order to enhance effective communication across networks or regions.
OSI (open system interconnection), the earliest models partitions into seven layers and the OSI is known as model that creates partitioning a communication system classing them into abstraction layers.
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.
Answer: dynamic computer language
Explanation:
JavaScript is a dynamic computer language. Hope this helps! (•‿•)
DRM likely is the answer. Anything that prevents duplication really.