I Need You To Write An Argumentative Essay Of 5 Pages In Which You Ll Be For Or

i need you to write an argumentative essay of 5 pages in which you ll be for or against death penalty. the stucture should be as follow: a funnel or turn around introduction in which the thesis statement should contain 3 arguments that strenghten your position besides the arguments that you ll mention later. After you should write a paragraph about opposition that will contain 2 arguments of opponents and 3 citations per argument. then in the second paragraph (refutation) you should give 2 arguments that refutes the 2 arguments you mentioned in the previous paragraph with 3citations per argument. after you have to write a paragraph in which you ll defend the 3 arguments you mentioned in the thesis statement( introduction)2 citations per argument. Finally a conclusion. and please i need you to write the works cited in a seperate sheet in which you ll mention sources you used. thank you for your help.

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

I Need You To Write Up A 3 Column Cash Book Of The Transaction That Was Done Wit 1

I need you to Write up a 3 Column Cash Book of the Transaction that was done with our company last month (October2008)October1 Balance brought forward :Cash in Hand : $5000Cash at Bank : $ 90,000October2 Received Cash loan of $25 ,000 from Partners .October3 Bought goods of $156,000October4 Bought Motor Van paying by check $1,600October5 Cash Withdrawn from the bank $25,000October7 Paid Wages in Cash $16,000October8 Cash Drawings $10,000October10 Cash Sales paid directly into the bank $28,000October12 We paid the following Accounts by Check less 10% discount in each case:Marshal : $2,000: Linda : $1,600Theresa : $1,800October13 The following paid us thier Accounts by Check in each case deducting 2.5% DiscountJerry : $980Martins 450October15 Receive a futher Loan of $2,500October16 We paid Brandy his account of $400 by CheckOctober18 Cash Sales $8,000October21 Paid Rent in Cash $1,800October23 Received Commission By Check $7,500October25 The following persons paid us thier Accounts by check in each Case Deducting 5% Discount :Uson $500 ; David : $4,599October26 We paid the following Accounts paid by check in each case deducting 2% DiscountJoseph : $2000 , Tiola : 1,200October28 Paid Insurance 8,900October29 Linda Paid Us a Check for $ 2,500 Having Deducted 200 for cash Discount.———————-

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

I Need Your Help Desperately I Have My Accounting 2 Homework Due Tomorrow Night

I need your help desperately I have my accounting 2 homework due tomorrow night and I understand nothing. Can you please help.Entries for Bonds Payable and Installment Note TransactionsThe following transactions were completed by Hobson Inc., whose fiscal year is the calendar year:2014

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

I Need Your Help Please I Already Got The Answer From You And There Are Some Str

I need your help please, I already got the answer from you and there are some strange typing within the answer and i want you to help me to find out what does that mean, also i need the idea behind the answer because it seems strange to me “if you don’t mind”,here you are the question and the answer i got as well:Show that the following identities hold for regular expressions over any alphabet:1. epsilon + R* R = R* pref(L) = {w: ∃x ∈ Σ* (wx ∈ L)}. Take a word w in Pref(L). By defnition, there exists a in_nite(??) word x over _ (??)such that wx belongs to Adh(L). Then for all n _ 0, wx[0; n ô€€€ (??) 1] belongs to Pref(L). Thus for all n _ 0, there exists a _nite (??) word y(n) 2 __ (??) such that w(n) := wx[0; n ô€€€(??) 1]y(n) belongs to L, and there are in_nitely many such wordsw(n). Conversely, let w be a pre_x of in_nitely many words in L. There exists a letter a(??)2 _ such that wa is a pre_x of in_nitely(??) many words in L. Iterating this argument, there exists a sequence (an)n_0 of letters in _ such that was _ _ _ anbelongs to Pref(L) for all n _ 0. This implies that was a1 _ _ _ belongs to Adh(L). Hence w belongs to Pref(L), which is closed. 2. (R *S* )* = (R + S)* suff(L) = {w: ∃x ∈ Σ* (xw ∈ L)}.Take a word w in Suff(L). By defnition, there exists a in_nite(??) word x over _ such that xw belongs to Adh(L). Then for all n _(??) 0, xw[0; n ô€€€(??) 1] belongs to Suff(L). Hence w belongs to Suff(L), which is closedAnother thing: what is the role of pref(L) in the first one, and also suff(L) in the second one?I would be grateful if you replied me

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

