Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Which ICS functional area arranges for resources and needed services to support achievement of the incident objectives?
Logistics.
Logistics.
See lessAt the incident scene, who handles media inquiries?
Public Information Officer.
Public Information Officer.
See lessIn a Unified Command, members representing multiple jurisdictions and agencies work together to establish:
Incident Objectives.
Incident Objectives.
See lessTo ensure efficient, clear, communication, the National Incident Management System Characteristics recommend the use of:
Common terminology.
Common terminology.
See lessIncident objectives that drive incident operations are established by the:
Incident Commander or Unified Command.
Incident Commander or Unified Command.
See lessWhich ICS functional area tracks resources, collects and analyzes information, and maintains documentation?
Planning.
Planning.
See lessWhich NIMS Management Characteristic is necessary for achieving situational awareness and facilitating information sharing?
Integrated Communications.
Integrated Communications.
See lessQualification, Certification, and Credentialing Personnel are part of which NIMS Management Characteristic?
Comprehensive Resource Management.
Comprehensive Resource Management.
See lessManageable Span of Control refers to:
The number of individuals or resources that one supervisor can effectively manage during an incident.
The number of individuals or resources that one supervisor can effectively manage during an incident.
See lessWho has overall responsibility for managing the on-scene incident?
Incident Commander.
Incident Commander.
See lessHow many NIMS Management Characteristics are there?
14.
14.
See lessWhich NIMS Management Characteristic may include gathering, analyzing, and assessing weather service data from technical specialists?
Information and Intelligence Management.
Information and Intelligence Management.
See lessTo avoid overburdening the incident command, resources should not self-dispatch (spontaneously deploy).
TRUE.
TRUE.
See lessThe Incident Command System (ICS) can be used to manage any type of incident, including planned events.
TRUE.
TRUE.
See lessWhich ICS function is responsible for documentation for mutual aid agreements?
Finance/Administration.
Finance/Administration.
See lessWho designates the Incident Commander and the process for transferring command?
The jurisdiction or organization with primary responsibility for the incident.
The jurisdiction or organization with primary responsibility for the incident.
See lessThe Whole Community approach refers to different organizations within the Federal Government.
FALSE.
FALSE.
See lessEstablishment of the ICS modular organization is the responsibility of the:
Incident Commander
Incident Commander
See lessThe Liaison Officer:
Is the point of contact for other response organizations.
Is the point of contact for other response organizations.
See lessWhich General Staff member negotiates and monitors contracts, maintains documentation for reimbursement, and oversees timekeeping for incident personnel?
Finance/Administration Section Chief.
Finance/Administration Section Chief.
See lessWhich of the following are typical incident facilities?
All of the Above
All of the Above
See lessWhich General Staff member directs all responses and tactical actions to achieve the incident objectives?
Operations Section Chief.
Operations Section Chief.
See lessThe Incident Command System (ICS) is only applicable to large, complex incidents.
FALSE
FALSE
See lessDepending on the incident size and complexity, various types of support facilities may be established by:
Incident command.
Incident command.
See lessWho designates the process for transferring command?
The jurisdiction or organization with primary responsibility for the incident designates the Incident Commander and the process for transferring command.
The jurisdiction or organization with primary responsibility for the incident designates the Incident Commander and the process for transferring command.
See lessWhich member of the Command and Staff interfaces with other agencies to meet incident-related information requirements?
Public Information Officer.
Public Information Officer.
See lessIf the Incident Commander designates personnel to provide public information, safety, and liaison services, the personnel are collectively referred to as the:
Command Staff.
Command Staff.
See lessThe number of subordinates that one supervisor can manage effectively during an incident is referred to as:
Manageable Span of Control.
Manageable Span of Control.
See lessWhich General Staff member prepares Incident Action Plans, manages information, and maintains situational awareness for the incident?
The Planning Section Chief. The Planning Section Chief oversees the collection, evaluation, and dissemination of operational information related to the incident. It is the Planning Section's responsibility to prepare and disseminate the Incident Action Plan and track the status of all incident resouRead more
The Planning Section Chief.
The Planning Section Chief oversees the collection, evaluation, and dissemination of operational information related to the incident. It is the Planning Section’s responsibility to prepare and disseminate the Incident Action Plan and track the status of all incident resources.
See less1.16.5 Double Tennis Balls CodeHS Answers
//Have 5 functions 1 start function start(){ move(); putTwoBalls(); moveBack(); } function putTwoBalls(){ while(ballsPresent()){ takeBall(); putTwoMoreBallsNextAve(); } moveBallsNextDoorBack(); } function putTwoMoreBallsNextAve(){ move(); putBall(); putBall(); moveBack(); } function moveBallsNextDooRead more
1.16.4 Super Cleanup Karel CodeHS Answers
function start() { cleanRows(); } function cleanRows() { while(frontIsClear()) { if(ballsPresent()) { takeBall(); } move(); //Proceed } if(facingEast()) { turn1(); } if(facingWest()) { turn2(); } } function turn1() { turnLeft(); if(ballsPresent()) { takeBall(); } if(frontIsClear()) { move(); if(ballRead more
1.16.3 Tower Builder CodeHS Answers
function start() { buildTower(); buildTower2(); // Write your code here } function buildTower() { move(); turnLeft(); putBall(); move(); putBall(); move(); putBall(); turnLeft(); turnLeft(); move(); move(); turnLeft(); } function buildTower2() { move(); move(); turnLeft(); putBall(); move(); putBallRead more
1.16.2 Racing Karel CodeHS Answers
function start() //Thanks, Captain Obvious { for(var i = 0; i < 8; i++) { runLap(); } } function run() //Running in a single line { while(frontIsClear()) { move(); } putBall(); turnLeft(); } function runLap() //Running a lap { run(); run(); run(); run(); }
1.16.1 Fetch CodeHS Answers
function start() { goUp(); goDown(); } function goUp() //Going up { move(); turnLeft(); move(); move(); move(); move(); turnRight(); move(); takeBall(); } function goDown() //Going down { turnLeft(); turnLeft(); move(); move(); turnLeft(); move(); move(); move(); move(); turnLeft(); putBall(); }
1.15.5 Staircase CodeHS Answers
/* This program creates a staircase from the first spot all the way across the world for any sized world. * This program works, but its indentation is completely wrong. Run the program first, so you know what it does and don’t break it. */ function start(){ putBall(); while(frontIsClear()){ turnLeftRead more
1.15.4 Diagonal CodeHS Answers
/* This program has karel lay a diagonal row of tennis balls. However, the indenting is all wrong. Can you properly indent this program? */ function start(){ while(frontIsClear()){ putBall(); move(); turnLeft(); move(); for(var i = 0; i < 3; i++){ turnLeft(); } } putBall(); }
1.13.4 Random Hurdles CodeHS Answers
function start() { for(var i = 0; i < 13; i++) { if(frontIsClear()) { move(); } else { jumpHurdle(); } } } function jumpHurdle() { turnLeft(); move(); turnRight(); move(); turnRight(); move(); turnLeft(); }
1.12.6 Big Tower CodeHS Answers
/* This program draws a big tower from Karel’s starting spot */ function start() { faceNorth(); placeBalls(); } function placeBalls() { while(noBallsPresent()) { putBall(); if(frontIsClear()) { move(); } } } function faceNorth() { while(notFacingNorth()) { turnLeft(); } }
1.12.5 Lay Row of Tennis Balls CodeHS
function start() { while(noBallsPresent()) { putBall(); if(frontIsClear()) { move(); } } }