The weight of an object is directly perportional to value of g. which is 9.8 m/s2
. if the value is zero then the weight of that object will be zero on that surface.Watch this video to understand more about your topic.
http://googletune.com/watch?v=hPEx3gxtPK4
There a 52 weeks in a year
Answer:
D
Explanation:
because it is a administrative procedure
These computers in administrative offices or schools throughout the district that are networked to each other has the type of network most likely used by the workers is LAN network. Usually LAN networks are used in small offices or rooms.
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.