I Need Zipfile To Upload Into Netbean Amusement Park Programming Project Project

I need zipfile to upload into NetBean.

Amusement Park Programming Project Project Outcomes 1. Use the Java selection constructs (if and if else). 2. Use the Java iteration constructs (while, do, for). 3. Use Boolean variables and expressions to control iterations. 4. Use arrays or ArrayList for storing objects. 5. Proper design techniques. Project Requirements Your job is to implement a simple amusement park information system that keeps track of admission tickets and merchandise in the gift shop. The information system consists of three classes including a class to model tickets, a class to model gift shop merchandise, the amusement park, and the amusement park tester. The gift shop supports access to specific merchandise in the park’s gift shop and to purchase the merchandise or to order new merchandise for the gift shop. The UML diagram for each class (except the tester class) is given below. 1) Develop a simple class that models admission tickets. Each admission is described by several instance fields: a. A ticket number as a long integer to identify the unique ticket, b. A ticket category represented as a String to store the category of the ticket (i.e. adult, child, senior), c. A ticket holder represented as a String to store the name of the person who purchased the ticket, d. A date represented as a Date to store the admission date for the ticket, e. A price represented as a double to store the price of the ticket, f. A purchase status represented as a boolean to indicate if the ticket has been purchased (or is reserved). Ticket -number : long -category : String -holder : String -date : Date -price : double © 2014 Laureate Education, Inc. Page 2 of 5 In addition to these fields, the class has the following constructors and methods: a. A parameterized constructor that initializes the attributes of a ticket. b. setPrice(double price) to change the price of a textbook. c. changePurchaseStatus(boolean newStatus) to change the purchase status of the ticket. d. Accessor methods for all instance fields. e. toString() to return a neatly formatted string that contains all the information stored in the instance fields. 2) Develop a simple class that models merchandise available in the gift shop such as t-shirts, sweatshirts, and stuffed animals. The class has several instance fields: a. An ID as a long integer to identify the specific merchandise item, b. A category as a String to store the specific type of merchandise, c. A description as a String to store the description of the merchandise, d. A price represented as a double to store the price of the merchandise, e. An instock as a boolean to indicate if the merchandise is instock or onorder. Valid values for category include “T-Shirt”, “Sweatshirt”, and “Stuffed Animal”, as well as any additional category you choose to support. If invalid values are entered, an error message must be printed and the category instance field must be set to “UNKNOWN”. In addition to these attributes, the class has the following constructors and methods: f. A parameterized constructor that initializes the attributes of a merchandise item. g. setPrice(double price) to change the price of the merchandise. h. setInstock(boolean newStatus) to change the status of the merchandise item. i. Accessor methods for all instance fields. j. toString() to return a neatly formatted string that contains all the information stored in the instance fields. +Ticket (String, String, Date, double, boolean) +setPrice(double) +changePurchaseStatus(boolean) +getNumber() : long +getCategory() : String +getHolder() : String +getDate() : String +getPrice() : double +toString() : String © 2014 Laureate Education, Inc. Page 3 of 5 Merchandise -id : long -category : String -description : String -price : double -inStock : boolean +Merchandise(String, String, String, double, boolean) +setPrice(double) +setInstock(boolean) +getId() : String +getCategory() : String +getDescription() : String +getPrice() : double +getInstock() : boolean +toString() : String 3) Develop class AmusementPark that keeps track of tickets and gift shop inventory. The AmusementPark uses two ArrayLists to store Ticket and Merchandise objects. The AmusementPark provides several methods to add merchandise to the gift shop and to access merchandise. The following UML diagram describes the class, the constructor, and the methods: AmusementPark -tickets : ArrayList -merchandise : ArrayList -name : String +AmusementPark(String) +getName() : String +getTicketDates() : ArrayList +getTickets(Date date) : int +getTicket(long id) : Ticket +getMerchandise() : ArrayList +getMerchandise(String category) : ArrayList +getMerchandise(long id) : Merchandise +addTicket(Ticket) +addMerchandise(Merchandise) +buyMerchandise(String id) +buyTicket(String id) a. The class has three instance fields: a. name, the name of the bookstore b. tickets, an ArrayList storing Ticket objects © 2014 Laureate Education, Inc. Page 4 of 5 c. merchandise, an ArrayList storing Merchandise objects b. getName() returns the name of the bookstore. c. getTicketDates() returns an ArrayList of all the dates for which tickets are still available. If there are no tickets available, an empty list is returned. d. getTickets (Date date) returns an integer indicating the number of tickets available for the specified date. e. getTicket(long id) returns the Ticket that matches the specified id. If there is no Ticket matching the given id, null is returned. f. getMerchandise()returns an ArrayList of all the inventory (in-stock and ordered). This method must create a separate copy of the ArrayList before it returns the list. If there are no merchandise items in the AmusementPark, an empty list is returned. g. getMerchandise(String category) returns a list of Merchandise objects whose category matches the specified category. For example, if called with “T-shirt” the method returns all Merchandise objects with the category “T-shirt” as a new list. This method must create a new copy of an ArrayList that stores all the matched Merchandise objects. If no items in the AmusementPark match the given name, an empty list is returned. h. getMerchandise(long id) returns the merchandise item that matches the specified id. If there is no merchandise item matching the given id, null is returned. i. addTicket(Ticket) adds a new Ticket to the inventory of the AmusementPark. j. addMerchandise(Merchandise) adds a new Merchandise to the inventory of the AmusementPark. k. buyMerchandise(String id) removes a Merchandise object from the list of merchandise of the AmusementPark. If the id does not match any Merchandise object in the list, an exception is thrown. l. buyTicket(String id) removes a Ticket object from the list of ticket items of the AmusementPark. If the id does not match any Ticket object in the list, an exception is thrown. 4) Design a tester class called AmusementParkTester. The tester class has a main() method and tests the functionality of the class AmusementPark as follows: a. Create AmusementPark and name it “Walden Amusement Park”. b. Create a minimum of three Ticket objects and add them to the bookstore. © 2014 Laureate Education, Inc. Page 5 of 5 c. Create Apparel objects, at least two of each category, and add them to the AmusementPark. d. Set up a loop to: i. Display a short menu that allows a user to perform different actions in the gift shop such as looking up tickets or merchandise or purchasing items. Use all of the accessor methods in the AmusementPark to access specific items. Use the given methods to make purchases. ii. Prompt the user for a specific action. iii. Depending on the specific action prompt the user for additional input such as the id of a ticket or merchandise category, etc. You might want to use static methods in main() to handle each menu item separately. iv. Perform the action and display results such as the list of merchandise that the user has requested. Use the toString() method to display AmusementPark items on the screen. v. Prompt the user for continued access to the AmusementPark or to end the program. Your program should handle input errors gracefully. For example, if a particular ticket is searched and not found, the program should display a message such as “Selected ticket not found.” Feel free to experiment with the tester program in order to develop a more useful program. Implementation Notes: 1) All accessor methods in AmusementPark must create a new ArrayList to copy objects into the new list. This requires loops to access objects from the corresponding instance fields and adding them to the new ArrayList. 2) Proper error handling is essential for this project. 3) Javadoc must be used to document AmusementPark, Ticket, and Merchandise. Submission Requirements: 1. Your project submission should have four files for this assignment: a. Ticket.java – The Ticket class, b. Merchandise.java – The Merchandise class, c. AmusementPark.java – The AmusementPark class, d. AmusementParkTester.java – A driver program for testing your AmusementPark class. 2. Remember to compile and run your program one 

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

