Answer:
The British Standards Institution, is the national standards body of the United Kingdom. BSI produces technical standards on a wide range of products and services and also supplies certification and standards-related services to businesses
Unless cylinders are firmly secured on a special carrier intended for this purpose, regulators shall be removed and valve protection caps put in place before cylinders are moved. A suitable cylinder truck, chain, or other steadying device shall be used to keep cylinders from being knocked over while in use.
Answer:
// Program is written in C++
// Comments are used to explain some lines
// Only the required function is written. The main method is excluded.
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
int divSum(int num)
{
// The next line declares the final result of summation of divisors. The variable declared is also
//initialised to 0
int result = 0;
// find all numbers which divide 'num'
for (int i=2; i<=(num/2); i++)
{
// if 'i' is divisor of 'num'
if (num%i==0)
{
if (i==(num/i))
result += i; //add divisor to result
else
result += (i + num/i); //add divisor to result
}
}
cout<<result+1;
}
Answer:
The graph representing the linear inequalities is attached below.
Explanation:
The inequalities given are :
y>x-2 and y<x+1
For tables for values of x and y and get coordinates to plot for both equation.
In the first equation;
y>x-2
y=x-2
y-x = -2
The table will be :
x y
-2 -4
-1 -3
0 -2
1 -1
2 0
The coordinates to plot are : (-2,-4) , (-1,-3), (0,-2), (1,-1) ,(2,0)
Use a dotted line and shade the part right hand side of the line.
Do the same for the second inequality equation and plot then shade the part satisfying the inequality.
The graph attached shows results.