100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached 4.2 TrustPilot
logo-home
Exam (elaborations)

EMT Final Exam Questions with Correct Answers Latest Update

Rating
-
Sold
-
Pages
19
Grade
A+
Uploaded on
12-09-2023
Written in
2023/2024

833 - Your 36 y/o pt is unresponsive upon attempting to insert an OPA, the patient gags, You should A. Insert a nasal airway B. Suction the oropharynx C. Reattempt using a smaller oral adjunct D. Insert a dual lumen airway>>> A. Insert a nasal airway 903 - After air passes through the vocal cords during inhalation, which structure does it reach next? A. Trachea B. Epiglottis C. Alveolus D. Bronchus>>> A. Trachea 906 - You are ventilating an apneic asthmatic pt with a BVM. The patient has inadequate chest rise. You should A. Decrease the rate of ventilations to 10/min B. Use an O2 powered ventilation device C. Increase the forcefulness of ventilations D. Increase the rate of ventilations to 20/min>>> A. Decrease the rate of ventilations to 10/min 909 - A 72 y/o female pt is unresponsive following an ejection from a MVC, she has an open jaw fracture and a dialated right pupil. What is the best way to open this pt's airway A. Insert an OPA B. Perform a modified head tilt chin lift C. Insert a NPA D. Perform jaw thrust>>> C. Insert a NPA 910 - A 4-Year-old female tracheostomy pt has pulled out her tracheostomy tube. The opening is partially obstructed with skin. You should A. Use a soft tip catheter and suction until clear B. Insert a nasal airway into stoma C. Wipe the area clean and perform mouth to stoma ventilation D. Cut the skin away from the stoma>>> A. Use a soft tip catheter and suction until clear 908 - You are using a BVM and an OPA on an apneic pt. Suddenly it becomes difficult to ventilate. You should first suspect that A. The patients diaphragm has contracted B. The pt has an airway obstruction C. The Pt is becoming more responsive D. The pt's lungs have collapsed>>> B. The pt has an airway obstruction 946 - A 60-year-old pt with stoma is apneic. You have been suctioning pink frothy sputum for 10 seconds and you continue to get more material. You should A. continue suctioning and have a partner ventilate through the pt's mouth B. suction until airway is clear C. stop suctioning and give a breath D. use a saline solution to moisten secretions and continue suctioning>>> C. stop suctioning and give a breath 947 - victim of smoke inhalation has developed difficulty breathing. He does not like the smell of the mask you are using to deliver O2. You should A. Switch to a NC set to deliver O2 @ 6 LPM B. Restrain the pt and continue administering O2 via NRB C. Explain that the mask is very important and continue its use D. Administer blow-by O2 via Simple mask>>> C. Explain that the mask is very important and continue its use 948 - An unresponsive 82 y/o pt is lying supine. Their airway is most likely to be obstructed by A. loose dentures B. Secretions

Show more Read less










Whoops! We can’t load your doc right now. Try again or contact support.

Document information

Uploaded on
September 12, 2023
Number of pages
19
Written in
2023/2024
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

Content preview

A-Level AQA Computer Science Paper
2

Baud Rate>>> The maximum possible number of signal changes that can occur in a wire per second.

Bit Rate>>> The number of bits that can be sent down a wire per second.

Integer>>> A whole number that can be positive, negative or zero.



Examples: -3, 0, 7, 2013588.

Natural (Number)>>> A whole number that is either positive or zero.




Examples: 0, 1, 2, 100, 67238.

Rational (Number)>>> Any number that can be represented as the fraction 'a/b' where 'a' and 'b' are
both integers.



Examples: -0.2, 4/5, 1, 1/3.

Irrational (Number)>>> Any number that cannot be represented as a fraction.



Examples: square root of 2, PI.

Real (Number)>>> Any number that can either be rational or irrational.

Boolean>>> A value that is either true or false.

String>>> A series of characters.