I Needed 2 To 3 Pages On Check Out The Yellow Part Of The Sample Paper That I Ha

i needed 2 to 3 pages on 

check out the yellow part of the sample paper that i have attached 

I have attached the previous assignment 

I have attached the guideline for this paper.

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

I Needed Help On Constructing The Following Codes Into Ten Xml Documents From Sq

I needed help on constructing the following codes into ten XML documents from SQL. I know how to make up information, however, I am having trouble understanding SQL and how to set it up.

Please let me know what to do here at your earliest convenience.

Thank you.

XML is a technology concerned with the description and structuring of data. XML document describes any information with flexibility structure. For example, the following XML document describes a note to Tove from Jani with heading and content of the note.

<note>  <to>Tove</to>  <from>Jani</from>  <heading>Reminder</heading>  <body>Don’t forget me this weekend!</body></note>

Your assignment is to construct the following XML documents to use in police reports describing user, review, missing, aggression, medical, sanitary, suspicious, product, condition, and status information. The details of the reports are listed below.

User is a person who files a report. This XML document describes the person profile.

user(

     userID SERIAL,

     username varchar(255),

     password varchar(255),

     firstname varchar(255),

     middlename varchar(255),

lastname varchar(255),

     email varchar(255),

dob date,

     gender varchar(10),

profile_photo bytea,

home_phone varchar(50),

     cell_phone varchar(50),

     created_date timestamp default current_timestamp

);

