Answer: hardness
Explanation:
Hardness is a measure of a material's ability to resist plastic deformation. In other words, it is a measure of how resistant material is to denting or scratching. Diamond, for example, is a very hard material. It is extremely difficult to dent or scratch a diamond. In contrast, it is very easy to scratch or dent most plastics.
Answer:
-25.63°C.
Explanation:
We know that throttling is a constant enthalpy process

From steal table
We know that if we know only one property in side the dome then we will find the other property by using steam property table.
Temperature at saturation pressure 1 bar is 99.63°C and Temperature at saturation pressure 0.35 bar is about 74°C .
So from above we can say that change in temperature is -25.63°C.
But there is no any option for that .
Answer:
Explanation:
class Pet:
def __init__(self):
self.name = ''
self.age = 0
def print_info(self):
print('Pet Information:')
print(' Name:', self.name)
print(' Age:', self.age)
class Dog(Pet):
def __init__(self):
Pet.__init__(self)
self.breed = ''
def main():
my_pet = Pet()
my_dog = Dog()
pet_name = input()
pet_age = int(input())
dog_name = input()
dog_age = int(input())
dog_breed = input()
my_pet.name = pet_name
my_pet.age = pet_age
my_pet.print_info()
my_dog.name = dog_name
my_dog.age = dog_age
my_dog.breed = dog_breed
my_dog.print_info()
print(' Breed:', my_dog.breed)
main()
Answer:
a) 24 kg
b) 32 kg
Explanation:
The gauge pressure is of the gas is equal to the weight of the piston divided by its area:
p = P / A
p = m * g / (π/4 * d^2)
Rearranging
p * (π/4 * d^2) = m * g
m = p * (π/4 * d^2) / g
m = 1200 * (π/4 * 0.5^2) / 9.81 = 24 kg
After the weight is added the gauge pressure is 2.8kPa
The mass of piston plus addded weight is
m2 = 2800 * (π/4 * 0.5^2) / 9.81 = 56 kg
56 - 24 = 32 kg
The mass of the added weight is 32 kg.
In Engineering, the thrust angle is checked by referencing: C. vehicle centerline.
<h3>What is a
thrust angle?</h3>
A thrust angle can be defined as an imaginary line which is drawn perpendicularly from the centerline of the rear axle of a vehicle, down the centerline.
This ultimately implies that, the thrust angle is a reference to the centerline (wheelbase) of a vehicle, and it confirms that the two wheels on both sides are properly angled within specification.
Read more on thrust angle here: brainly.com/question/13000914
#SPJ1