C++ Finish the code Programming Assignment Help

C++ Finish the code Programming Assignment Help. C++ Finish the code Programming Assignment Help.


(/0x4*br />

There are two “TODO” to do. There will be more info attached in a file. You do need to make a new code from scratch, since most of it is done

I’m not paying more than 7 dollars because it’s not a big job. 

#include <iostream>
#include <string>

using namespace std;

//==========================================================================
// CONSTANTS
//==========================================================================

// error codes
const int ERROR_CAPACITY_OVERFLOW = 1;

// maximum size allowed for a set
const int MAX_SET_SIZE = 256;

//==========================================================================
// TYPES
//==========================================================================

// structure to represent sets of integers
struct IntSet {

int elem[MAX_SET_SIZE]; // the elements in the set (occupied 0 to n-1)
int size = 0; // the number of elements currently in the set

};

//==========================================================================
// FUNCTIONS
//==========================================================================

//--------------------------------------------------------------------------
// isEmpty(s): returns true if the set is empty and false otherwise.
//--------------------------------------------------------------------------

bool isEmpty(IntSet s) {

// s is empty if its size is zero
return s.size == 0;

}

//-------------------------------------------------------------------------
// isMember(s, x): Returns true if x is a memeber of set s and false otherwise.
//--------------------------------------------------------------------------

bool isMember(IntSet s, int x) {

// for every occupied cell of our array...
for (int i = 0; i < s.size ; i++) {

// compare contents to x
if (s.elem[i] == x)
return true;

}

// if we're here, x was not in the set
return false;

}

//--------------------------------------------------------------------------
// add(s, x): adds element x into set s. If x already is a member of s, then
// this operation has no effect.
//--------------------------------------------------------------------------

void add(IntSet &s, int x) {

// if there is room remaining
if (s.size < MAX_SET_SIZE) {

// if x is not already in the set
if (!isMember(s, x)) {

// place x in the elem array of s
s.elem[s.size] = x;

// update the size of s
s.size++;

}

}
else {

// the set is filled to capacity
cout << "Error: attempted to add an element to a maximum capacity set.";
exit(ERROR_CAPACITY_OVERFLOW);

}

}

//--------------------------------------------------------------------------
// clear(s): Clear the set s so that it is empty.
//--------------------------------------------------------------------------

void clear(IntSet &s) {
s.size = 0;
}

//--------------------------------------------------------------------------
// print(s): Prints set s to the console.
//--------------------------------------------------------------------------

void print(IntSet s) {

cout << "{";
for (int i = 0; i < s.size - 1; i++) {
cout << s.elem[i] << ", ";
}
if (s.size > 0) {
cout << s.elem[s.size - 1];
}
cout << "}" << endl;

}

//-------------------------------------------------------------------------
// setIntersection(s1, s2, result): Compute the intersection of s1 and s2 and
// place it into result.
//--------------------------------------------------------------------------

void setIntersection(IntSet s1, IntSet s2, IntSet &result) {

clear(result);

// TODO: Complete the code below...

// for every member of s1
// if it is a member of s2
// add it to the result

}

//-------------------------------------------------------------------------
// setUnion(s1, s2, result): Compute the union of s1 and s2 and place it into
// result.
// ------------------------------------------------------------------------

void setUnion(IntSet s1, IntSet s2, IntSet &result) {

clear(result);

// TODO: Complete the code below...

// for every member of s1
// add it to the result

// for every member of s2
// add it to the result

}

//--------------------------------------------------------------------------
// MAIN PROGRAM
//--------------------------------------------------------------------------

int main() {

// fill s1 with {1, 2, 3, 4, 5}
IntSet s1;
for (int x = 1; x <= 5; x++) {
add(s1, x);
}
cout << "s1: ";
print(s1);

// fill s2 with {4, 5, 6, 7, 8}
IntSet s2;
for (int x = 4; x <= 8; x++) {
add(s2, x);
}
cout << "s2: ";
print(s2);

// compute intersection and print it
IntSet res1;
setIntersection(s1, s2, res1);
cout << "intersection of s1 and s2: ";
print(res1);

// compute union and print it
IntSet res2;
setUnion(s1, s2, res2);
cout << "union of s1 and s2: ";
print(res2);

}

C++ Finish the code Programming Assignment Help[supanova_question]

Why have advertising networks become controversial?, Business & Finance Assignment Homework Help Business Finance Assignment Help

Please answer the  5 Questions 

1. Why have advertising networks
become controversial? What, if anything, can be done to overcome any resistance
to this technique?

2. List and describe
some Web site design features that impact online purchasing.

3. What are some of the difficulties in
providing services in an online environment? What factors differentiate the
services sector from the retail sector, for example?

4. Briefly outline the types of information
an organization would gather before writing the organizations information
security policy document.

5. Briefly describe the most important functions to
look for in project management software and why they are importa

[supanova_question]

Discussion Board= Psych Humanities Assignment Help

Pick and complete 1 of the following two assessments:

Within the Discussion Board area, write 300–500 words that respond to the following questions with your thoughts, ideas and comments. This will be the foundation for future discussions with your classmates. Be clear and use examples to reinforce your ideas.

  • Discuss the results that you learned by taking either the personality assessment or temperament assessment.
  • Discuss 2 items you learned about your personality type or temperament type.
  • Do you agree or disagree with your results? Provide an example that would support why you agree or disagree with your results.
  • Discuss how you would work with someone who has a different personality or temperament type than your own in a team setting?

[supanova_question]

Business Requirements Document, Cis 498 week 4, computer science homework help Computer Science Assignment Help

This assignment consists of two (2) sections: a business requirements document and a Gantt chart or project plan. You must submit both sections as separate files for the completion of this assignment. Label each file name according to the section of the assignment for which it is written. Additionally, you may create and / or assume all necessary assumptions needed for the completion of this assignment.

Procuring quality business requirements is an important step toward the design of quality information systems. Completion of a quality requirements document allows user needs and expectations to be captured so that infrastructure and information systems can be designed properly. Using the requirements document provided in the course shell, you are to speculate on the needs of the company. You must consider current and future requirements; however, assumptions should be realistic and carefully considered.

Section 1: Business Requirements Document

1. Write an eight to ten (8-10) page original business requirements document for the project plan using the template provided. Note: The template can be found in the Student Center of the online course shell.

a. Describe the project including the following:

i. Describe the scope and analyze how to control the scope.

ii. Identify possible risks, constraints, and assumptions.

iii. Describe the integration with other systems and infrastructure. Note: Database and interface design, security, and networking should be considered.

iv. Define relevant terms that will be used throughout project.

b. Use at least two (2) quality resources in this assignment. Note: Wikipedia and similar Websites do not qualify as quality resources.

Your assignment must follow these formatting requirements:

  • Be typed, double spaced, using Times New Roman font (size 12), with one-inch margins on all sides; citations and references must follow APA or school-specific format. Check with your professor for any additional instructions.
  • Include a cover page containing the title of the assignment, the student’s name, the professor’s name, the course title, and the date. The cover page and the reference page are not included in the required assignment page length.

Section 2: Revised Gantt Chart / Project Plan

Use Microsoft Project or an open source alternative, such as Open Project, to:

2. Update the Gantt chart or project plan (summary and detail) template, from Project Deliverable 1: Project Plan Inception, with all the project tasks.

The specific course learning outcomes associated with this assignment are:

  • Apply integrative information technology solutions with project management tools to solve business problems.
  • Use technology and information resources to research issues in information technology.
  • Write clearly and concisely about strategic issues and practices in the information technology domain using proper writing mechanics and technical style conventions.

[supanova_question]

Critical Thinking – Social Networking, Website Design Assignment Homework Help Programming Assignment Help

The assignment must be based on the attached Chapters (6) and (21) from the textbook.

Your employer has tasked you with designing a social networking website. You are free to design either a blog, a micro-blog, or a wiki.

  • Create visual representations of the home page, node pages, basic pages, and navigational pages.
  • Create a storyboard of the website presenting ideas for website content, the links, and interconnections.
  • Incorporate steps 1 and 2 into a Technical Description Report. Review the four-step process in Chapter 6 for guidance in creating a Technical Description Report. Feel free to create a new logo, and use color effectively.

Directions:

  • Write a 2- to 3-page Technical Description of your social networking site using the four-step process from Chapter 6. This does not include the title and reference pages, the visual representations, or the storyboard.
  • Include your visual representations and storyboard in addition to the technical description.
  • You must include a minimum of two (2) credible sources, not including the text, and use proper citation.
  • Your paper must follow academic writing standards and APA style guidelines, as appropriate.
  • You are strongly encouraged to submit all assignments to the Turnitin Originality Check prior to submitting them to your instructor for grading.

[supanova_question]

[supanova_question]

Java programming, programming homework help Programming Assignment Help

I need help getting the solution manuals (instructor materials) for the Java book below, so that I can use it as a study aid: 

http://www.murachforinstructors.com/shop/murach-s-java-programming-detail

Can someone help me get these materials?  Here is a link for the instructions on how to get it.  You will need to register on the website and verify that you’re an instructor at a school, in order to get the materials.  I believe they are free to get once you are registered.

http://www.murachforinstructors.com/about-our-courseware/how-to-get-the-instructor-s-materials-for-a-book

Please register on the website and upload the instructor materials for the book above when finished.  Thank you

Java programming, programming homework help Programming Assignment Help[supanova_question]

variables and linear programming, algebra homework help Mathematics Assignment Help

1. Write an example of a system of three equations in three variables that has (-3, 5, 2) as a solution. Show that the ordered triple satisfies all three equations.

2. Create a system of inequalities that forms a bounded region.

3. Use the information about buoy tenders on page 158 to explain how linear programming can be used in scheduling work. Include a system of inequalities that represents the constraints that are used to schedule buoy repair and replacement and an explanation of the linear function that the buoy tender captain would wish to maximize.

I am having trouble with these topics and any help would be great!

[supanova_question]

Determining Causes and Effects, English homework help Humanities Assignment Help

Assignment 3.2: Determining Causes and Effects – Revised Version

Due Week 9 and worth 250 points

Select one (1) of the scenarios on which to focus your causes and effects paper. Research the topic and include credible sources to support claims. Identify your purpose clearly, incorporate audience needs, establish a desired tone, and organize information/claims effectively.

1. The President of Strayer University has asked you (a full time university professor) to write about the major causes and effects of stress on college students. The paper will be presented to senior administration in order to help students have a more positive college experience.

2. The director of your state unemployment agency has asked you (a public relations specialist) to write about the causes and effects of unemployment on an individual/family. The paper will be presented to the agency as they make decisions about reaching out to those who need jobs.

3. The CEO of Bank of America has asked you (a financial analyst) to write a paper on the causes and effects on not keeping a personal budget. The paper will be presented to the communications department of the company so they can create budget forms for customers.

Write a four to five (4-5) page paper in which you:

Provide a clear thesis statement.

Describe the major cause.

Describe a leading second cause

Describe two (2) economic effects of the cause.

Describe two (2) effects on people.

Develop a coherently structured paper with an introduction, body, and conclusion.

Provide three (3) relevant and credible sources to support claims. Note: Wikipedia and other Websites do not qualify as academic resources.

Your assignment must follow these formatting requirements:

Be typed, double spaced, using Times New Roman font (size 12), with one-inch margins on all sides; references must follow APA or school-specific format. Check with your professor for any additional instructions.

Include a cover page containing the title of the assignment, the student’s name, the professor’s name, the course title, and the date. The cover page and the reference page are not included in the required page length.

The specific course learning outcomes associated with this assignment are:

Associate the features of audience, purpose, and text with various genres.

Recognize the elements and correct use of a thesis statement.

Recognize how to organize ideas with transitional words, phrases, and sentences.

Incorporate relevant, correctly documented sources to substantiate claims.

Apply the writing process to develop various writing genres.

Write clearly and concisely about selected topics using proper writing mechanics.

Use technology and information resources to research selected issues for this course

[supanova_question]

healthcare quality, English homework help Humanities Assignment Help

Assignment 3: Healthcare Quality

Due Week 6 and worth 200 points

Assume that you are a Quality Officer who is responsible for one of the state’s largest healthcare organizations. You have been told that the quality of patient care has decreased, and you have been assigned a project that is geared toward increasing quality of care for the patients. Your Chief Executive Officer has requested a six to eight-page summary of your recommended initiatives.

Note: You may create and /or make all necessary assumptions needed for the completion of this assignment.

Write a 6-8 page paper in which you:

Analyze three (3) quality initiatives for your organization.

Determine the supporting factors that would aid in the reduction of healthcare cost in your organization without reducing quality of care for the patients.

Differentiate between quality in a free market healthcare system and in single payer government system with three (3) examples for each.

Specify three (3) common law quality initiatives that are still found in 21st century healthcare organizations.

Defend your position on the importance of healthcare quality for your organization. Provide support with at least three (3) examples that illustrate your position.

Assemble a plan to protect patient information that complies with all legal requirements.

Use at least three (3) quality references. Note: Wikipedia and other Websites do not qualify as academic resources.

Your assignment must follow these formatting requirements:

Be typed, double spaced, using Times New Roman font (size 12), with one-inch margins on all sides; citations and references must follow APA or school-specific format. Check with your professor for any additional instructions.

Include a cover page containing the title of the assignment, the student’s name, the professor’s name, the course title, and the date. The cover page and the reference page are not included in the required assignment page length.

The specific course learning outcomes associated with this assignment are:

Describe the evolution of hospitals and sources of law.

Examine tort law and the criminal aspects of health care.

Analyze the impact of healthcare financing and health insurance on healthcare access, quality, and cost.

Determine the factors that affect healthcare quality in healthcare organizations.

Examine information management and health care records and how the legal reporting requirements impact health care.

Assess the legal implications of ethical decisions that impact consent for treatment, right-to-die, and patient rights and responsibilities.

Use technology and information resources to research issues in healthcare policy, law, and ethics.

Write clearly and concisely about healthcare policy and law using proper writing mechanics.

[supanova_question]

Your own interpretation of a poem and analyze how sensory images led you to this interpretation, literary analysis help Humanities Assignment Help

Part A: Literary Analysis

You know that Imagists use sensory language
to bring poetry to life. Like all Modernist writings, Imagist works are subject
to interpretation. They explore personal thoughts and feelings, as well as ways
in which individuals react to their surroundings. Such poems explore the nature
of reality, often expressing uncertainty about the world and examining human
psychology.

For this part of Project 1, you will write
an essay in which you provide your own interpretation of a poem and analyze how
sensory images led you to this interpretation. Select one of the following
poems:

  • “The
    Great Figure”
  • “Pear
    Tree”
  • “Ars
    Poetica”

Your essay should be approximately 600 words (two pages). Begin by
summarizing what you believe the main idea in the poem to be. Then explain how
the sensory images in the poem lead to this interpretation. (Hint: to prepare
for this project, reread the poem and note the reactions you have to the
descriptions in the work. What do they make you think of? No answer is wrong if
you can support it logically. Be creative!)

For example, suppose you are writing about
“The Red Wheelbarrow” by William Carlos Williams. You may conclude that the
poem questions the value of urban life. The speaker may be saying that without
farmers, there would be no food for the urban masses. Your thesis would be something
like, “The images in this poem are a tribute to farm life.” The rest of your
essay would explain how the images in the poem (the red wheelbarrow, the rain,
and the white chickens) develop the idea of farm life.

Keep these guidelines in mind:

The typical
essay includes an introduction, body paragraphs, and a conclusion. The key to
organization is clear structure and strong transitions from one idea to
another.

Your
introduction will open your essay. Note the poem you are discussing and explain
your own interpretation of the poem. Finish your introduction with a thesis
statement (a clear statement of the “argument” you are making).

Your body
paragraphs, which will make up most of your essay, must support your thesis
statement. Each body paragraph should have a topic sentence that expresses an
idea about the ways imagery leads to your interpretation of the poem. All of
the sentences in a body paragraph should support the topic sentence of the
paragraph.

Be sure to cite
direct quotations properly. For directions about proper use of citations, refer
to the MLA Manual and Guide to Scholarly
Publications
, which is available in most libraries. Guides to the MLA Style
are available online, and there is a guide on pages R21–R23 of your textbook.
For guidelines about grammar and punctuation, refer to the “Grammar, Usage, and
Mechanics Handbook” on pages R56–R63 of your textbook.

Part A is worth 50 points. Your grade on
this part of the project will be based on the following criteria:

Project Grading Table
(Teacher Use Only)

Points Possible

Points Earned

Do you provide a personal interpretation
of the poem?

8

Do you have a clear thesis statement
about the use of imagery in the poem?

8

Do you discuss at least three uses of
imagery in the poem?

8

Do you use specific examples from the
poem in your discussion?

8

Does your discussion of imagery relate
logically to your thesis?

8

Are your paragraphs well organized?

5

Is your essay free of errors in grammar,
spelling, capitalization, and punctuation; and are all direct quotations
cited correctly?

5

[supanova_question]

https://anyessayhelp.com/

Please register on the website and upload the instructor materials for the book above when finished.  Thank you

Java programming, programming homework help Programming Assignment Help[supanova_question]

variables and linear programming, algebra homework help Mathematics Assignment Help

1. Write an example of a system of three equations in three variables that has (-3, 5, 2) as a solution. Show that the ordered triple satisfies all three equations.

2. Create a system of inequalities that forms a bounded region.

3. Use the information about buoy tenders on page 158 to explain how linear programming can be used in scheduling work. Include a system of inequalities that represents the constraints that are used to schedule buoy repair and replacement and an explanation of the linear function that the buoy tender captain would wish to maximize.

I am having trouble with these topics and any help would be great!

[supanova_question]

Determining Causes and Effects, English homework help Humanities Assignment Help

Assignment 3.2: Determining Causes and Effects – Revised Version

Due Week 9 and worth 250 points

Select one (1) of the scenarios on which to focus your causes and effects paper. Research the topic and include credible sources to support claims. Identify your purpose clearly, incorporate audience needs, establish a desired tone, and organize information/claims effectively.

1. The President of Strayer University has asked you (a full time university professor) to write about the major causes and effects of stress on college students. The paper will be presented to senior administration in order to help students have a more positive college experience.

2. The director of your state unemployment agency has asked you (a public relations specialist) to write about the causes and effects of unemployment on an individual/family. The paper will be presented to the agency as they make decisions about reaching out to those who need jobs.

3. The CEO of Bank of America has asked you (a financial analyst) to write a paper on the causes and effects on not keeping a personal budget. The paper will be presented to the communications department of the company so they can create budget forms for customers.

Write a four to five (4-5) page paper in which you:

Provide a clear thesis statement.

Describe the major cause.

Describe a leading second cause

Describe two (2) economic effects of the cause.

Describe two (2) effects on people.

Develop a coherently structured paper with an introduction, body, and conclusion.

Provide three (3) relevant and credible sources to support claims. Note: Wikipedia and other Websites do not qualify as academic resources.

Your assignment must follow these formatting requirements:

Be typed, double spaced, using Times New Roman font (size 12), with one-inch margins on all sides; references must follow APA or school-specific format. Check with your professor for any additional instructions.

Include a cover page containing the title of the assignment, the student’s name, the professor’s name, the course title, and the date. The cover page and the reference page are not included in the required page length.

The specific course learning outcomes associated with this assignment are:

Associate the features of audience, purpose, and text with various genres.

Recognize the elements and correct use of a thesis statement.

Recognize how to organize ideas with transitional words, phrases, and sentences.

Incorporate relevant, correctly documented sources to substantiate claims.

Apply the writing process to develop various writing genres.

Write clearly and concisely about selected topics using proper writing mechanics.

Use technology and information resources to research selected issues for this course

[supanova_question]

healthcare quality, English homework help Humanities Assignment Help

Assignment 3: Healthcare Quality

Due Week 6 and worth 200 points

Assume that you are a Quality Officer who is responsible for one of the state’s largest healthcare organizations. You have been told that the quality of patient care has decreased, and you have been assigned a project that is geared toward increasing quality of care for the patients. Your Chief Executive Officer has requested a six to eight-page summary of your recommended initiatives.

Note: You may create and /or make all necessary assumptions needed for the completion of this assignment.

Write a 6-8 page paper in which you:

Analyze three (3) quality initiatives for your organization.

Determine the supporting factors that would aid in the reduction of healthcare cost in your organization without reducing quality of care for the patients.

Differentiate between quality in a free market healthcare system and in single payer government system with three (3) examples for each.

Specify three (3) common law quality initiatives that are still found in 21st century healthcare organizations.

Defend your position on the importance of healthcare quality for your organization. Provide support with at least three (3) examples that illustrate your position.

Assemble a plan to protect patient information that complies with all legal requirements.

Use at least three (3) quality references. Note: Wikipedia and other Websites do not qualify as academic resources.

Your assignment must follow these formatting requirements:

Be typed, double spaced, using Times New Roman font (size 12), with one-inch margins on all sides; citations and references must follow APA or school-specific format. Check with your professor for any additional instructions.

Include a cover page containing the title of the assignment, the student’s name, the professor’s name, the course title, and the date. The cover page and the reference page are not included in the required assignment page length.

The specific course learning outcomes associated with this assignment are:

Describe the evolution of hospitals and sources of law.

Examine tort law and the criminal aspects of health care.

Analyze the impact of healthcare financing and health insurance on healthcare access, quality, and cost.

Determine the factors that affect healthcare quality in healthcare organizations.

Examine information management and health care records and how the legal reporting requirements impact health care.

Assess the legal implications of ethical decisions that impact consent for treatment, right-to-die, and patient rights and responsibilities.

Use technology and information resources to research issues in healthcare policy, law, and ethics.

Write clearly and concisely about healthcare policy and law using proper writing mechanics.

[supanova_question]

Your own interpretation of a poem and analyze how sensory images led you to this interpretation, literary analysis help Humanities Assignment Help

Part A: Literary Analysis

You know that Imagists use sensory language
to bring poetry to life. Like all Modernist writings, Imagist works are subject
to interpretation. They explore personal thoughts and feelings, as well as ways
in which individuals react to their surroundings. Such poems explore the nature
of reality, often expressing uncertainty about the world and examining human
psychology.

For this part of Project 1, you will write
an essay in which you provide your own interpretation of a poem and analyze how
sensory images led you to this interpretation. Select one of the following
poems:

  • “The
    Great Figure”
  • “Pear
    Tree”
  • “Ars
    Poetica”

Your essay should be approximately 600 words (two pages). Begin by
summarizing what you believe the main idea in the poem to be. Then explain how
the sensory images in the poem lead to this interpretation. (Hint: to prepare
for this project, reread the poem and note the reactions you have to the
descriptions in the work. What do they make you think of? No answer is wrong if
you can support it logically. Be creative!)

For example, suppose you are writing about
“The Red Wheelbarrow” by William Carlos Williams. You may conclude that the
poem questions the value of urban life. The speaker may be saying that without
farmers, there would be no food for the urban masses. Your thesis would be something
like, “The images in this poem are a tribute to farm life.” The rest of your
essay would explain how the images in the poem (the red wheelbarrow, the rain,
and the white chickens) develop the idea of farm life.

Keep these guidelines in mind:

The typical
essay includes an introduction, body paragraphs, and a conclusion. The key to
organization is clear structure and strong transitions from one idea to
another.

Your
introduction will open your essay. Note the poem you are discussing and explain
your own interpretation of the poem. Finish your introduction with a thesis
statement (a clear statement of the “argument” you are making).

Your body
paragraphs, which will make up most of your essay, must support your thesis
statement. Each body paragraph should have a topic sentence that expresses an
idea about the ways imagery leads to your interpretation of the poem. All of
the sentences in a body paragraph should support the topic sentence of the
paragraph.

Be sure to cite
direct quotations properly. For directions about proper use of citations, refer
to the MLA Manual and Guide to Scholarly
Publications
, which is available in most libraries. Guides to the MLA Style
are available online, and there is a guide on pages R21–R23 of your textbook.
For guidelines about grammar and punctuation, refer to the “Grammar, Usage, and
Mechanics Handbook” on pages R56–R63 of your textbook.

Part A is worth 50 points. Your grade on
this part of the project will be based on the following criteria:

Project Grading Table
(Teacher Use Only)

Points Possible

Points Earned

Do you provide a personal interpretation
of the poem?

8

Do you have a clear thesis statement
about the use of imagery in the poem?

8

Do you discuss at least three uses of
imagery in the poem?

8

Do you use specific examples from the
poem in your discussion?

8

Does your discussion of imagery relate
logically to your thesis?

8

Are your paragraphs well organized?

5

Is your essay free of errors in grammar,
spelling, capitalization, and punctuation; and are all direct quotations
cited correctly?

5

[supanova_question]

https://anyessayhelp.com/

Please register on the website and upload the instructor materials for the book above when finished.  Thank you

Java programming, programming homework help Programming Assignment Help[supanova_question]

variables and linear programming, algebra homework help Mathematics Assignment Help

1. Write an example of a system of three equations in three variables that has (-3, 5, 2) as a solution. Show that the ordered triple satisfies all three equations.

2. Create a system of inequalities that forms a bounded region.

3. Use the information about buoy tenders on page 158 to explain how linear programming can be used in scheduling work. Include a system of inequalities that represents the constraints that are used to schedule buoy repair and replacement and an explanation of the linear function that the buoy tender captain would wish to maximize.

I am having trouble with these topics and any help would be great!

[supanova_question]

Determining Causes and Effects, English homework help Humanities Assignment Help

Assignment 3.2: Determining Causes and Effects – Revised Version

Due Week 9 and worth 250 points

Select one (1) of the scenarios on which to focus your causes and effects paper. Research the topic and include credible sources to support claims. Identify your purpose clearly, incorporate audience needs, establish a desired tone, and organize information/claims effectively.

1. The President of Strayer University has asked you (a full time university professor) to write about the major causes and effects of stress on college students. The paper will be presented to senior administration in order to help students have a more positive college experience.

2. The director of your state unemployment agency has asked you (a public relations specialist) to write about the causes and effects of unemployment on an individual/family. The paper will be presented to the agency as they make decisions about reaching out to those who need jobs.

3. The CEO of Bank of America has asked you (a financial analyst) to write a paper on the causes and effects on not keeping a personal budget. The paper will be presented to the communications department of the company so they can create budget forms for customers.

Write a four to five (4-5) page paper in which you:

Provide a clear thesis statement.

Describe the major cause.

Describe a leading second cause

Describe two (2) economic effects of the cause.

Describe two (2) effects on people.

Develop a coherently structured paper with an introduction, body, and conclusion.

Provide three (3) relevant and credible sources to support claims. Note: Wikipedia and other Websites do not qualify as academic resources.

Your assignment must follow these formatting requirements:

Be typed, double spaced, using Times New Roman font (size 12), with one-inch margins on all sides; references must follow APA or school-specific format. Check with your professor for any additional instructions.

Include a cover page containing the title of the assignment, the student’s name, the professor’s name, the course title, and the date. The cover page and the reference page are not included in the required page length.

The specific course learning outcomes associated with this assignment are:

Associate the features of audience, purpose, and text with various genres.

Recognize the elements and correct use of a thesis statement.

Recognize how to organize ideas with transitional words, phrases, and sentences.

Incorporate relevant, correctly documented sources to substantiate claims.

Apply the writing process to develop various writing genres.

Write clearly and concisely about selected topics using proper writing mechanics.

Use technology and information resources to research selected issues for this course

[supanova_question]

healthcare quality, English homework help Humanities Assignment Help

Assignment 3: Healthcare Quality

Due Week 6 and worth 200 points

Assume that you are a Quality Officer who is responsible for one of the state’s largest healthcare organizations. You have been told that the quality of patient care has decreased, and you have been assigned a project that is geared toward increasing quality of care for the patients. Your Chief Executive Officer has requested a six to eight-page summary of your recommended initiatives.

Note: You may create and /or make all necessary assumptions needed for the completion of this assignment.

Write a 6-8 page paper in which you:

Analyze three (3) quality initiatives for your organization.

Determine the supporting factors that would aid in the reduction of healthcare cost in your organization without reducing quality of care for the patients.

Differentiate between quality in a free market healthcare system and in single payer government system with three (3) examples for each.

Specify three (3) common law quality initiatives that are still found in 21st century healthcare organizations.

Defend your position on the importance of healthcare quality for your organization. Provide support with at least three (3) examples that illustrate your position.

Assemble a plan to protect patient information that complies with all legal requirements.

Use at least three (3) quality references. Note: Wikipedia and other Websites do not qualify as academic resources.

Your assignment must follow these formatting requirements:

Be typed, double spaced, using Times New Roman font (size 12), with one-inch margins on all sides; citations and references must follow APA or school-specific format. Check with your professor for any additional instructions.

Include a cover page containing the title of the assignment, the student’s name, the professor’s name, the course title, and the date. The cover page and the reference page are not included in the required assignment page length.

The specific course learning outcomes associated with this assignment are:

Describe the evolution of hospitals and sources of law.

Examine tort law and the criminal aspects of health care.

Analyze the impact of healthcare financing and health insurance on healthcare access, quality, and cost.

Determine the factors that affect healthcare quality in healthcare organizations.

Examine information management and health care records and how the legal reporting requirements impact health care.

Assess the legal implications of ethical decisions that impact consent for treatment, right-to-die, and patient rights and responsibilities.

Use technology and information resources to research issues in healthcare policy, law, and ethics.

Write clearly and concisely about healthcare policy and law using proper writing mechanics.

[supanova_question]

Your own interpretation of a poem and analyze how sensory images led you to this interpretation, literary analysis help Humanities Assignment Help

Part A: Literary Analysis

You know that Imagists use sensory language
to bring poetry to life. Like all Modernist writings, Imagist works are subject
to interpretation. They explore personal thoughts and feelings, as well as ways
in which individuals react to their surroundings. Such poems explore the nature
of reality, often expressing uncertainty about the world and examining human
psychology.

For this part of Project 1, you will write
an essay in which you provide your own interpretation of a poem and analyze how
sensory images led you to this interpretation. Select one of the following
poems:

  • “The
    Great Figure”
  • “Pear
    Tree”
  • “Ars
    Poetica”

Your essay should be approximately 600 words (two pages). Begin by
summarizing what you believe the main idea in the poem to be. Then explain how
the sensory images in the poem lead to this interpretation. (Hint: to prepare
for this project, reread the poem and note the reactions you have to the
descriptions in the work. What do they make you think of? No answer is wrong if
you can support it logically. Be creative!)

For example, suppose you are writing about
“The Red Wheelbarrow” by William Carlos Williams. You may conclude that the
poem questions the value of urban life. The speaker may be saying that without
farmers, there would be no food for the urban masses. Your thesis would be something
like, “The images in this poem are a tribute to farm life.” The rest of your
essay would explain how the images in the poem (the red wheelbarrow, the rain,
and the white chickens) develop the idea of farm life.

Keep these guidelines in mind:

The typical
essay includes an introduction, body paragraphs, and a conclusion. The key to
organization is clear structure and strong transitions from one idea to
another.

Your
introduction will open your essay. Note the poem you are discussing and explain
your own interpretation of the poem. Finish your introduction with a thesis
statement (a clear statement of the “argument” you are making).

Your body
paragraphs, which will make up most of your essay, must support your thesis
statement. Each body paragraph should have a topic sentence that expresses an
idea about the ways imagery leads to your interpretation of the poem. All of
the sentences in a body paragraph should support the topic sentence of the
paragraph.

Be sure to cite
direct quotations properly. For directions about proper use of citations, refer
to the MLA Manual and Guide to Scholarly
Publications
, which is available in most libraries. Guides to the MLA Style
are available online, and there is a guide on pages R21–R23 of your textbook.
For guidelines about grammar and punctuation, refer to the “Grammar, Usage, and
Mechanics Handbook” on pages R56–R63 of your textbook.

Part A is worth 50 points. Your grade on
this part of the project will be based on the following criteria:

Project Grading Table
(Teacher Use Only)

Points Possible

Points Earned

Do you provide a personal interpretation
of the poem?

8

Do you have a clear thesis statement
about the use of imagery in the poem?

8

Do you discuss at least three uses of
imagery in the poem?

8

Do you use specific examples from the
poem in your discussion?

8

Does your discussion of imagery relate
logically to your thesis?

8

Are your paragraphs well organized?

5

Is your essay free of errors in grammar,
spelling, capitalization, and punctuation; and are all direct quotations
cited correctly?

5

[supanova_question]

https://anyessayhelp.com/

Please register on the website and upload the instructor materials for the book above when finished.  Thank you

Java programming, programming homework help Programming Assignment Help[supanova_question]

variables and linear programming, algebra homework help Mathematics Assignment Help

1. Write an example of a system of three equations in three variables that has (-3, 5, 2) as a solution. Show that the ordered triple satisfies all three equations.

2. Create a system of inequalities that forms a bounded region.

3. Use the information about buoy tenders on page 158 to explain how linear programming can be used in scheduling work. Include a system of inequalities that represents the constraints that are used to schedule buoy repair and replacement and an explanation of the linear function that the buoy tender captain would wish to maximize.

I am having trouble with these topics and any help would be great!

[supanova_question]

Determining Causes and Effects, English homework help Humanities Assignment Help

Assignment 3.2: Determining Causes and Effects – Revised Version

Due Week 9 and worth 250 points

Select one (1) of the scenarios on which to focus your causes and effects paper. Research the topic and include credible sources to support claims. Identify your purpose clearly, incorporate audience needs, establish a desired tone, and organize information/claims effectively.

1. The President of Strayer University has asked you (a full time university professor) to write about the major causes and effects of stress on college students. The paper will be presented to senior administration in order to help students have a more positive college experience.

2. The director of your state unemployment agency has asked you (a public relations specialist) to write about the causes and effects of unemployment on an individual/family. The paper will be presented to the agency as they make decisions about reaching out to those who need jobs.

3. The CEO of Bank of America has asked you (a financial analyst) to write a paper on the causes and effects on not keeping a personal budget. The paper will be presented to the communications department of the company so they can create budget forms for customers.

Write a four to five (4-5) page paper in which you:

Provide a clear thesis statement.

Describe the major cause.

Describe a leading second cause

Describe two (2) economic effects of the cause.

Describe two (2) effects on people.

Develop a coherently structured paper with an introduction, body, and conclusion.

Provide three (3) relevant and credible sources to support claims. Note: Wikipedia and other Websites do not qualify as academic resources.

Your assignment must follow these formatting requirements:

Be typed, double spaced, using Times New Roman font (size 12), with one-inch margins on all sides; references must follow APA or school-specific format. Check with your professor for any additional instructions.

Include a cover page containing the title of the assignment, the student’s name, the professor’s name, the course title, and the date. The cover page and the reference page are not included in the required page length.

The specific course learning outcomes associated with this assignment are:

Associate the features of audience, purpose, and text with various genres.

Recognize the elements and correct use of a thesis statement.

Recognize how to organize ideas with transitional words, phrases, and sentences.

Incorporate relevant, correctly documented sources to substantiate claims.

Apply the writing process to develop various writing genres.

Write clearly and concisely about selected topics using proper writing mechanics.

Use technology and information resources to research selected issues for this course

[supanova_question]

healthcare quality, English homework help Humanities Assignment Help

Assignment 3: Healthcare Quality

Due Week 6 and worth 200 points

Assume that you are a Quality Officer who is responsible for one of the state’s largest healthcare organizations. You have been told that the quality of patient care has decreased, and you have been assigned a project that is geared toward increasing quality of care for the patients. Your Chief Executive Officer has requested a six to eight-page summary of your recommended initiatives.

Note: You may create and /or make all necessary assumptions needed for the completion of this assignment.

Write a 6-8 page paper in which you:

Analyze three (3) quality initiatives for your organization.

Determine the supporting factors that would aid in the reduction of healthcare cost in your organization without reducing quality of care for the patients.

Differentiate between quality in a free market healthcare system and in single payer government system with three (3) examples for each.

Specify three (3) common law quality initiatives that are still found in 21st century healthcare organizations.

Defend your position on the importance of healthcare quality for your organization. Provide support with at least three (3) examples that illustrate your position.

Assemble a plan to protect patient information that complies with all legal requirements.

Use at least three (3) quality references. Note: Wikipedia and other Websites do not qualify as academic resources.

Your assignment must follow these formatting requirements:

Be typed, double spaced, using Times New Roman font (size 12), with one-inch margins on all sides; citations and references must follow APA or school-specific format. Check with your professor for any additional instructions.

Include a cover page containing the title of the assignment, the student’s name, the professor’s name, the course title, and the date. The cover page and the reference page are not included in the required assignment page length.

The specific course learning outcomes associated with this assignment are:

Describe the evolution of hospitals and sources of law.

Examine tort law and the criminal aspects of health care.

Analyze the impact of healthcare financing and health insurance on healthcare access, quality, and cost.

Determine the factors that affect healthcare quality in healthcare organizations.

Examine information management and health care records and how the legal reporting requirements impact health care.

Assess the legal implications of ethical decisions that impact consent for treatment, right-to-die, and patient rights and responsibilities.

Use technology and information resources to research issues in healthcare policy, law, and ethics.

Write clearly and concisely about healthcare policy and law using proper writing mechanics.

[supanova_question]

Your own interpretation of a poem and analyze how sensory images led you to this interpretation, literary analysis help Humanities Assignment Help

Part A: Literary Analysis

You know that Imagists use sensory language
to bring poetry to life. Like all Modernist writings, Imagist works are subject
to interpretation. They explore personal thoughts and feelings, as well as ways
in which individuals react to their surroundings. Such poems explore the nature
of reality, often expressing uncertainty about the world and examining human
psychology.

For this part of Project 1, you will write
an essay in which you provide your own interpretation of a poem and analyze how
sensory images led you to this interpretation. Select one of the following
poems:

  • “The
    Great Figure”
  • “Pear
    Tree”
  • “Ars
    Poetica”

Your essay should be approximately 600 words (two pages). Begin by
summarizing what you believe the main idea in the poem to be. Then explain how
the sensory images in the poem lead to this interpretation. (Hint: to prepare
for this project, reread the poem and note the reactions you have to the
descriptions in the work. What do they make you think of? No answer is wrong if
you can support it logically. Be creative!)

For example, suppose you are writing about
“The Red Wheelbarrow” by William Carlos Williams. You may conclude that the
poem questions the value of urban life. The speaker may be saying that without
farmers, there would be no food for the urban masses. Your thesis would be something
like, “The images in this poem are a tribute to farm life.” The rest of your
essay would explain how the images in the poem (the red wheelbarrow, the rain,
and the white chickens) develop the idea of farm life.

Keep these guidelines in mind:

The typical
essay includes an introduction, body paragraphs, and a conclusion. The key to
organization is clear structure and strong transitions from one idea to
another.

Your
introduction will open your essay. Note the poem you are discussing and explain
your own interpretation of the poem. Finish your introduction with a thesis
statement (a clear statement of the “argument” you are making).

Your body
paragraphs, which will make up most of your essay, must support your thesis
statement. Each body paragraph should have a topic sentence that expresses an
idea about the ways imagery leads to your interpretation of the poem. All of
the sentences in a body paragraph should support the topic sentence of the
paragraph.

Be sure to cite
direct quotations properly. For directions about proper use of citations, refer
to the MLA Manual and Guide to Scholarly
Publications
, which is available in most libraries. Guides to the MLA Style
are available online, and there is a guide on pages R21–R23 of your textbook.
For guidelines about grammar and punctuation, refer to the “Grammar, Usage, and
Mechanics Handbook” on pages R56–R63 of your textbook.

Part A is worth 50 points. Your grade on
this part of the project will be based on the following criteria:

Project Grading Table
(Teacher Use Only)

Points Possible

Points Earned

Do you provide a personal interpretation
of the poem?

8

Do you have a clear thesis statement
about the use of imagery in the poem?

8

Do you discuss at least three uses of
imagery in the poem?

8

Do you use specific examples from the
poem in your discussion?

8

Does your discussion of imagery relate
logically to your thesis?

8

Are your paragraphs well organized?

5

Is your essay free of errors in grammar,
spelling, capitalization, and punctuation; and are all direct quotations
cited correctly?

5

[supanova_question]

C++ Finish the code Programming Assignment Help

C++ Finish the code Programming Assignment Help

× How can I help you?