Firms supply the goods and services that we as households demand. So what are people looking to buy? Why do they select one product over another?Can free markets really allocate scarce resources in such an uncontrolled and often chaotic marketplace?Search the news for stories related to the supply and/or the demand for a product that you find interesting.Perhaps something that you recently purchased or are considering for a future purchase. What’s in the news and how can you use economic principles to become a better shopper? Do not copy and paste directly from the article except for small quotes that help explain your summary. Use quotations marks for anything that is directly from the news story. Include the EXACT URL that can be clicked to directly retrieve the news story you selected at the end of your paper for citation purposes. NOTE: This is NOT the link to the news organization. The URL must retrieve the actual news story.Be sure to reference all sources using APA format.

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

Firms sometimes use the threat of a bankruptcy filing to force creditors to renegotiate terms. Critics argue that in such cases the firm is using bankruptcy laws “as a sword rather than a shield.” Is this an ethical tactic?

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

firms often involve themselves in projects that do not result directly in profit, for example by sponsorship of sporting events of the opera or other entertainment. do these projects contradict the goal of maximization of shareholder wealth? why or why not?

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

Firms like Papa John’s, Domino’s, and Pizza Hut sell pizza and other products that are differentiated in nature. While numerous pizza chains exist in most locations, the differentiated nature of these firms’ products permits them to charge prices above marginal cost. Given these observations, is the pizza industry most likely a monopoly, perfectly competitive, monopolistically competitive, or an oligopoly industry? Use the causal view of structure, conduct, and performance to explain the role of differentiation in the market for pizza. Then apply the feedback critique to the role of differentiation in the industry.

Firms like Papa John’s, Domino’s, and Pizza Hut sell pizza and other products that are differentiated in nature. While numerous pizza chains exist in most locations, the differentiated nature of…

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

Please help me with these couple multiple choice.  It would be very helpful for my overall assignment.  Please do not ask me to send you an email outside of Course Hero or try to get me to use a service outside of Course Hero.  This has been happening more and more 🙁  Thank you in advance for your help!  Alex

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

Firms charging an identical price will always be the case in perfect competition since any firm that charges more than the going market price will sell nothing. In price-setting among oligopolists there is usually a bit of dispersion among the prices.

So if there is some dispersion of prices and service among a few oligopolists, how much is this price dispersion and what are the differences in service? Take a look at the companies providing domestic airline services in Canada and use this to describe the differences.

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

First are the instructions and then will be the Lab Shell. Thanks

Add three instance variables to your class RightTriangle from lab 5. The first two are of type int and are called xLoc and yLoc and the third is of type int called ID. Also add a static variable of type double called scaleFactor. This should be initialized to a default value of 1. Update the constructor to set the three new instance variables and add appropriate get and set methods for the four new variables. All set methods including those from lab 5 should verify that no invalid data is set. Also define a new method ScaleShape() which multiplies the base and height instance variables by the scaleFactor and then updates the hypotenuse.

An application needs written which shows the user the following menu and implement all options. The program should continue to run and process requests until the user selects 9. The program should double-check that the user really wants to exit. You may use a limit of 10 possible triangles to simplify implementation. The program should assign new ids to assure their uniqueness, the user should not enter an id for a new object in option 1. All input must be validated and appropriate feedback given for invalid input. Option 4 should display all info about the object. This is 8 method calls.

             1 – Enter a new right triangle

             2 – Delete a right triangle

             3 – Delete all right triangles

             4 – Display all right triangles

             5 – Move a triangle

             6 – Resize a triangle

             7 – Enter a scale factor

             8 – Scale all triangles

             9 – Exit program

import java.util.Scanner;

public class Lab7Shell

