Answer:
In engineering and materials science, a stress–strain curve for a material gives the relationship between stress and strain. It is obtained by gradually applying load to a test coupon and measuring the deformation, from which the stress and strain can be determined (see tensile testing).
Explanation:
please mark brainliest
Can u be more clear with the question plsss?
Answer:
B
Explanation:
A robot's work envelope is its range of movement. It is the shape created when a manipulator reaches forward, backward, up and down. These distances are determined by the length of a robot's arm and the design of its axes. ... A robot can only perform within the confines of this work envelope.
Answer:
True
Explanation:
All computer parts require DC power to operate, and wall outlets provide AC Power.
Answer:
Check the explanation
Explanation:
class LanguageHelper:
language=set()
#Constructor
def __init__(self, words):
for w in words:
self.language.add(w)
def __contains__(self,query):
return query in self.language
def getSuggestionns(self,query):
matches = []
for string in self.language:
if string.lower().startswith(query) or query.lower().startswith(string) or query.lower() in string.lower():
matches.append(string)
return matches
lh = LanguageHelper(["how","Hi","What","Hisa"])
print('how' in lh)
print(lh.getSuggestionns('hi'))
===========================================
OUTPUT:-
==================
True
['Hisa', 'Hi']
====