Vacation tours to Europe invariably package visits to disparate regions: cities, mountains, and the seaside. Bundling, a type of second degree price discrimination, is most profitable when:

Vacation tours to Europe invariably package visits to disparate regions: cities, mountains, and the seaside. Bundling, a type of second degree price discrimination, is most profitable when:
Answer

the preference rankings of vacationers travelling together are negatively correlated.

a preference for cities is always higher than preferences for mountain vistas.

preference rankings of vacationers travelling together are positively correlated.

preference for the seaside is always higher than preferences for city excursions.

no one wants to take a European vacation package to cities, mountains, and the seaside.

Use the order calculator below and get started! Contact our live support team for any assistance or inquiry.

[order_calculator]

Connect to the iLab here.

Connect to the iLab here.

Lab 3 of 7: Create and Use a Web Service

L A B O V E R V I E W

Scenario/Summary
In this iLab, your will connect to MS Access database to lookup an employee address by Last Name. To do such, we will be creating a Web Service to call in our application and implement the Find feature.
Deliverables
The 7 tasks you will need to do for this week’s lab are:
Create a Web Services class (5 points)
Add dataset to your project and create a function for the Web Services (10 points)
Add controls to the form (8 points, 2 points each)
Add the function in the web form to call the service method ( 15 points)
Finalize the iLab
Take a screen capture of your final output (2 points)
ZIP and submit the entire web project.

L A B S T E P S

STEP 1: Create a Web Service class

Create a Web Service called “clsWebServices”.
Right click on your lab location, choose “add new item” then Web Service.
STEP 2: Create a function for the Web Service

Add a dsAddress dataset to your project as shown below.
Copy the MS Access database, AddressBook.mdb, to your application folder. You can find the database in Doc Sharing. Note that you can have the database at any location on your computer, but your code should be adjusted accordingly. From the Solution Explorer, right click on the App_Code folder, and select “Add New Item” menu option. The Dialog below shows. Select DataSet and type the dsAddress as the name of the dataset.

Make sure to set the Data Source to “Microsoft Access Database File” as shown below

Provide the “Select” statement whose result will be used to populate the DataSet as shown below.

After you are done adding the “dsAddress” Dataset object, in the clsWebService class, create a function, web method, called “FindAddress” which accepts the following parameters: LastName and Path.
Double-click the blank space in clsWebServices to get to the code designer. Add the following code. Type comments for each step being performed.

‘ Add your comments here
Imports System.Data
Imports System.Data.OleDb

_
Public Function FindAddress(ByVal LastName As String, ByVal Path As String)As dsAddress
‘ Add your comments here
Dim DS As dsAddress
Dim sqlConn As OleDbConnection
Dim sqlDA As OleDbDataAdapter
‘ Add your comments here
sqlConn = New OleDbConnection(“PROVIDER=Microsoft.Jet.OLEDB.4.0;” & _
“Data Source=” & Path & “”)
‘ Add your comments here
sqlDA = New OleDbDataAdapter(“select * from tblAddressBook where LastName like ‘” & LastName & “‘”, sqlConn)
‘ Add your comments here
DS = New dsAddress
‘ Add your comments here
sqlDA.Fill(DS.tblAddressBook)
‘ Add your comments here
Return DS
End Function
STEP 3: Add controls to the form

Add to frmAddressBook one Label, one TextBox, and one Button having the following properties:

Object
Property
Value to set
Label1
Text
Find Last Name:
TextBox1
[ID]
txtFindLastName
Button1
[ID]
btnFindLastName
Button1
Text
Find Last Name:
Text2
[ID]
txtFirstName
Text3
[ID]
txtLastName
Text4
[ID]
txtEmail
Text5
[ID]
txtPhoneNumber
Label2
Text
First Name
Label3
Text
Last Name
Label4
Text
Email
Label5
Text
Phone Number
Label6
[ID]
lblMessage
The web form layout looks similar to what is shown below

STEP 4: Add the function in the web form to call the service method

Modify the btnFindByLastName click() to call the Web Service FindAddress ().
Double-click btnFindByLastName to get to the code designer. Add the following code:
Private Sub btnFindLastName_Click(ByVal sender As System.Object, ByVal e AsSystem.EventArgs) Handles btnFindLastName.Click

Try
Dim serviceObj As New clsWebServices
‘ Add your comments here
Dim dsFindLastName As New dsAddress
Dim TempPath As New String
TempPath = Server.MapPath(“AddressBook.mdb”) ‘Add your commentes here
‘ Add your comments here
dsFindLastName = serviceObj.FindAddress(Me.txtFindLastName.Text, TempPath)
‘Add your comments here
If dsFindLastName.tblAddressBook.Rows.Count > 0 Then
‘ Add your comments here
Me.txtFirstName.Text = dsFindLastName.tblAddressBook(0).FirstName.ToString
Me.txtLastName.Text = dsFindLastName.tblAddressBook(0).LastName.ToString
Me.txtEmail.Text = dsFindLastName.tblAddressBook(0).Email.ToString
Me.txtPhoneNumber.Text = dsFindLastName.tblAddressBook(0).PhoneNumber.ToString
Else
lblMessage.Text = “No records were found!!”
End If

