Annotated Bibliography:
An annotated
bibliography is a list of citations to books, articles, and other
resources. Each citation is followed by a brief descriptive and
evaluative paragraph: the annotation. The purpose of the annotation
is to inform the reader of the relevance, accuracy, and quality of
the sources cited. An annotated bibliography can also be referred
to as an extended APA style reference sheet. Annotations are at
minimum 150 words.
Annotated Bibliography Assignment Description:
Step 1: Perform research to retrieve scholarly journal articles and books as it relates to the topic of “Ethics in Healthcare”. You will create citations for these 4 resources in APA format.
Step 2: You will write 4 concise annotations that summarize each of your 4 references in Step 1. These annotations should include at 4 to 6 sentences that:
Summarize the main purpose of the reference as it relates to the provided topic
“Ethics in Healthcare”
2. Compare or contrast this work with another you have cited
3. Discuss how this work explains your selected topic
Citations with annotations (annotated bibliography) must be alphabetized by author’s last name.
**If no author is given, consider the first letter of the first word of your citation when alphabetizing.
In: Operations Management
WRITE IN C++
Add to the Coord class
Edit the provided code in C++
Write a member function named
int distance2origin()
that calculates the distance from the (x, y, z) point to the origin (0, 0, 0)
the ‘prototype’ in the class definition will be
int distance2origin()
outside the class definition
int Coord :: distance2origin()
{
// your code
}
_______________________________________________________________________________________________________
/**************************************************
*
* program name: Coord02
* Author:
* date due: 10/19/20
* remarks:
*
*
***************************************************/
/******************************************
* library includes
******************************************/
#include // needed for cin and cout
/******************************************
* pre-processor
******************************************/
#define PI 3.14159
using namespace std;
class Coord {
private:
int xCoord;
int yCoord;
int zCoord;
public:
Coord(int xCoord, int yCoord, int zCoord){
this->xCoord=xCoord;
this->yCoord=yCoord;
this->zCoord=zCoord;
}
inline void setXCoord(int xCoord){
this->xCoord=xCoord;
}
inline void setYCoord(int yCoord){
this->yCoord=yCoord;
}
inline void setZCood(int zCoord){
this->zCoord=zCoord;
}
inline int getXCoord(){
return this->xCoord;
}
inline int getYCoord(){
return this-> yCoord;
}
inline int getZCoord(){
return this->zCoord;
}
void display(){
cout<xCoord<yCoord<zCoord<
Please Explain Everything in detail. Thank you.
In: Computer Science
“Triangle Guessing” game in Python
The program accepts the lengths of three (3) sides of a triangle as input . The program output should indicate if the triangle is a right triangle, an acute triangle, or an obtuse triangle.
In: Computer Science
i need to find complexity and cost and runtime for each line of the following c++ code :
// A C++ program for Dijkstra's single source shortest path
algorithm.
// The program is for adjacency matrix representation of the
graph
#include <limits.h>
#include <stdio.h>
// Number of vertices in the graph
#define V 9
// A utility function to find the vertex with minimum distance
value, from
// the set of vertices not yet included in shortest path tree
int minDistance(int dist[], bool sptSet[])
{
// Initialize min value
int min = INT_MAX, min_index;
for (int v = 0; v < V; v++)
if (sptSet[v] == false &&
dist[v] <= min)
min = dist[v],
min_index = v;
return min_index;
}
// A utility function to print the constructed distance
array
void printSolution(int dist[])
{
printf("Vertex \t\t Distance from Source\n");
for (int i = 0; i < V; i++)
printf("%d \t\t %d\n", i,
dist[i]);
}
// Function that implements Dijkstra's single source shortest
path algorithm
// for a graph represented using adjacency matrix
representation
void dijkstra(int graph[V][V], int src)
{
int dist[V]; // The output array. dist[i] will hold
the shortest
// distance from src to i
bool sptSet[V]; // sptSet[i] will be true if vertex
i is included in shortest
// path tree or shortest distance from src to i is
finalized
// Initialize all distances as INFINITE and
stpSet[] as false
for (int i = 0; i < V; i++)
dist[i] = INT_MAX, sptSet[i] =
false;
// Distance of source vertex from itself is always
0
dist[src] = 0;
// Find shortest path for all vertices
for (int count = 0; count < V - 1; count++) {
// Pick the minimum distance vertex
from the set of vertices not
// yet processed. u is always equal
to src in the first iteration.
int u = minDistance(dist,
sptSet);
// Mark the picked vertex as
processed
sptSet[u] = true;
// Update dist value of the
adjacent vertices of the picked vertex.
for (int v = 0; v < V; v++)
// Update
dist[v] only if is not in sptSet, there is an edge from
// u to v, and
total weight of path from src to v through u is
// smaller than
current value of dist[v]
if (!sptSet[v]
&& graph[u][v] && dist[u] != INT_MAX
&& dist[u] + graph[u][v] <
dist[v])
dist[v] = dist[u] + graph[u][v];
}
// print the constructed distance array
printSolution(dist);
}
In: Computer Science
An ecologist observes an alarming number of frogs in agricultural areas that have extra limbs. She hypothesizes that the presence of Round-Up causes frogs to grow extra limbs (this is a real effect of Round-Up!).
She puts 25 tadpoles in an aquarium with pure water and labels these Group A.
She puts another 25 tadpoles in an aquarium with water and Round-Up and labels these Group B.
After all of the tadpoles develop into adult frogs, she counts the number of frogs in each group that have extra limbs.
1. Write a prediction for this hypothesis and experiment.
2. Identify the independent variable and dependent variable.
3. Identify the experimental group and the control group.
4. Name a variable she needs to control for in order to obtain reliable results.
In: Biology
66. You are deciding on a drug treatment for a patient with pancreatic cancer. You know that different drugs have different efficacies based on the nature of the specific type of tumor. You decide to identify the tumor type by transcriptional analysis. What experiment would you do to perform this analysis?Your analysis shows upregulation of a cluster of cell cycle genes, glucose metabolism genes and receptor tyrosine kinase signaling genes. Why do you suppose these 3 sets of genes would be upregulated? You decide to target the tyrosine kinase receptor signaling gene products for drug treatment. Name 2 protein targets and whether the drug would increase or decrease the targets activity.
This is how the question ask!!!!!!!!!!!!
In: Biology
Comprehensive Problem 2-2A
Ray and Maria Gomez have been married for 3 years. They live at 1610 Quince Ave., McAllen, TX 78701. Ray is a propane salesman for Palm Oil Corporation and Maria works as a city clerk for the City of McAllen. Maria's Social Security number is 444-65-9912 and Ray’s is 469-21-5523. Ray’s birthdate is February 21, 1988 and Marie’s is December 30, 1990. Ray and Maria’s earnings are reported on the following Form W-2s:
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Ray and Maria have interest income of $641 from a savings account at McAllen State Bank. In addition, they own U.S. Savings bonds (Series EE). The bonds had a value of $10,000 on January 1, 2016, and their value is $10,700 on December 31, 2016. They have not made an election with respect to these bonds.
Ray has an ex-wife named Judy Gomez. Pursuant to their divorce decree, Ray pays her $455 per month in alimony. All payments were made on time in 2016. Judy's Social Security number is 566-74-8765.
During 2016, Ray was in the hospital for a successful operation. His health insurance company reimbursed Ray $4,732 for all of his hospital and doctor bills.
In June 2016, Maria's father died. Under a life insurance policy owned and paid for by her father, Maria was paid death benefits of $25,000.
Maria bought a Texas lottery ticket on impulse during 2016. Her ticket was lucky and she won $3,900. The winning amount was paid to Maria in November 2016, with no income tax withheld.
Palm Oil Corporation provide Ray with a company car to drive while he is working. The Corporation spent $5,000 to maintain this vehicle during 2016. Ray never uses the car for personal purposes.
Required:
Complete the Gomez's federal tax return for 2016. Use Form 1040 below. Make realistic assumptions about any missing data. If an amount box does not require an entry or the amount is zero, enter "0".
Click here to access the tax table to use for this problem.
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
In: Accounting
In: Other
Mass M moves to the right with speed =v along a frictionless horizontal surface and crashes into an equal mass M initially at rest. Upon colliding, the two masses stick together and move with speed V to the right. Notice that v and V denote different speeds. After the collision the magnitude of the momentum of the system is:
(pick all correct answers)
2 M V
M V
0
2 M v
M v
In: Physics
In: Computer Science