Complete Journaling Activity 7-1 on page 222. Answer all 5 questions using the assessment tools found in the chapter and document your findings to be handed in to the instructor at the end of the community class. PLEASE FOLLOWER THE DIRECTION I AM GIVING TO COMPLETE THIS QUESTION. THIS THE BOOK INFORMATION WHERE THE ANSWER IS LOCATION, Community Based Nursing 5th ED,Author: Roberta Hunt, ISBN: 978-1609136864, Publisher: Lippincott Williams & wikins (2013)
In: Nursing
Regarding elements of good presentation of data.
Look for an example of the following:
1. A graphical display that meets the criteria of good presentation
of data.
-Explain why it meets the criteria.
-Fully explain what is being communicated in the graph.
2. A graphical display that does not meet the criteria of good presentation of data.
- Explain why it does not meet the criteria.
- Fully explain what the author of the graph should have done differently to better communicate the information.
In: Statistics and Probability
The observer-participant relationship is an important consideration in the design of observation studies. What kind of relationship would you recommend in each of the following cases? Observations of professional conduct in the classroom by the student author of a course evaluation guide. Observation of retail shoppers by a researcher who is interested in determining customer purchase time by type of goods purchased. Observation of a focus group interview by a client. Effectiveness of individual farmworker organizers in their efforts to organize employees of grape growers.
In: Economics
Find an example of a regression or best fitting line from a popular press news source(e.g., The Economist, Wall Street Journal, NY Times, etc.). Explain the two variables(X, the independent variable, andY, the dependent variable) that are being measured.What is the relationship the author/researcher is trying to explain with the best fittingline? Do you think there are any other variables that might explain more of the variationinY? Make sure to cite the article you select.
In: Statistics and Probability
Many physics papers now have dozens of authors per paper. Experimental physics may have multi-organizational and multi-country contributing staffs, but I'd guess that most of the names don't contribute a word or equation to a paper, yet they get individual authorship credit. My question is who determines the author list, does everybody listed have editing privilages, and perhaps most importantly, who decides on their listed order?
In: Physics
INSTRUCTION: Please review the information below and answer the main question. Also, note that the response to the main question was obtain from chegg.com. Expand on the responses below and be specific and used examples: The answers to the question are below but need to be expanded
Question:
What are three key messages in The Goal: A Process of Ongoing Improvement by Eliyahu M. Goldratt (Author), Jeff Cox (Author)? How do they apply to healthcare - be specific and use examples?
Q1) Below are the three key messages in the Goal -
1. Everything is done to achieve a single, underlying goal.
2. Measurements determine whether we are going in the right direction of the goal or not. They determine the accuracy and precision of the result by comparing it with goal objective.
3. Everything that brings us closer to the goal is productive and everything else is not productive.
Q2) Below is how the key messages can be applied to healthcare -
1. The single, underlying goal in healthcare is to improve the health condition of the patient.
2. The measurements that need to be considered to compare the actual results with goal objectives include quality of healthcare, accessibility, affordability, other operational metrics etc.
3. Providing quality care to patients helps in improving health condition of patients and lack of quality will result in moving away from improving health condition.
In: Operations Management
Use following case and create Entity-Relationship Diagrams using the Crow’s Feet method for each. Each ERD should be completed on a separate sheet of paper, if drawn by hand. If additional assumptions are made for any of your 2cases, be sure to document the additional business rules and include them with your ERDs.
Entity-Relationship Diagram : TEXTBOOK REVIEWS Your website would like to add the ability for school BIT students to provide reviews for textbooks they have previously used. Using the following business rules, create an ERD:
Students must enter the ISBN for the book, along with its title, author, publisher, and copyright date.
Users will be asked to select what course the book was used for from a predefined list of courses offered in the BIT division.
Each course will be assigned to a program such as Web Development, Software Development, Computer Support, Photography, etc.
Each book can have more than one author.
Each book can only have one publisher.
Each book could have been used in multiple courses.
Many reviews could be written for a book, but each review can only be about one book.
Reviews may be written anonymously or by a logged in user.
In: Computer Science
It shows me that 1 error exists in this code but I didn't know how to fix this error so if you can help I will appreciate it.
Language C++.
Code:
#include <iostream>
#include <string>
#include <iterator>
#include <fstream>
#include <sstream>
#include <cstdlib>
#include <set>
using namespace std;
class Book
{
private:
string BookId;
string BookISBN;
string Publisher;
int PublisherYear;
double Price;
int Quantity;
string Author;
public:
string SetBookId();
string SetBookISBN();
string SetPublisher();
int SetPublisherYear();
double SetPrice();
int SetQuantity();
string SetAuthor();
string GetBookId();
string GetBookISBN();
string GetPublisher();
int GetPublisherYear();
double GetPrice();
int GetQuantity();
string GetAuthor();
void PrintInfo();
void DecrementQ();
bool isTitle(string Title);
};
string Book::GetBookId()
{
return BookId;
}
string Book::GetBookISBN()
{
return BookISBN;
}
string Book::GetPublisher()
{
return Publisher;
}
int Book::GetPublisherYear()
{
return PublisherYear;
}
double Book::GetPrice()
{
return Price;
}
int Book::GetQuantity()
{
return Quantity;
}
string Book::GetAuthor()
{
return Author;
}
string Book::SetBookId()
{
BookId=BookId;
}
string Book::SetBookISBN()
{
BookISBN=BookISBN;
}
string Book::SetPublisher()
{
Publisher=Publisher;
}
int Book::SetPublisherYear()
{
PublisherYear=PublisherYear;
}
double Book::SetPrice()
{
Price=Price;
}
int Book::SetQuantity()
{
Quantity=Quantity;
}
string Book::SetAuthor()
{
Author=Author;
}
void Book::PrintInfo()
{
cout << BookId << ":" << BookISBN << ":" << Publisher << ":" << PublisherYear << ":" << Price << ":" << Quantity << ":" << Author << endl;
}
void Book::DecrementQ()
{
if (Quantity <= 0)
{
cout << "Can't decrement since the quantity is lessthan or equal to zero" << endl;
}
else
{
Quantity= Quantity-1;
}
}
bool Book::isTitle(string Title)
{
return (BookId == Title);
}
int readDataFromFile(Book Blist[], string InFile)
{
ifstream ReadMyFile("Book.dat");
if (!ReadMyFile.is_open())
{
cout << "Error; Can't open file" << endl;
exit(1);
}
int size;
int i = -1;
string Text;
string BookId;
string BookISBN;
string Publisher;
int PublisherYear;
double Price;
int Quantity;
string Author;
getline(ReadMyFile, Text);
while (getline(ReadMyFile, Text))
{
i += 1;
Blist[i].SetBookId();
Blist[i].SetBookISBN();
Blist[i].SetPublisher();
Blist[i].SetPublisherYear();
Blist[i].SetPrice();
Blist[i].SetQuantity();
Blist[i].SetAuthor();
}
ReadMyFile.close();
size = i + 1;
return size;
}
void Printlist(Book Blist[], int size)
{
for (int i = 0; i < size; i++)
{
Blist[i].PrintInfo();
}
}
void CheckBook(Book Blist[], int size)
{
cout << "Please enter the title of the book" << endl;
string title;
cin >> title;
bool BookAvailablity = false;
for (int i = 0; i < size; i++)
{
if (Blist[i].isTitle(title) == true)
{
BookAvailablity = true;
break;
}
}
if (BookAvailablity)
{
cout << "The book that your looking for is available" << endl;
}
else
{
cout << "The book that your looking for is not available" << endl;
}
}
void UpdateNumber(Book Blist[], int size)
{
int num;
cout << "Enter a number to increment the book list" << endl;
cin >> num;
for (int i = 0; i < size; i++)
{
Blist[i].SetQuantity(GetQuantity() + num);
}
cout << "The book list is updated her is the new value in the book list" << endl;
Printlist(Blist, size);
}
int main()
{
Book Blist[10];
int size = readDataFromFile(Blist, "infile");
int c = 0;
do
{
cout << "Please enter a number from the following list" << endl;
cout << "1 - To print the list of books available in the AUD library" << endl;
cout << "2 - To check whether the book that your looking for is available in AUD library" << endl;
cout << "3 - To get the updated number of copies of the book that your looking for" << endl;
cout << "4 - To Exit the program" << endl;
cin >> c;
switch (c)
{
case 1:
Printlist(Blist, size);
break;
case 2:
CheckBook(Blist, size);
break;
case 3:
UpdateNumber(Blist, size);
break;
case 4:
cout << "Exiting Program. Thank You" << endl;
break;
default:
cout << "Error; Invalid Choice" << endl;
}
} while (c != 4);
return 0;
}
In: Computer Science
Chimney Swifts TEAS VI Passage
Chimney Swifts
Chimney swift are small, slender birds that have become a symbol of summer for many. they usually appear urine warm, summer months as they make their way to more tropical sites for the winter. They are recognized spectacular, chirping flocks moving through the sky in synchrony. chimney swift can be seen most vividly at the colonies of hundreds. Or even thousands, of individuals from tornado like funnels as they descend into the chimney. Unfortunately, the size of the colonies we see is misleading. Though the numbers may seem remarkable, chimney population have been declining sharply since the 1970s due primarily to habitat loss.
Unlikely most birds, chimney swift cannot perch or stand upright, so they require long, hollow spaces that are provide save roosting and nesting sites . Historically, chimney swift preferred hollow trees. However, Espeon pioneers territory and replaced forest with towns, the species was forced to adapt by using other structures, such as US, the large-scale shift two alternate heat sources, chimney capping, and the use of fabricated chimneys has drasting their ability to nest during migration. Newer, prefabricated chimneys are often aligned with metal flues that make it possible for the addition, logging and deforestation may make finding suitable overwintering habitat more challenging than ever.
In an effort of sustain the remaining population, conservation groups have designed supplemental housing structure “ Chimney Towers,” this towers are designed specially to provide a roosting sites 4 Chimney Swifts. Chimney swift almost entirely on man-made structure like these to survive. However, because this species is remarkable adaptive minimal conservation efforts like keeping traditional masonry chimneys uncapped during the summer months can improve their changes to survival.
1. Which of the following best summarizes the passage?
the number of Chimney Swifts in the world has been slowly decreasing since 1970s
prefabricated chimneys are the one thing that the threatens the future of the chimneys swifts
the diminishing number of Chimney swifts can be reversed by simple conservation efforts
chimney swift rely entirely on masonry chimneys to survive their yearly migration
2. Which of the following conclusion can the reader make from the passage?
chimney swifts are nocturnal Birds whose large number are evident in the size of their colonies
metal flues are inserted in masonry chimneys to prevent birds, such as Chimney Swifts, from nesting in them
moving in a large chirping blocks is a natural protection against predators
chimney swift can easily adapt roosting behaviors to any structure made of the proper material
3. Which of the following lists support the main idea of the passage?
logging and deforestation, changes in the way we heat our buildings, and chimney capping have robbed the chimney roasting sites
chimney swift appear in North America in summer, migrate to the tropics in winter, and give birth in the spring
the small, slender bird known as the chimney swift migrates in large numbers, Can be seen only at dusk, and raised its babies
metal line chimneys, chimney Towers, and reforestation efforts will ultimately result in the growth of the chimney Swifts
4. Based on this passage, which of the following statement is true?
that author relies on first-hand observation of chimney swift Behavior
the author has an extensive background in bird studies
the author use an informal style that appeals to reader
the author provides fact to support the main idea
5. The first paragraph in the passage on Chimney Swifts include this description: “ large colonies of hundreds or even thousands from tornado-like funnels” why does the author include this passage?
It is stablish the passage as work of fiction
it provides the reader with an engagement image
it offers supporting evidence from the claim
it proves the author is an expert in bird studies
6. Which of the following can be interfered from the passage?
logging industry production dramatically increase around 1970s
changing Home Design & Home Heating occurs in 1970s
the chimney swift adaptability was severely hindered around 1970s
the way we track ChimneySwift population change in the 1970s
In: Nursing
In: Finance