Answer:
an accurate description exact stresses a very strict agreement with fact, standard, or truth. Exact measurements precise adds to exact an emphasis on sharpness of definition or delimitation.
PLEASE MARK ME AS BRAINLIEST ANSWER THANKS
The answer is (a.) Torque wrench
To tighten a nut or bolt with an exact amount of twisting force, you must you torque wrench. By using this tool, you can apply a specific torque to a fastener. The tool was invented by Conrad Bahr in 1918 in New York.
Answer:
c
Explanation:
if all the wires are connected properly ot results to proper working of the computer
Answer:
def validateCreditCard(x):
if type(x)==str and len(x) == 8:
print("Valid credit card number")
else:
print("Invalid credit card number")
validateCreditCard("43589795")
Explanation:
Run the code on your text editor(vs code, sublime, pycharm ) you will get your desired response. If your input is not of type string and not up to 8 digit you will get the response "invalid credit card number" but if it is of type string and up to 8 digit you will get "Valid credit card number".
But remember python works with indentation so when you are transferring this code to your text editor it will run properly well.
I defined the code using the conventional pattern "def"
After defining the function you create a brackets (x) to accommodate your argument x and end it with a semi colon.
Then i use "if" statement to make sure only string argument and 8 digit value will be accepted to print a "valid credit card". if your argument does not pass the if statement condition it will print out the else statement condition which is "Invalid credit card number"
Finally, you have to call your function and test various values.
The best method for modern businesses to authorize the use of workplace resources to its employees is to assign them a user authentication and password.
What is user authentication and password?
This is known to be what identifies a user when using the computer system or others.
Note that in the above, The best method for modern businesses to authorize the use of workplace resources to its employees is to assign them a user authentication and password.
Learn more about businesses from
brainly.com/question/24553900
#SPJ4