Micro structure can be used to reduce friction and slipping of a smooth surface becoming possible to hold on.
<u>Explanation:</u>
Micro structure is a structure which is very fine and small. It can be made visible if it is seen with the help if a micro scope. It can not be seen other wise directly through the eyes because it is very small is size not becoming visible to the eyes.
These even though are very small is size can be helped to increase the friction on a smooth surface and reduce the slipping of the object off the smooth surface. This will lead to no hurting of the person off a smooth surface.
Answer:
IT IS SIMPLE LIKE HENRY FORD MADE THIS OPTION POSSIBLE
Explanation:
Answer:
Insert
'try:' at line 1
'except:' at line 3
Explanation:
The "try and except" commands in Python are used for exception handling.
try: the statements under this block are executed normally
except: the the statements under this block are executed when there is an exception.
We can use these commands to handle errors, for example, in the given scenario we don't want the user to enter a floating point number such as
1.5, 2.6 etc.
When the user enters an integer number then the except command is not executed.
When the user enters a floating point number then the except command is executed, program is stopped and error message is shown that is at line 4
Python code:
# line 1
try:
# line 2
age = int(input("Enter your age: "))
# line 3
except:
# line 4
print("Invalid input")
Output:
Test 1:
Enter your age: 20
Test 2:
Enter your age: 20.5
Invalid input
Answer:
lastName.compareTo("Dexter")>0
Explanation:
The expression that evaluates to true if the value of variable lastName is greater than the string Dexter is; lastName.compareTo("Dexter")>0.
Answer:
this might help
Explanation:
https://science.ksc.nasa.gov/mars/msp98/misc/MCO_MIB_Report.pdf