Review is a review of a user. This XML document describes a review of a person who files a report for credibility of the report.

review(

     reviewID SERIAL,

     reviewDescription text,

     star double precision,

     userID serial references users(userID),

     created_date timestamp default current_timestamp

);

Missing is a description of missing object. This XML document describes a description of missing object.

missing (

    missingID SERIAL,

    reporttype varchar (255) NOT NULL,

    reportdescription varchar (255),

    contact varchar (255),

    reward varchar (255),

    location varchar (255),

    photo bytea,

    statusID serial references status(statusID),

    userID serial references users(userID),

    created_date timestamp default current_timestamp

);

Aggression is a description of the violence. This XML document describes a description of the violence.

aggression (

    aggressionID SERIAL,

    reporttype varchar (255) NOT NULL,

    reportdescription varchar (255),

    location varchar (255),

    photo bytea,

    statusID serial references status(statusID),

    userID serial references users(userID),

    created_date timestamp default current_timestamp

);

Medical is a description of the medical need. This XML document describes description of the medical need.

medical(

     medicalID SERIAL,

     reporttype varchar(255) NOT NULL,

     reportdescription varchar(255),

     location varchar(255),

     photo bytea,

      statusID serial references status(statusID),

     userID serial references users(userID),

     created_date timestamp default current_timestamp

);

Sanitary is a description of how dirty the scene is. This XML document describes a description of how dirty the scene is.

sanitary(

     sanitaryID SERIAL,

     reporttype varchar(255) NOT NULL,

     reportdescription varchar(255),

     location varchar(255),

     photo bytea,

      statusID serial references status(statusID),

     userID serial references users(userID),

     created_date timestamp default current_timestamp

);

Suspicion is a description of suspicious objects or activities. This XML document describes a description of suspicious objects or activities.

suspicion(

     suspicionID SERIAL,

     reporttype varchar(255) NOT NULL,

     reportdescription varchar(255),

     location varchar(255),

     photo bytea,

     statusID serial references status(statusID),

     userID serial references users(userID),

     created_date timestamp default current_timestamp

);

Product is a description of reported products or items. This XML document describes a description of reported products or items.

product (

    productID SERIAL,

    productName varchar (255) NOT NULL,

    productDescription varchar (255),

    contact varchar (255),

    price varchar (255),

    location varchar (255),

    photo bytea,

    statusID serial references status(statusID),

    conditionID serial references condition(conditionID),

    userID serial references users(userID),

    created_date timestamp default current_timestamp

);

Condition describes the condition of reported products or item. This XML document describes the condition of reported products or item.

condition (

     conditionID SERIAL,

     conditionDescription varchar (255)

);

Condition describes the status of each report. This XML document describes the status of each report.

CREATE TABLE status (

     statusID SERIAL,

     statusDescription varchar (255)

);

After constructing the XML documents, you will submit the attachments of each xml document

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

I Needed Help On Constructing These Codes Into Ten Xml Documents From Sql I Know

Don’t forget me this weekend!

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

I Needed Help On Constructing This Code Into Ten Xml From Sql I Know How To Make

Don’t forget me this weekend!

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

I Needto Conduct Interviews With Real People Who Could Be Potential Customers Of

I need help with this Homework assignment: I need to conduct interviews with real people, who could be potential customers of my Daycare and to gather their inputs.

I need help in developing a questionnaire to use in the interviews that both establish the respondent’s qualifications as a potential customer and then explores aspects of my childcare facility’s business model to discover our wants and needs. 

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW