Entries by Student

write my assignment 8897

Complete 1 page APA formatted essay: Leukemia.

Juvenile leukemia may involve AML as well as ML (Myeloid leukemia), including Chronic Myelogenous and CMML (Childhood Myelomonocytic leukemia. Other less common types include Hairy cell leukemia, and Acute Myelogenous subtype like APL (acute promyelocytic leukemia).

The most promising current leukemia treatment option is a STI-571 drug, which offers exciting results and intensive hope for Chronic Myelogenous Leukemia patients. Oregon Cancer Center Program for leukemia suggests that initially Chronic or persistent Myelogenous Leukemia patients had a reduced rate of survival, about 20% or less, but with the new drug, survival rate has increased. STI-571 drug is medication taken every day by patients, (Keene 90). It is distinct from chemotherapy because of the fact that it spares healthy cells while eliminating cancer cells. The drug targets enzymes in leukemia cells thus, victims experience minimal side

 

"Not answered?"


Get the Answer

write my assignment 26256

 Respond 1:

Explain Agency law and the implications of Agency law that apply in this situation. Describe at least one (1) way the company may be able to cancel or return the order in question.

Agency law means when you get hire by someone you their agents and the person you got hire by is the principal. This usually is done by written contract or power of attorney. By hiring the agent you are giving him/her control to act as the principal. For example in this case the agent was my friend who ordered the improper ordered act like the principal. Agents act in duty of loyalty, duty of good conduct, duty of care and duty to act in terms of the contract. The business will be liable for the employee action due to the he is acting as the agent.

Respond 2:

  • For six months, every week, Chuck rents a RYDER truck and journeys to Tennessee where he purchases a truckload of widgets from Widgets, Inc.
  • RYDER is fully aware of the nature of the transported items and initially pays particular attention to Chuck’s attire each time he appears to rent the truck. Chuck wears customized attire from his former employment with Widgets, Inc. The shirt bears the name Widgets Inc. and the logo is quite noticeable.
  • Chuck wears his custom attire when driving to Tennessee as he expects to visit his former colleagues when at the company. He thinks it is funny to wear the old uniform when visiting the company. He visits and talks to his friends and colleagues, has lunch every time and leaves with his purchase.
  • Chuck experiences monetary issues in his personal life. He rents the RYDER truck but fails to pay RYDER truck for several rental periods.
  • RYDER then submits an invoice to Widgets, Inc. for payment.

Respond 3:

 As a small-business owner, you are faced with rising costs, particularly employment costs, insurance, et cetera. You decide to hire some friends and pay them as they work rather than go through the expense and procedure of bringing in “actual” employees. Your friends wear the business uniform, deal with vendors and customers, and tell friends and family that they work for the business. One friend / employee orders way too much from a vendor. The vendor has dealt with the person numerous times; in fact, the person has been ordering from the vendor for months. 

 

"Not answered?"


Get the Answer

write my assignment 20042

Compose a 1750 words assignment on wealth distribution as a major determining factor for the economic growth in regions of the world. Needs to be plagiarism free! The need to pursue economic equality among individuals and between different countries of the world arose upon the realization of the exploitative nature of humans by their fellow likes. This was as a result of the ever-escalating gap between the bourgeoisie and lower class people in society (Wilkinson and Pickett). In a bid to minimize this gap, there arose a quest for wealth harmonization between individuals and countries hence the origin of the appeal for equitable distribution of wealth for the purpose of attaining a uniform economic growth across the globe. Much effort has been invested in this quest although always met with a lot of resistance from the high-class property owners. In some instances, the appeal has minimally succeeded for instance in Russia and Switzerland.

The recent state of equality with regard to wealth distribution and ownership between different parties in the world has raised eyebrows as the gap between the poor and the rich continue to widen across the board. The rich still continue to earn more as the poor continue receiving diminishing wages in the world economic market. This is the state of the matter in most European countries with the exception of France, Japan, and Spain with Israel, Turkey and United States mostly trapped in the vicious circle of an increasing gap between the poor and the rich. On a broader dimension, economic inequality has been majorly experienced in the less developed regions of the world such as the Indian subcontinent as well as in sub-Saharan Africa.

According to UniversityWorldNet, one of the most contributing factors to economic inequality and unequal wealth distribution around the globe is the trend and the nature of taxation in many countries which has not favored development in these regions.

 

"Not answered?"


Get the Answer

write my assignment 30320

ITEC 3280 Web Programming – Final Project

In this project, you will a dynamic, data-driven faculty/staff directory data management web app using HTML5, CSS, JavaScript, PHP, and MySQL database. The application must incorporate best practices and standards for a Web-based information system.

Part I – MySQL Database (20pts)

By using phpMyAdmin in the XAMPP, a MySQL database (named ‘directorydb’) with the following tables. The last step in the Final Project is to Export your database, complete with test/sample data, so that I can use it to test your application. Don’t forget your Export at the end!

1.    Departments

The Departments table contains information about the different departments at the University. 

Department ID (INT, PK, auto-incrementing, deptID)

Name (VARCHAR(50), deptName)

Phone Number (VARCHAR(20), deptPhone)

Email (VARCHAR(50), deptEmail)

Office Location (VARCHAR(100), deptOffice)

Then add some fictitious data to populate the table. Just a few records will do.

2.    Persons

The persons table contains properties of the faculty/staff member in the directory. Faculty/Staff are assigned to one department.

Person ID (INT, PK, auto-incrementing, persID)

Email Address (VARCHAR(50), persEmail)

Password (VARCHAR (50), persPassword)

First Name (VARCHAR(50), persFName)

Last Name (VARCHAR(50), persLName)

Phone Number (VARCHAR(20), persPhone)

Office Location (VARCHAR(100), persOffice)

Department (INT, persDept)

Then add some fictitious data. The persDept field in Persons table will be an integer value from sample department data you added in step one. If you use an integer value that cannot map to the Departments table you may have problems below. Add at least 5 people to your directory.

Part II – Web Development (HTML and CSS) (20 pts)

This web application will consist of four web pages. Each page will need to meet the following requirements:

1.    Research and determine optimized web page layout dimensions based upon current browser usage statistics. The layout dimensions should be used on each page.

2.    Use CSS techniques (no tables or frames) to a page layout template. This template should be used for each page.

3.    The document must conform to HTML 5 and CSS standards. Use the W3C validator! (http://validator.w3.org/) and the CSS validator (http://jigsaw.w3.org/css-validator/) 

4.    Site must be tested for accessibility issues to conform to section 508 and W3C accessibility guidelines using the instructor’s specified tool.

Part III – Web Scripting (PHP and JavaScript) (60 pts)

Create the following pages based on the HTML/CSS template created in part II. Add the following PHP/JavaScript functionality:

5.    login.php

a login page that requires the user to input an email address and password. When the “Login” button is clicked, the input is validated against the values stored in the “persons” table. If the email and password is incorrect, error messages are displayed on the page. If the email and password are correct, the user is redirected to dashboard.php. In addition, the login page contains a ‘register’ link so that a new user can register. If the register link is clicked, the user is redirected to register.php.

6.    dashboard.php

a dashboard.php page that generates 2 lists of the following information using appropriate HTML controls; the report should show all the fields in the database for each entity.

1.    Listing of all the Departments w/ an Edit button/link for each that, when clicked, goes to department.php. Pass the deptID value via querystring for which was clicked for later use.

2.    Listing of all the People in the Directory with their respective department names in plain-text. An SQL INNER JOIN keyword will help you draw the relationship through persDept and deptID.

https://

7.    register.php

a new faculty/staff register page that contains appropriate HTML form controls to allow the user to input the following user data. Each input should have an associated <label> tag.

Email Address – textbox

Password – textbox with type=”password”

First Name – textbox

Last Name – textbox

Phone Number – textbox

Office Location -textbox

Department – dropdown list (<select>). The value of the <option> tag should be the deptID and the user should see the plain-text from deptName. These should be generated via the database and not hard-coded in.

Submit Button

When the submit button is clicked, a javascript function is called to validate the user input. The javascript validation routine should ensure that all fields are required/input, password is at least 8 characters in length, and email should contain the ‘@’ and at least one dot (‘.’). (You may use the following simple email regular expression,

 

"Not answered?"


Get the Answer