Answer:
The minimum volume requirement for the granite stones is 1543.64 cm³
Explanation:
1 granite stone weighs 10 denarium
100 granted stones will weigh 1000 denarium
1 denarium = 3.396g
1000 denarium = 3396g.
But we're told that 20% of material is lost during the making of these stones.
This means the mass calculated represents 80% of the original mass requirement, m.
80% of m = 3396
m = 3396/0.8 = 4425 g
This mass represents the minimum mass requirement for making the stones.
To now obtain the corresponding minimum volume requirement
Density = mass/volume
Volume = mass/density = 4425/2.75 = 1543.64 cm³
Hope this helps!!!
is the volume of the sample when the water content is 10%.
<u>Explanation:</u>
Given Data:

First has a natural water content of 25% =
= 0.25
Shrinkage limit, 

We need to determine the volume of the sample when the water content is 10% (0.10). As we know,
![V \propto[1+e]](https://tex.z-dn.net/?f=V%20%5Cpropto%5B1%2Be%5D)
------> eq 1

The above equation is at
,

Applying the given values, we get

Shrinkage limit is lowest water content

Applying the given values, we get

Applying the found values in eq 1, we get


Answer:
a. 1.91 b. -8.13 mm
Explanation:
Modulus =stress/strain; calculating stress =F/A, hence determine the strain
Poisson's ratio =(change in diameter/diameter)/strain
Answer:
Complete question is:
write the following decorators and apply them to a single function (applying multiple decorators to a single function):
1. The first decorator is called strong and has an inner function called wrapper. The purpose of this decorator is to add the html tags of <strong> and </strong> to the argument of the decorator. The return value of the wrapper should look like: return “<strong>” + func() + “</strong>”
2. The decorator will return the wrapper per usual.
3. The second decorator is called emphasis and has an inner function called wrapper. The purpose of this decorator is to add the html tags of <em> and </em> to the argument of the decorator similar to step 1. The return value of the wrapper should look like: return “<em>” + func() + “</em>.
4. Use the greetings() function in problem 1 as the decorated function that simply prints “Hello”.
5. Apply both decorators (by @ operator to greetings()).
6. Invoke the greetings() function and capture the result.
Code :
def strong_decorator(func):
def func_wrapper(name):
return "<strong>{0}</strong>".format(func(name))
return func_wrapper
def em_decorator(func):
def func_wrapper(name):
return "<em>{0}</em>".format(func(name))
return func_wrapper
@strong_decorator
@em_decorator
def Greetings(name):
return "{0}".format(name)
print(Greetings("Hello"))
Explanation: