Answer:
The answer is "assessment"
Explanation:
In the given question some information is missing, that is options that can be described as follows:
a) containment strategy.
b) assessment.
c) incident response.
d) disaster assessment.
Assessment also known as community risk, which is used for evaluations. It played a crucial role in the reaction and recovery after a dangerous incident in any organization.
- In this process, the Information of the degree and the position, which is lost are included in the collected information by the Accident investigation Taskforce.
- This data is analyzed to evaluate the needs of members and the entire community, and other choices are wrong that can be described as follows:
- In option a, It is a part of world war II, that's why it is wrong.
- In option c, It is a method that is sort major incident, that's why it is wrong.
- In option d, It uses cost control and risk avoidance, that's why it is wrong.
It’s a pipeline to transport natural gas.
True a pdf is a file format that provides a electronic image of a document and it can be viewed, printed and electronically transmitted.
Something like the following. Also you need to give what language you are using. Anyways, you should be able to convert this to your language of choice.
<script type="text/javascript">
function checkGeneration() {
var gen = ["Baby Boomer ","Generation X","Xennials","Generation Y"];
var reversestr = "";
var getyear = window.prompt("Enter a 3 digit number: ");
if (parseInt(getyear) <= 1964) {
alert(gen[0]);
} else if(parseInt(getyear) <= 1979) {
alert(gen[1]);
} else if(parseInt(getyear) <= 1985) {
alert(gen[2]);
} else if(parseInt(getyear) <= 1995) {
alert(gen[3]);
}
}
checkGeneration();
</script>