What is a SAFETY CHECK

Answers

Answer 1
Answer:

Answer:

Safety check is defined as rounding to make sure that the patients and the milieu (patients living quarters) is secured and free of harmful items that can be used to hurt someone.


Related Questions

Compute the electrical resistivity of a cylindrical silicon specimen 7.0 mm (0.28 in.) diameter and 57 mm (2.25 in.) in length in which a current of 0.25 A passes in an axial direction. A voltage of 24 V is measured across two probes that are separated by 45 mm (1.75 in.).
In an adiabatic process, the temperature of the system remains constant. a)- True b)- False
Consider a mixture of hydrocarbons that consists of 60 percent (by volume) methane, 30 percent ethane, and 10 percent propane. After passing through a separator, the mole fraction of the propane is reduced to 1 percent. the mixture pressure before and after the separation is 100 kPa. Determine the change in the partial pressures of all the constituents in the mixture.
Write a program to accept a one-line string (maximum of 100 characters) from the keyboard. Edit the string entered in Part 1a (with code that you write) to remove all the white space,digits, punctuation, and other special characters, leaving only the letters. Print out the resulting compressed string to the screen.
Assignment 1: Structural Design of Rectangular Reinforced Concrete Beams for Bending Perform structural design of a rectangular reinforced concrete beam for bending. The beam is simply supported and has a span L=20 feet. In addition to its own weight the beam should support a superimposed dead load of 0.50 k/ft and a live load of 0.65 k/ft. Use a beam width of 12 inches. The depth of the beam should satisfy the ACI stipulations for minimum depth and be proportioned for economy. Concrete compressive strength f’c = 4,000 psi and yield stress of reinforcing bars fy = 60,000 psi. Size of stirrups should be chosen based on the size of the reinforcing bars. The beam is neither exposed to weather nor in contact with the ground, meaning it is subjected to interior exposure.• Use the reference on "Practical Considerations for Rectangular Reinforced Concrete Beams" • Include references to ACI code – see slides from second class • Include references to Tables from Appendix A • Draw a sketch of the reinforced concrete beam showing all dimensions, number and size of rebars, including stirrups.

One kind of SS-3xX steel alloy has a melting point of 1450°c. Its specific heat = 0.46 J/g°C, and its heat of fusion 270 J/g. For a 200 kg block of this steel, determine how much heat is required to (a) raise its temperature from 25°C to its melting point and (b) transform it from solid to liquid phase.

Answers

Answer:

a)Q=131.1 MJ

b)Q=54 MJ

Explanation:

Given that

Mass ,m=200 kg

Specific heat Cp=0.46 J/g°C

Cp=0.46 KJ/kg°C

Heat of fusion = 270 J/g

Heat of fusion = 270 KJ/kg

Melting point temperature = 1450°C

a)

Initial temperature = 25°C

Final temperature=1450°C

Heat required to rise temperature from 25°C to 1450°C.

Q= m CpΔT

Q=200 x 0.46 x (1450-25) KJ

Q=131,100 KJ

Q=131.1 MJ

b)

Heat required to transform from solid phase to liquid phase

Q= Mass x heat of fusion

Q=200 x 27 KJ

Q=54,000 KJ

Q=54 MJ

The following program includes fictional sets of the top 10 male and female baby names for the current year. Write a program that creates: A set all_names that contains all of the top 10 male and all of the top 10 female names. A set neutral_names that contains only names found in both male_names and female_names. A set specific_names that contains only gender specific names. Sample output for all_names: {'Michael', 'Henry', 'Jayden', 'Bailey', 'Lucas', 'Chuck', 'Aiden', 'Khloe', 'Elizabeth', 'Maria', 'Veronica', 'Meghan', 'John', 'Samuel', 'Britney', 'Charlie', 'Kim'}

Answers

The program analyses a set of male and female names and displays, the combined set of names, specific names and neutral names. The program written in python 3 goes thus :

male_names = {'John', 'Bailey', 'Charlie', 'Chuck', 'Michael', 'Samuel', 'Jayden', 'Aiden', 'Henry', 'Lucas'}

#setofmalenames

female_names = {'Elizabeth', 'Meghan', 'Kim', 'khloe','Bailey', 'Jayden' , 'Aiden', 'Britney', 'Veronica', 'Maria'}

#setoffemalenames

neutral_names = male_names.intersection(female_names)

#names common to both males and females

all_names = male_names.union(female_names)

#set of all baby names ; both male and female

specific_names = male_names.symmetric_difference(female_names)

#name in one set and not in the other

print(all_names)

print(' ')

#leavesaspaceinbetweenthelines

print(specific_names)

print(' ')

print(neutral_names)

Asamplerunoftheprogramisattached.

Learn more :brainly.com/question/9908895

Answer:

Please see attachment

Explanation:

Please see attachment

Q/For the circuit showm bellow:a) find the mathematical expression for the transient behavior of ve and ic after closing the switeh,
b) sketch vc and ic.

Answers

Answer:

hello your question is incomplete attached is the complete question

A) Vc =  15 ( 1 -e^(-t/0.15s) ) ,   ic = 1.5 mAe^(-t/0.15s)

B) attached is the relevant sketch

Explanation:

applying Thevenin's theorem to find the mathematical expression for the transient behavior of Vc and ic after closing the switch