Catch ex As Exception
‘ Add your comments here
lblMessage.Text = ex.Message
End Try
End Sub
Remember to add comments for each step being performed.
STEP 5: Finalize the iLab

Save your work! Test it! Make changes as appropriate until it works.
Note
Throughout the course, you will see small images. Click these small images to bring up larger versions, then click the larger versions to return to the course.

STEP 6: Take a screen capture of your final output

After you complete your work for t

WEB/460A WEB460A WEB-460A WEB460 A WEB 460 A
WEB/460B WEB460B WEB-460B WEB460 B WEB 460 B
WEB/460C WEB460C WEB-460C WEB460 C WEB 460 C
WEB/460D WEB460D WEB-460D WEB460 D WEB 460 D
Lab3 Lab 3 Week 3 Week3 Week3 Lab iLab3 of 7
–iqrajavaid

Use the order calculator below and get started! Contact our live support team for any assistance or inquiry.

[order_calculator]

Write the SQL statement you would use to find out all the tables that you have access to.

1. Write the SQL statement you would use to find out all the tables that you have access to.

SELECT table_name FROM user_tables;

2. Write the command to list all the columns and rows of the l_foods table.

3. Write the command to list all the columns and rows of the l_lunches table.

4. Write the command to list all the employees hired in 2003 and 2004. Sort the rows by the hire_date column in descending order. Show columns last_name, hire_date, phone_number, and dept_code in your results. Also, change the name of dept_code column to department_code.

5. List all the distinct employee_id values in the l_lunches table. Sort these ids in ascending order.

6. List all distinct combinations of supplier_id and product_code from the l_lunch_items table. Exclude the data for lunch 17. Sort the result on both columns in ascending order.

7. Using the l_foods table, place the columns in this order: menu_item, description, price_increase, price, supplier_id, product_code. Sort the rows by product_code in ascending order and supplier_id in descending order.

8. From the l_foods table, get the price of a grilled steak. Show price and description in your results.

9. From the l_employees table, get the hire date and phone number for Paula Jacobs and Fred Campbell.

10. List the foods costing less than $2.00 that don’t have a price increase scheduled. Show the description and price of each food. Sort the rows by the description of the food.

11. List the all the foods supplied by all the suppliers except ASP and JRV.

12. List all the employees who have a credit limit of more than Jim Kern.

Use the order calculator below and get started! Contact our live support team for any assistance or inquiry.

[order_calculator]

Write a 900- to 1,200-word paper in which you identify abused substances and their various effects. Include the following:

Write a 900- to 1,200-word paper in which you identify abused substances and their various effects. Include the following:

· Explain the psychology and physiology of addiction.
· Identify specific drug substances covering the following categories: stimulants, depressants, narcotics, hallucinogens, and cannabis.
· Discuss the addiction potential of various abused substances, what effects they have, and withdrawal symptoms.
· Discuss how prescription drugs can be abused and lead to addiction.

Use at least three outside sources, such as articles from the University Library.
Format your paper consistent with APA guidelines.

Use the order calculator below and get started! Contact our live support team for any assistance or inquiry.

[order_calculator]

Assignment 2: Current Events and U.S. Diplomacy.

Assignment 2: Current Events and U.S. Diplomacy

This paper will be a revised and expanded version of the first research paper. Based on your instructor’s feedback, you will first revise the first paper.

Write three-to-four (3-4) new pages that address the following:
Define presidential doctrine and summarize the regional or global events during the Cold War leading up to the formation of the presidential doctrine you wrote about in Assignment 1. – Richard Milhous Nixon
Select one country you wrote about in Assignment 1 and describe the Cold War relationship that existed between the country you selected and the U.S. before the presidential doctrine was announced.
Describe the relationship that currently exists between the U.S. and the country you selected in section (2) above.
Describe the effect that the presidential doctrine has had on regional or global affairs since it was announced during the Cold War.
Assess whether or not the presidential doctrine you wrote about in Assignment 1 doctrine had had the intended effect of altering the behavior of the country you selected in section (2) above since the doctrine was first announced.
Use at least four (4) quality academic resources in this assignment. Note: Wikipedia and other Websites do not qualify as academic resources.

