Question 1. Compare / Contrast the anginas by creating a chart and then complete a list of 5 clinical manifestations associated with stable angina, unstable angina, and MI
Question 2. Create a patient teaching handout that incorporates a list of modifiable and nonmodifiable risk factors for coronary artery disease (CAD). Have students include pertinent teaching information about how patients could modify behaviors to address modifiable risk factors.
Question 3.Discuss at least 5 ways to help educate community members about the prevention of shock or sepsis, recognizing hypovolemic shock, and pre-hospital actions to take.
In: Nursing
This is in HTML and JavaScript
So I have 2 radio buttons One called students and one called teacher. If the user selects the student then a list of check boxes these should appear. These should not be visable if the user selects the teacher radio button.
- buy text books
- visit teachers website
- attend class
If the user selects the teacher radio button then all the text boxes above should be hidden From the user. Then these check boxes should be appear.
- payment
- class time
- class list.
But if the user selects the student radio button then the check boxes above should not be visable.
In: Computer Science
A juice shop in Santa Barbara serves two types of consumers: tourists and locals. Tourists’ inverse demand per day is P(q) = (50−q)/5 . Locals’ inverse demand per day is P(q) = (500−q)/ 50 . In order to sell a total of 55 juice bottles per day, what price should the shop charge per bottle? (a) $12 (b) $10 (c) $9 (d) $8 3.
(continued from previous question) Assume that the number of tourists coming to Santa Barbara double. (This means that demand from tourists at every price level doubles.) But, at the same time, due to an economic recession, the local demand becomes more price sensitive. P(q) = (500−q)/ 100 .
Which statement is correct?
(a) To maximize revenue, it is optimal to price high enough to only target tourists.
(b) At the revenue maximizing price, there is higher revenue generated from the local population relative to tourists.
(c) The revenue maximizing price is $4 per bottle.
(d) If the tourists stop coming (demand decreases to 0), to maximize revenue the shop owner would increase the price.
A is correct but why?
In: Economics
A professional school counselor wants to set up a group for high school students. List and explain at least 5 logistical issues the counselor needs to consider before the group can start. In addition, which ASCA Ethical Standards would need to be considered? Would the issues and ethical standards be the same or different at the elementary level? Would the issues and ethical standards be the same at the junior high level?
In: Psychology
A group of researchers is interested in studying the factors that influence juvenile delinquency. They create a survey for high school students in a local after-school program. The survey includes questions about age (in years), favorite sports, number of siblings, high school grade point average and the marital status of parents.
List the variables in the survey and the level of measurement for each variable.
In: Statistics and Probability
SQL FORMAT (11-13 are completed and correct)
-- 11. what are the names of all students who have taken some
course? Don't show duplicates.
select distinct(name) from student where tot_cred > 0;
-- 12. what are the names of departments that offer 4-credit
courses? Don't list duplicates.
select distinct(dept_name) from course where credits=4;
-- 13. What are the names and IDs of all students who have
received an A in a computer science class?
select distinct(name), id from student natural join takes natural
join cours$
-- 14. How many B grades have been given to physics majors?
-- 15. What is the average total credits of students who have taken
CS-319?
-- 16. What is the average total credits of students who have taken
CS-101?
-- 17. What are the course IDs of courses taught by instructor
Katz?
-- 18. What are the course IDs of all courses offered by instructor
Crick's department?
-- 19. What is the course_id, semester, and year of sections of
computer science courses?
-- Don't show duplicates.
-- 20. What are the names of students who have taken a class taught
by instructor Srinivasan?
In: Computer Science
Could you write a c- program that reads a text file into a linked list of characters and then manipulate the linked list by making the following replacements
1. In paragraph 1 Replace all “c” with “s” if followed by the characters “e”, “i” or “y”; otherwise
2. In pragraph 2 Replace "We" with v"i"
This is the text to be manipulated:
Paragraph1
She told us to take the trash out.
Why did she do that?
I wish she would not do that
Paragraph 2
We came home very late despite the fact we had school the next day.
We had a lot of fun
I miss my friends.
In c programming language please
In: Computer Science
This exercise is a bit more complicated and will be a review of what we’ve learned about lists and dictionaries. The aim of this exercise is to make a gradebook for a group of students.
Follow these steps:
students = {
"lloyd": {
"name": "Lloyd",
"homework": [90.0,97.0,75.0,92.0],
"quizzes": [88.0,40.0,94.0],
"tests": [75.0,90.0]
},
"alice": {
"name": "Alice",
"homework": [100.0, 92.0, 98.0, 100.0],
"quizzes": [82.0, 83.0, 91.0],
"tests": [89.0, 97.0]
},
"tyler": {
"name": "Tyler",
"homework": [0.0, 87.0, 75.0, 22.0],
"quizzes": [0.0, 75.0, 78.0],
"tests": [100.0, 100.0]
}
}
A – 100% - 90%
B – 90% - 80%
C – 80% - 70%
D – 70% - 60%
F – 59% - below
Your program should work for any list of students, i.e. your solution should be general in that it takes in any dictionary in this format of any length, process the data, and return the results. You should test it with this input, as well as input you make up. I will also test it with both this input as well as another set of data that is formatted similarly.
In: Computer Science
Code Using Arrays in Java
There is a new ruling for the only elevator located at Block B. Students who need to ride the elevator, must line up in a queue. The rated load in pounds for the elevator is based on the inside net platform areas. The maximum load for the elevator is 500 pound.
Write a program to read the students weight (in pound) in the line and calculate the number of students that are allowed to enter the elevator before it makes a loud noise.
Input
The first line of input is T (1 ≤ T ≤ 100) which is the number of test case. This is followed by T lines of input. Each line starts with X (X ≤ 100) which is the number of students who want to ride the elevator. This is then followed by a list of X data which is the students’ weight in the line.
Output
For each test case, the output contains a line in the format "Case #x: y", where x is the case number (starting from 1) and y indicates the number of students in the line that are allowed to ride the elevator.
Sample Input
3 9 45 25 50 46 10 55 50 83 68 5 66 155 93 101 90 8 64 70 50 45 85 74 110 95
Sample Output
Case #1: 9 Case #2: 4 Case #3: 7
In: Computer Science
In: Biology