Array>>> A variable that can store multiple values of the same data type.



Example: Storing the high-scores of a game as integers.

,Record>>> A variable that can store multiple values that can have different data types.



Example: Storing data about a book; a string for the title, an integer for the number of pages, etc.

Variable>>> A metaphor for it is that is a box that can store a specific type of item (the data type) and
has a name assigned to it (the identifier). Its value can be changed during run-time of the program.

Constant>>> A metaphor for it is that is a box that can store a specific type of item (the data type) and
has a name assigned to it (the identifier). Its value cannot be changed during run-time of the program.

Subroutine>>> This can be broken down into procedures and functions.

Procedure>>> A block of code that performs a specific task that does not return a value. Parameters can
be passed into it.

Function>>> A block of code that performs a specific task that returns a value. Parameters can be passed
into it.

Selection>>> This is when an if statement or select case is used to, for example, check the value of a
variable.

Iteration>>> This is when, within the program, there is a loop.

Definite Iteration>>> The number of times that the program will loop is already specified.



Example: For loop.

Indefinite Iteration>>> The number of times the program will loop is unknown.



Example: Do loop.

Nested (structures)>>> This is when either iterative or selective statements are put inside of each other.

Meaningful Identifiers>>> Subroutines, variables and objects should have sensible names.

Real Division>>> Finds the value (usually as a decimal) of one number divided by another.

Integer Division>>> Finds the integer part of one number divided by another.

Integer Remainder>>> Finds the remainder of one number divided by another.

Truncation>>> Chops the decimal part off a number.

, Floor>>> Rounds a number down to the nearest integer.

Ceiling>>> Rounds a number up to the nearest integer.

AND>>> Logical Operation:

Returns true only when both values are true.

OR>>> Logical Operation:

Returns true as long as at least one of the values are true.

XOR>>> Logical Operation:

Returns true only when exactly one of the two values is true and not both.

NOT>>> Logical Operation:

Returns true if the value is false and returns false if the value is true.

Exception Handling>>> When a try catch is used in the program to deal with any errors that may occur.

ByVal>>> When a variable is passed into a subroutine as a copy so its value will not be changed.

ByRef>>> When a variable is passed into a subroutine as a reference so its value can be changed.

Local (Variable)>>> A variable that is defined, for example, within a subroutine and cannot be viewed or
modified from outside of the block of code is was declared in.

Global (Variable)>>> A variable that is declared, usually at the start of the program, and can be accessed
and modified from anywhere at all in the program.

Recursion>>> A subroutine's definition contains a self-call meaning a function or procedure calls itself as
a way of performing iteration.

Object-Oriented (Programming)>>> A type of programming paradigm when multiple objects are created
and handled to run the program.



Example: In a game you might have an object for the player and then multiple objects for the enemies.

Procedural (Programming)>>> A type of programming paradigm when you break down a project, usually
using a decomposition diagram, into individual tasks which can each be performed by a procedure.

Functional (Programming)>>> A type of programming paradigm that is mainly used for calculations. No
variables are declared, only functions are used with parameters and return statements.

(Object) Instantiation>>> When an object is first created using the 'new' keyword.
£8.49
Get access to the full document:

100% satisfaction guarantee
Immediately available after payment
Both online and in PDF
No strings attached

Get to know the seller
Seller avatar
johnlynn297

Get to know the seller

Seller avatar
johnlynn297 Glyndwr University (London)
View profile
Follow You need to be logged in order to follow users or courses
Sold
1
Member since
2 year
Number of followers
1
Documents
221
Last sold
1 year ago
great learners

This is where great learners get there revision materials

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their exams and reviewed by others who've used these revision notes.

Didn't get what you expected? Choose another document

No problem! You can straightaway pick a different document that better suits what you're after.

Pay as you like, start learning straight away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and smashed it. It really can be that simple.”

Alisha Student

Frequently asked questions