To help you understand this assignment further, the following description and examples may be useful.
Step 1: Define doctrine and identify why a president would want to announce one.
A doctrine is an ideological platform that a president uses to advance a policy towards a country or region in order to accomplish foreign policy goals for the United States, so you will need to expand on this theme.

Refer back to Assignment 1, and build on whatever doctrine you wrote about then. Say, for example, you selected the Truman Doctrine. Therefore, this is the only thing you will write about in Assignment 2 step 1.

Step 2: Select one country you wrote about in Assignment 1 and describe the Cold War relationship that existed between it and the U.S.
Before the presidential doctrine was announced. In the case of Truman, you would pick either the Soviet Union, Greece, or Iran, since all three were affected by his doctrine. If you are writing about the Eisenhower Doctrine, you would choose Lebanon or Egypt; if you wrote about the Kennedy Doctrine, you would have write about Cuba or Vietnam; if your wrote about the Nixon Doctrine, you would choose either Vietnam, Saudi Arabia or Iran; if you chose Carter, you would select either Iran or Afghanistan; and if you wrote about the Reagan Doctrine, you would select Nicaragua, Angola, Russia or Afghanistan (although there were several others).

Step 3: Describe what effect the presidential doctrine you chose has had on regional or global affairs since it was announced during the Cold War.
That is, how did the doctrine change the status quo regionally or globally after it was announced by the U.S.? What happened in Western Europe after the Truman Doctrine was announced? What happened in the Middle East after the Eisenhower Doctrine was announced? What happened with Cuba or Vietnam after Kennedy offered up his doctrine of flexible response? What happened in Southeast Asia or the Persian Gulf after the Nixon Doctrine went in effect? What happened in the Middle East after the Carter Doctrine was announced? What happened in Central America or Africa or the Middle East after Reagan announced his doctrine?

Step 4: Refer back to the country you selected in step two and describe the relationship that currently exists between the U.S. and that country.
How has the relationship changed between the U.S. and that country since the doctrine was announced?

Step 5: Evaluate whether or not the presidential doctrine had had the intended effect of altering the behavior of the one country you selected in section (2) above since the doctrine was first announced.

Your assignment must:
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:
Identify the cultural, economic, and political context of information resources, and interpret information in light of that context.
Use technology and information resources to research issues in international problems.
Write clearly and concisely about international problems using proper writing mechanics.

Grading for this assignment will be based on answer quality, logic/organization of the paper, and language and writing skills, using the following rubric

Use the order calculator below and get started! Contact our live support team for any assistance or inquiry.

[order_calculator]

Intracompany comparisons of the same financial statement items can often detect changes in financial relationships and significant trends.

Intracompany comparisons of the same financial statement items can often detect changes in financial relationships and significant trends.
TRUE/FALSE
Analysis of financial statements is enhanced with the use of comparative data.

Comparisons of company data with industry averages can provide some insight into the company’s relative position in the industry.

In horizontal analysis, if an item has a negative amount in the base year, and a positive amount in the following year, no percentage change for that item can be computed

Vertical analysis is useful in making comparisons of companies of different sizes.Mn

Use the order calculator below and get started! Contact our live support team for any assistance or inquiry.

[order_calculator]

Capstone Discussion Question Review the readings for the week, and then watch the video clips associated with the question

Capstone Discussion Question Review the readings for the week, and then watch the video clips associated with the question. Using the information in the text, the videos, and your life experiences, answer the Capstone Discussion Question. • How has the information presented in this course influenced your thoughts about your career path? What insights or reactions do you have concerning what you now know about the field of business? o Young Entrepreneurs Find Good Business on Internet o Minnesota Teen Opens Market, Saves Town o Getting a Foot in the Employment Door o Career Change: Creating Your Dream Job

Use the order calculator below and get started! Contact our live support team for any assistance or inquiry.

[order_calculator]

Mat116 week7 DQ#1

Mat116 week7 DQ#1
How many solution sets do systems of linear inequalities have? Do solutions to systems of linear inequalities need to satisfy both inequalities? In what case might they not?

Use the order calculator below and get started! Contact our live support team for any assistance or inquiry.

[order_calculator]

Select an organization with which your Learning Team is familiar. Prepare a 1,050- to 1,400-word paper in which you address the following as it relates to that organization:

Select an organization with which your Learning Team is familiar. Prepare a 1,050- to 1,400-word paper in which you address the following as it relates to that organization:

Identify four types of control mechanisms (ways controls are applied) used in your selected organization.
Compare and contrast these control mechanisms.
Determine the effectiveness of these control mechanisms.
Examine the positive and negative reactions to the use of these controls.
Explain how these controls affect the four functions of management.

Format your paper consistent with APA guidelines.
Cite two (2) references.
Submit your Paper.

Use the order calculator below and get started! Contact our live support team for any assistance or inquiry.

[order_calculator]