R_(th) = 8 k ohms || 24 k ohms = 6 k ohms

E_(th) = (20 k ohms(20 v))/(24 k ohms + 8 k ohms)  =  15 v

t = RC = (10 k ohms( 15 uF) = 0.15 s

Also; Vc = E( 1 - e^(-t/t) )

hence Vc = 15 ( 1 - e^(-t/0.15) )

ic = (E)/(R) e^(-t/t) = (15)/(10) e^(-t/t) = 1.5 mAe^(-t/0.15s)

attached

Write a Lottery class that simulates a lottery. The class should have an array of five integers named lotteryNumbers. The constructor should use the Random class (from the Java API) to generate a random number in the range of 0 through 9 for each element in the array. The class should also have a method that accepts an array of five integers that represent a person’s lottery picks. The method is to compare the corresponding elements in the two arrays and return the number of digits that match. For example, the following shows the lotteryNumbers array and the user’s array with sample numbers stored in each. There are two matching digits (elements 2 and 4).

Answers

Answer:

Output:-

Enter the five digit lottery number

Enter the digit 1 : 23

Enter the digit 2 : 44

Enter the digit 3 : 43

Enter the digit 4 : 66

Enter the digit 5 : 33

YOU LOSS!!

Computer Generated Lottery Number :

|12|38|47|48|49|

Lottery Number Of user:

|23|33|43|44|66|

Number Of digit matched: 0

Code:-

import java.util.Arrays;

import java.util.Random;

import java.util.Scanner;

public class Lottery {

int[] lotteryNumbers = new int[5];

public int[] getLotteryNumbers() {

return lotteryNumbers;

}

Lottery() {

Random randomVal = new Random();

for (int i = 0; i < lotteryNumbers.length; i++) {

lotteryNumbers[i] = randomVal.nextInt((50 - 1) + 1);

}

}

int compare(int[] personLottery) {

int count = 0;

Arrays.sort(lotteryNumbers);

Arrays.sort(personLottery);

for (int i = 0; i < lotteryNumbers.length; i++) {

if (lotteryNumbers[i] == personLottery[i]) {

count++;

}

}

return count;

}

public static void main(String[] args) {

int[] personLotteryNum = new int[5];

int matchNum;

Lottery lnum = new Lottery();

Scanner input = new Scanner(System.in);

System.out.println("Enten the five digit lottery number");

for (int i = 0; i < personLotteryNum.length; i++) {

System.out.println("Enter the digit " + (i + 1) + " :");

personLotteryNum[i] = input.nextInt();

}

matchNum = lnum.compare(personLotteryNum);

if (matchNum == 5)

System.out.println("YOU WIN!!");

else

System.out.println("YOU LOSS!!");

System.out.println("Computer Generated Lottery Number :");

System.out.print("|");

for (int i = 0; i < lnum.getLotteryNumbers().length; i++) {

System.out.print(lnum.getLotteryNumbers()[i] + "|");

}

System.out.println("\n\nLottery Number Of user:");

System.out.print("|");

for (int i = 0; i < personLotteryNum.length; i++) {

System.out.print(personLotteryNum[i] + "|");

}

System.out.println();

System.out.println("Number Of digit matched: " + matchNum);

}

}

Explanation:

In response to the market revolution:the legal system worked with local governments to find better ways to regulate entrepreneurs.Chief Justice John Marshall ruled that legislatures could not alter or rescind charters and contracts that previous legislatures had created.local judges protected businessmen from paying property damages associated with factory construction and from workers seeking to unionize.Massachusetts Chief Justice Lemuel Shaw held in Commonwealth v. Hunt that workers had no right to organize.corporations proved less able to raise capital than chartered companies did.

Answers

Answer:

Local judges protected businessmen from paying property damages associated with factory construction and from workers seeking to unionize.

Explanation:

The Market Revolution is the name given to change in the economy that occurred in the 19th century. This drastic change led to various important changes in the United States and across the world. During this period, capitalism became more entrenched and society became, for the first time, predominantly capitalist. This gave businessmen great power, as they played an increasingly important role when it came to economic growth. The power that they had influenced society deeply, including legislation. Judges often protected businessmen from paying property damages that were associated with their business enterprises. Moreover, workers had few rights and protections, and judges prevented them from unionizing.

Technician A says that the unitized structure of a hybrid vehicle is considerably different when compared to the same conventional model.Technician B says that hybrid vehicles have 12-volt and high voltage batteries.

Who is right?

Answers

Technician A says that the unitized structure of a hybrid vehicle is considerably different when compared to the same conventional model is right.

What are hybrid vehicle?

Hybrid vehicle are defined as a powered by a combustion engine and/or a number of electric motors that draw power from batteries. A gas-powered car simply has a traditional gas engine, but a hybrid car also features an electric motor.

One important advantage of hybrid cars is their capacity to reduce the size of the main engine, which improves fuel efficiency. Many hybrid vehicles employ electric motors to accelerate slowly at first until they reach higher speeds. They then use gasoline-powered engines to increase fuel efficiency.

Thus, technician A says that the unitized structure of a hybrid vehicle is considerably different when compared to the same conventional model is right.

To learn more about hybrid vehicle, refer to the link below:

brainly.com/question/14610495

#SPJ5

A train was right get it