Background: The GC owners have questions and need clarification about several contract concepts and issues related to their new business. Specifically, they have questions about:
Generally, contracts for the sale of goods must be in writing, and the writing must be signed by the parties to the agreement, and the parties must be sufficiently identified. GC will be selling goods via the internet, and the owners are wondering whether these electronic contracts are valid and enforceable.
Background Facts You Need To Know: Company X, a company in Illinois, contracted via the internet with Windows Bright, a small window washing business in Missouri to purchase four cases of Shiny Lite window cleaning solution at $200 per case. Company X paid via the internet with a company credit card. The contract stated that the four cases of Shiny Lite would be shipped to Company X’s place of business in Illinois via UPS. Once UPS delivered the Shiny Lite, the contract required Windows Bright to clean Company X's windows.
Winne and Ralph have asked you to prepare examples and explanations of the statute of frauds and electronic contracts.
To respond to the GC's questions and concerns, you must prepare a fact scenario and be prepared to discuss the scenarios in a meeting with TLG and the GC owners.
A. Discuss whether the contract between X and Windows Bright is subject to the Uniform Commercial Code Statute of Frauds.
B. Analyze and explain whether the internet electronic contract between X and Windows Bright satisfies the “writing” requirements for the Statute of Frauds? If so, how and why?
In: Operations Management
Pre-Assignment
hom
Before you start, create a new Eclipse project and create one package in that project. The package should be called “HW3”
Problem 1
Create a class called “Person”. This class should have, at minimum, the following members and methods. I advise you to add others as you see fit.
// Members
firstName (string)
lastName (string)
age (int)
pAddress (Address) // This is composition! I suggest using the Address class we defined earlier!
pDOB (Date) // This is composition! I suggest using the Date class we defined earlier!
// Constructors
Person() // Default with age = 0, names null, and DOB and Address default for those classes
Person(firstName, lastName, age) // Address and DOB will be default for those classes
Person( Person x) // Copy constructor that does a DEEP COPY of the person object.
// Setters
setFirstName(String firstName)
setLastName(String lastName)
SetName(String firstName, String lastName)
setAge(int newAge)
setAddress(String houseNum, String street, String city, String state, String zip)
setDOB (int day, int month, in year)
// Getters
toString() // Print out the name, age, dob, and address (use toString from DOB and Address)
getAge() // return the age
getFirstName() // return the first name
getLastName() // return the last name
getDOB() // Return a COPY OF the date object HINT: Use the date copy constructor!
getAddress() // Return a COPY OF the address object HINT: Use the Address copy constructor!
Problem 2
Test your Person class by creating a new class (in the same “HW3” package and then use the methods to make sure they work properly. I provide no guidance on this since all you need to do is test the methods to make sure they work. Call each and make sure they don’t report errors or fail to execute correctly. Fix any bugs you find. Ask for help if you need it!!!
Problem 3
Create a new class file and call it “Student”. This class will EXTEND on the Person class by adding new data members and methods. Note that students are, in fact, people. This extension makes sense!
// Data members
stuID (String)
major (string)
level (int) // 0 = first-year, 1 = sophomore, 2 = junior, 3 = senior, 4 = post-grad
// Constructors
Student(String id, String lastName, String firstName, String major, int level)
Student( Student x) // Copy constructor that makes a DEEP COPY of Student x object
// Setters
Provide one setter for major, one setter for stuID, and one setter for level. Note that the “level” method should check the input to make sure it makes sense. If something besides a 0, 1, 2, 3, or 4 is provided, the setter should write a warning to screen and refuse to make the change.
// Getters
Provide one getter for major, one getter for stuID, and one getter for level.
// Provide an overrided toString method and use super to also use the inherited toString
toString (String)
// This method should write to screen something like this:
// “Jones, Mary, 21, 544 S Winston St., Kemble, KY 00000, Computer Science, 3”
// Note that you want to use the inherited toString() method here by saying super.toString()
// somewhere in your returned expression.
Problem 4
Create a new class in “HW3” package and call it “testStudent”. Use this class to create multiple student objects and person objects. Test all the methods for accuracy. Make sure you have correct behavior for all of your methods/constructors. Watch out for the copy constructors!!!!
In: Computer Science
In: Mechanical Engineering
6. A 200-kg roller coaster reaches the top of the steepest hill with a speed of 5.80 km/h. It then descends the hill, which is at an angle of 35° and is 41.0 m long. What will its kinetic energy be when it reaches the bottom? Assume µk = 0.18.
In: Physics
In: Economics
The MarsX Space Vehicles Company has been very successful. Due to an increase in demand for its STS’s, the company had to hire thousands of scientists, engineers and staff from all over the world. As we all know, not all countries use the same system of measurements. The U.S., Liberia and Burma use the English system; while the rest of the world uses the metric system. In addition scientists use specific scales for some of their applications. To avoid confusion among team members from different countries, the company has commissioned the development and deployment of conversion applications. Your job is to write a program that interchangeably converts between different temperature scales (Celsius, Fahrenheit and Kelvin).
Your job depends on the success of this application. Therefore, make sure you write clean code and test it thoroughly.
Your program must do the following:
|
Celsius |
Fahrenheit |
Kelvin |
|
-10.00 |
14.00 |
263.15 |
|
0.00 |
32.00 |
273.15 |
|
100.00 |
212.00 |
373.15 |
|
Fahrenheit |
Celsius |
Kelvin |
|
-10.00 |
-23.33 |
249.82 |
|
0.00 |
-17.78 |
255.37 |
|
100.00 |
37.78 |
310.93 |
|
Kelvin |
Fahrenheit |
Celsius |
|
0.00 |
-459.67 |
-273.15 |
|
100.00 |
-279.67 |
-173.15 |
|
1000.00 |
1340.33 |
726.85 |
Needed conversion formulas:
|
From |
To |
Formula |
|
Celsius |
Fahrenheit |
F = C * (9.0/5.0) + 32 |
|
Celsius |
Kelvin |
K = C + 273.15 |
|
Fahrenheit |
Celsius |
C = (F – 32) * (5.0/9.0) |
|
Fahrenheit |
Kelvin |
K = (F + 459.67) * (5.0 /9.0) |
|
Kelvin |
Fahrenheit |
F = K * (9.0/5.0) – 459.67 |
|
Kelvin |
Celsius |
C = K – 273.15 |
Your program must comply with the following constraints:
int getMenuSelection(); /*Displays menu and gets user selection*/
void convertFromCelsius(); /*From Celsius to the other scales*/
void convertFromFahrenheit(); /*From Fahrenheit to the other scales*/
void convertFromKelvin(); /*From Kelvin to the other scales*/
int main()
{
int menuSelection = 0;
do
{
system(“cls”);
menuSelection = getMenuSelection();
switch (menuSelection)
{
case 1: convertFromCelsius();
break;
case 2: convertFromFahrenheit();
break;
case 3: convertFromKelvin ();
break;
case 4: break; /*Do nothing. Exit Condition*/
default: printf(“Please enter a number between 1 and 4 \n”);
system(“pause”);
}
} while (menuSelection != 4);
system(“pause”);
return 0;
}
In: Computer Science
Compare and contrast Ford’s strategy to one of its competitors.
In: Operations Management
|
Decision Alternatice |
S_1 |
S_2 |
S_3 |
S_4 |
|
D_1 |
14 |
9 |
10 |
5 |
|
D_2 |
11 |
10 |
8 |
7 |
|
D_3 |
9 |
10 |
10 |
11 |
|
D_4 |
8 |
10 |
11 |
13 |
In: Math
Scenario: Of The Month Club (OTMC)
Consider a System Request that has been received for the following proposed System:
• Of‐the‐Month Club (OTMC) is an innovative young firm that sells memberships to people who have an interest in certain products.
• People pay membership fees for 1 year and each month receive a product by mail. For example, OTMC has a coffee‐of‐the‐month club that sends members one pound of special coffee each month.
• OTMC currently has six memberships (coffee, wine, beer, cigars, flowers, and computer games), each of which costs a different amount.
• Customers usually belong to just one, but some belong to two or more. • When people join OTMC, the telephone operator records the name, mailing address, phone number, e‐mail address, credit card information, start date, and membership plan(s) (e.g., coffee). A new system would allow members to self-enroll via the web. • Some customers request a double or triple membership (e.g., 2 pounds of coffee, three cases of beer).
• The computer game membership operates a bit differently from the others. In this case, the member must also select the type of game (action, arcade, fantasy/science fiction, educational, etc.) and age level.
• OTMC is planning to greatly expand the number of memberships it offers (e.g., video games, movies, toys, cheese, fruit, vegetables), so the system needs to accommodate this future expansion.
• OTMC is also planning to offer 3‐month and 6‐month memberships.
Part 1:
Based on the scenario and the high-level requirements described above, create a set of use cases for an information system that would support OTMC operations as described above. Use the fully developed template available in Canvas
Recommendation: In building the major use cases, follow the four‐step process: identify the use cases, identify the steps within them, identify the elements within the steps, and confirm the use cases.
Part 2:
Draw a context diagram and a Level 0 DFD (Data Flow Diagram) for the use cases you developed in part 1.
In: Computer Science
Q: Why does a prism separate light into different colors ?
In: Chemistry
In: Accounting
State and Local Government Expenditures
The city of San Alameda provides free health care services for the medically indigent (poor and uninsured). Suppose the city has $2 million to spend on these services and private goods. One unit of health care services (e.g. a physician office visit) costs $110. Thus, the budget equation for San Alameda for these two types of goods is:
$2 Million = $P + $110H,
where H is the units of indigent health care services provided, and P is total expenditure on private goods (P is measured in dollars because we assume each unit of P costs $1).
1. If the San Alameda spends equal amounts on indigent health care services and the private good, how many units of health care services are purchased by the city?
2. Suppose the city of San Alameda receives a 40-percent matching grant from the state for spending on indigent health services. Specifically, the state spends $0.40 on indigent health care services for every $1 spent by the city on these services.
2a) If, after receiving the grant, San Alameda spends $1 million on the private good, how many units of indigent health care services are purchased? (Round to nearest whole number)
2b) Under matching grant, how much of total indigent health care expenditures is paid by the state?
2c) What is the effective price of health care services for the city of San Alameda under the matching grant? (Enter a formula to calculate the effective price.. show work)
3. Suppose, instead of a matching grant, the state provided the city of San Alameda a block grant equal to what the state would have spent with the matching grant (2b. above). Suppose, also, San Alameda uses its budget plus the block grant to spend equal amounts on indigent health care services and the private good.
3a) How many units of indigent health care services are purchased by San Alameda?
4. Using relevant economic concepts, explain why a matching grant generally leads to more consumption of a public good than an unrestricted block grant.
In: Economics
In: Accounting
Analyze why Ford Motor Company has chosen to pursue a foreign subsidiary strategy
In: Operations Management