ohhhhh okkkkkkkk??!! haha
Answer:
Following are the code to this question:
def data(a):#defining method data that accepts parameter
print (a)#print parameter value
def data(b):#defining method data that accepts parameter
print (b)#print parameter value
x=input("enter value: ")#defining variable x that5 input value from user
print(data(x))#call method data
Output:
enter value: hello..
hello..
None
Explanation:
- As the above code, it is clear defines that python doesn't support the method overloading because More than one method can't be specified in a python class with the same name and python method arguments have no type.
- The single argument method may be named using an integer, a series, or a double value, that's why we can say that it is not allowed.
Answer:
Polymorphism
Explanation:
You can have a basic button class that gets inherited by other classes.
class Button {
function pushButton(){}
}
class ElevatorButton extends Button{};
class BigRedButton extends Button{};
With these new classes, they inherit from the basic button class. They can decide what happens when the method pushButton() is called.
You don't need to worry about what pushButton() actually does, you can just call it if the object is of the type "Button" and you can expect it to work.
Answer: ack wishes to quickly reproduce many identical copies of a genetically engineered plant that does not breed naturally. --PLANT TISSUE CULTURE
Thelma needs seeds to germinate without the presence of a pollen source. --VEGETATIVE APOMIXES
Dean wishes to immediately combine the traits of two or more related plants without resorting to breeding or genetic engineering. -- GRAFTING
Sunita wishes to simultaneously gain new plants while reducing the size and volume of an established plant. -- PLANT DIVISION
Explanation: I just did the assignment and these were the correct answers!