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
Answer: 32 bits
Explanation:
The subnet mask basically contain 32 bits number which performed various function in terms of mask in the IP address. There are mainly two types IP address that are:
The 32 bit is the mask that is used for the host networking address in the single IP address. If the string represent 1, it means that the subnet mask is the part of the network.
Resposta:
44,76 Kwh
Explicació:
1 cavall = 746 watts
Per tant, 30 cavalls es convertiran en:
30 * 746 = 22380 watts
Temps = 2 hores
La quantitat d'energia consumida s'obté mitjançant la relació:
Energia consumida = Potència * temps
Energia consumida = 22380 watts * 2 hores
Energia consumida = 44760 Wh
A quilowatts (Kwh)
44760 Kwh / 1000 = 44,76 Kwh
Answer:
The program to this question can be given as follows:
Program:
#defining variable quarters, dimes, and nickels.
quarters=int(input("Enter value of quarters: ")) #input value by user dimes=int(input("Enter value of dimes: ")) #input value by user nickels=int(input("Enter value of nickels: ")) #input value by user
#defining variable pennies
pennies = ((25*quarters)+(10*dimes)+(5*nickels))
#calculate value in pennies variable
print('Total number of coins in pennies is: ',pennies)#print value
Output:
Enter value of quarters: 3
Enter value of dimes: 2
Enter value of nickels: 1
Total number of coins in pennies is: 100
Explanation:
In the above python program code, firstly three variable "quarters, dimes, and nickels", all of these variable uses input function, that is used to take input value from the user side, in these variable, an int is used that defined, that user input only integer value.
- After taking input from the user a new variable "pennies" is defined, which is uses the user input values and calculates its addition.
- In the next line, print function is used, which uses variable "pennies" to print its calculated value.