{

public static void main(String[] args)

{

// DATA

RightTriangle [] triangles = new RightTriangle[10];

int nextIDNumber = 1;

boolean exit = false;

int selection=0;

Scanner input = new Scanner(System.in);

int id=0;

int x=0, y=0;

double base=0, height=0;

boolean found = false;

// ALGORITHM

// loop until user exits

do

{

// display options

// get selection (validate)

// switch on selection

switch(selection)

{

case 1:

// get size from user (two variables only,

calculate the hypotenuse)

// get location from user (two variables, X,Y

location)

// set found to false

// loop through array

for (int i = 0; i < triangles.length; i++)

{

// if this is an empty spot

if (triangles[i] == null)

{

// create new RightTriangle

object and assign to current array element

triangles[i] = new

RightTriangle(nextIDNumber++, base, height, x, y);

// set found to true

found = true;

// break out of loop

break;

}

}

// if not found, give error message

// break out of switch statement

break;

case 2:

// get id number to delete

// set found to false

// loop through array

for (int i = 0; i < triangles.length; i++)

{

// if this is a valid object and the

correct object

if (triangles[i] != null &&

triangles[i].GetID() == id)

{

// delete object

triangles[i] = null;

// set found to true

// break out of loop

}

}

// if not found, give error message

// break out of switch statement

case 3:

// loop through array

// if this is a valid object

// delete object

// break out of switch statement

break;

case 4:

// display header

// loop through array

// if this is a valid object

// display all info about

object. This should call and display all 8 get methods that return

information.

// break out of switch statement

break;

case 5:

// get id number to move

// get location from user (two variables new

X,Y location)

// set found to false

// loop through array

// if this is a valid object and the

correct object

// call two set methods

// set found to true

// break out of loop

// if not found, give error message

// break out of switch statement

break;

case 6:

// get id number to resize

// get size from user (two variables)

// set found to false

// loop through array

// if this is a valid object and the

correct object

// call SetBaseAndHeight

// set found to true

// break out of loop

// if not found, give error message

// break out of switch statement

case 7:

// get new scale factor (validate)

// call SetScaleFactor to set the new scale

factor

// break out of switch statement

break;

case 8:

// loop through array

// if this is a valid object

// call ScaleShape method on

object

// break out of switch statement

break;

case 9:

// confirm user wants to exit

// set variable to break out of loop

// break out of switch statement

break;

}

// End loop

} while (!exit);

}

}

class RightTriangle

{

// with three instance variables of type double called base, height,

and hypotenuse.

private double base;

private double height;

private double hypotenuse;

// add three new instance variables

// add static scaleShape

// update constructor to take the new instance variables

public RightTriangle(int i, double b, double h, int x, int y)

{

SetBaseAndHeight(b, h);

// set the other instance variables

}

// a single set method which takes new values for base and height

and calculates the hypotenuse,

public void SetBaseAndHeight(double b , double h)

{

if (b > 0.0 && h > 0.0)

{

base = b;

height = h;

hypotenuse = Math.sqrt(base * base + height *

height);

}

}

// add set methods for the three new instance variables

// get methods for all three instance variables

public double GetBase()

{

return base;

}

public double GetHeight()

{

return height;

}

public double GetHypotenuse()

{

return hypotenuse;

}

// add get methods for the three new instance variables

// and methods getArea and getPerimeter.

public double GetArea()

{

return 0.5 * base * height;

}

public double GetPerimeter()

{

return base + height + hypotenuse;

}

// add ScaleShape method

}

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

First Amendment: Religion and Education

You have a standard practice of displaying all student work in your classroom. Recently, you assigned students to write any essay and submit a pictorial depiction on the person they considered to be their hero. One of your students submitted an essay on Jesus and a drawing of the Last Supper.

In a 500-750-essay, discuss any legal issues regarding the grading of your student’s essay and whether you could display the student’s work. How does the First Amendment apply to this situation?

Include at least five references in your essay. At least three of the five references should cite U.S. Supreme Court cases.

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

First go through the attachment file of commercial analysis ….. thats my assignment section.. than for help go through this link https://understandmedia.com/topics/media-theory/110-how-to-analyze-a-television-commercial 

Furthermore  go through https://www.youtube.com/watch?v=58ayNIcgp3U .. for help ….. Also I have attached my 1st assignment which i did for a visual commercial assignment for Aveeno you can check that for help as well .. I also have attached the Aveeno picture ….

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

FIRST: Describe the ways bureaucrats can act as politicians and policy makers. What is their role in the policy making process?NEXT: Discuss some of the controversies surrounding bureaucrats as policy makers and politicians. Are unelected officials given too much discretion over the formation of public policy? Why or why not?

Surname 1 NameCourseProfessor’ nameDate of submissionIntroduction Bureaucracy is a way administratively organizing large numbers of people who need towork together the purpose of a…

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