Answer:
8 mm
Explanation:
Given:
Diameter, D = 800 mm
Pressure, P = 2 N/mm²
Permissible tensile stress, σ = 100 N/mm²
Now,
for the pipes, we have the relation as:
where, t is the thickness
on substituting the respective values, we get
or
t = 8 mm
Hence, the minimum thickness of pipe is 8 mm
Answer:
Business activities may broadly be classified into two categories namely (A) Industry and (B) Commerce. Industry involves production of goods and services whereas commerce is concerned with the distribution of goods and services.
Explanation:
hope helps
The function that you will use in order to test the reverse route back toward the original host is known as Extended ping. Thus, the correct option for this question is B.
<h3>What is Ping and traceroute for?</h3>
Ping and traceroute are the common commands you can effectively utilize in order to troubleshoot network problems. Ping is a simple command that can typically test the reachability of a device on the network. While traceroute is a command you use to 'trace' the route that a packet takes when traveling to its destination.
Extended ping permits a router's ping command to use The router's LAN IP address from within the subnet, fully testing the route back to the subnet. A standard ping often does not test the reverse route that you need to back toward the original host.
Therefore, the function that you will use in order to test the reverse route back toward the original host is known as Extended ping. Thus, the correct option for this question is B.
To learn more about Ping and traceroute, refer to the link:
brainly.com/question/28333920
#SPJ1
Answer:
<em>Python code is as follows:
</em>
********************************************************************************
#function to get number up to any number of decimal places
def toFixed(value, digits):
return "%.*f" % (digits, value)
print("Enter the price: ", end='', flush=True) #prompt for the input of price
price = float(input()) #taken input
totalCost = price + 0.05 * price #calculating cost
print("Total Cost after the sales tax of 5% is applied: " + toFixed(totalCost,2)) #print and output totalCost
************************************************************************************