Questions
Mike is a homeowner. Jill runs a snowplowing business. Mike asks Jill to provide an estimate...

Mike is a homeowner. Jill runs a snowplowing business. Mike asks Jill to provide an estimate for

how much she would charge to snowplow Mike’s driveway. After Jill inspects Mike’s driveway,

the parties have the following email conversation on September 1, 2016:

Jill: “$50 each time I snowplow your driveway.”

Mike: “OK, sounds good. Please do so.”

Jill regularly snowplows Joe’s driveway during the 2016-17 season. In May 2017, Jill sends a bill

to Mike for all visits she made in the 2016-17 season, and Mike promptly pays that bill in full

without any other communication taking place between Jill and Mike.

• Jill regularly snowplows Mike’s driveway during the 2017-18 season and sends a bill for

those visits in May 2018. What are the rights and responsibilities of the parties under

contract law?

• Instead, assume that Jill does not come during the first major snowfall in 2017. Does Mike

have any contractual rights against

JILL?

  Explain fully.

• Ignore the previous bullets. Instead, assume Mike promptly pays the 2016-17 bill in full

without any other communication. On September 1, 2017, Jill raises her prices 20% for all

of her customers, and she notifies Mike of this fact. He does not respond. Jill regularly

snowplows Mike’s driveway during the 2017-18 season and in May 2018 sends Mike a bill

for those visits reflecting her increased prices. What are the right and responsibilities of

the parties under contract law.

In: Operations Management

Create financial statements (FS) from the Adjusted Trial Balance (ATB) 1. Verbally name the FS’s created...

Create financial statements (FS) from the Adjusted Trial Balance (ATB)

1. Verbally name the FS’s created from the ATB

2. Verbally explain how the each FS’s are created from the ATB

3. For each of the FS’s,

a. Verbally list the major sections

b. Verbally name the accounts in each section

In: Accounting

A. State three functions of the bacterial cytoskeleton. B. Name and state the function of three...

A. State three functions of the bacterial cytoskeleton.

B. Name and state the function of three organelles that are unique to bacteria. Now name three organelles unique to eukaryotic cells.

C. Describe the special organization of organelles and cytoskeleton that is only found in eukaryotic cells. How does this special organization affect eukaryotic cell physiology?

In: Biology

1. How would you effectively limit the use of social media? Name 4 effective ways. 2....

1. How would you effectively limit the use of social media? Name 4 effective ways.

2. Name four important ways social media may be used.

3. List four dangers of using social media.

4. What is your own comfort level with computers and social media?

In: Nursing

java program: Input and output the following details. Your program can only receive the correct input....

java program: Input and output the following details. Your program can only receive the correct input. (For example: a notification will be given if you not enter Char data type for Name)
Name: Ali bin Ahmad
Occupation: Technician
Age: 30
Hometown: Negeri Sembilan
Years of Service: 12
Gender: Male

In: Computer Science

DBMS Create/Insert/Update SQL I need the create, insert, and update SQL statement for this table: Customer...

DBMS Create/Insert/Update SQL

I need the create, insert, and update SQL statement for this table:

Customer
PK Customer ID Text
Phone Number int
name text
address ID int
email text
FK vendor ID int

Vendor is the name of the table the FK comes from.

In: Computer Science

Language Python with functions and one main function Write a program that converts a color image...

Language Python

with functions and one main function

Write a program that converts a color image to grayscale. The user supplies the name of a file containing a GIF or PPM image, and the program loads the image and displays the file. At the click of the mouse, the program converts the image to grayscale. The user is then prompted for a file name to store the grayscale image in.

In: Computer Science

create a document in microsoft word or excel document which has the following: Fictitious names and...

create a document in microsoft word or excel document which has the following:

Fictitious names and addresses of 10 folks including name, address and phone number. Recreate the bike table, which includes bike name, part number and hourly rate

Please limit your submission to no more than 2 pages.

In: Economics

draw vsepr and valence bond picture for C2H2? label the bonds. for each sigma bond name...

draw vsepr and valence bond picture for C2H2? label the bonds. for each sigma bond name the two orbitals that overlap to form it? for each pi bond name the two orbitals that overlap to form it. why are to pi ponds perpindicular to each other. why are quadruple bonds unlikely? Please label thank you.

In: Chemistry

Description In C# Further enhance the registration program for Continental University. Add more attributes about a...

Description

In C#

Further enhance the registration program for Continental University.

  • Add more attributes about a student, including gender, residency (in-state or out-state), and entrance date.
  • Allow the user to repeatedly enter student information until the user wants to quit.
  • When the user enters an invalid value, ask the user to repeatedly enter the value until a valid value has been entered. Gender must be ‘M’ or ‘F’. Residency must be ‘I’ or ‘O’.
  • Display a short summary after each reservation has been entered. Display a title (Mr. or Ms.) depending on the gender. Capitalize the first name and last name.

Existing Code:

class Program {
  static void Main() {
      Student s = new Student();
    Console.WriteLine("Welcome to the Continental University Registration System!");
    Console.WriteLine("Enter data about a student");
    Console.Write("First Name: ");
    string firstName=Console.ReadLine();
    Console.Write("Last Name: ");
    string lastName=Console.ReadLine();
    
    Console.Write("Credits Taking: ");
    int credits=Convert.ToInt32(Console.ReadLine());
    s.firstName=firstName;
    s.lastName=lastName;
    s.credits=credits;
    Console.WriteLine(s);
    
  }
}
class Student  {  
                public string firstName;
                public string lastName;
                public int credits;
                   public override string ToString(){
                       
                    return lastName+", "+firstName+" Credits Taking: "+credits;
                   }
                        
} 

Sample Dialog

Welcome to the Continental University Registration System!

Enter data about a student

First Name: Mary

Last Name: Smith

Gender (M/F): f

Residency (I/O): i

Credits Taking: 18

Entrance Date: 12/13/2018

Mr. Smith, Mary Credits Taking: 18 Entrance: 12/13/2018 In-state

Do you want to quit (Y/N)?: n

Enter data about a student

First Name: LERNIE

Last Name: BLAKE

Gender (M/F): X

Gender (M/F): M

Residency (I/O): X

Residency (I/O): O

Credits Taking: 12

Entrance Date: 10/01/2018

Mr. Blake, Lernie Credits Taking: 12 Entrance: 10/01/2018 Out-state

Do you want to quit (Y/N)?: Y

Thank you for using the Registration System!

In: Computer Science