Questions
Albatross Airline’s fixed operating costs are $5 million, and its variable cost ratio is 0.30. The...

Albatross Airline’s fixed operating costs are $5 million, and its variable cost ratio is 0.30. The firm has $1.3 million in bonds outstanding with a coupon interest rate of 7 percent. Albatross has 25,000 shares of preferred stock outstanding, which pays a $3 annual dividend. There are 70,000 shares of common stock outstanding. Revenues for the firm are $8 million, and the firm is in the 40 percent corporate income tax bracket. Compute the following for the firm. Round your answers to two decimal places.

  • Degree of operating leverage:   

  • Degree of financial leverage:   

  • Degree of combined leverage:  

  • Interpret this value for DCL. A 1% change in_______ will result in a ________% change in ________________

  • Enter the word sales, ebit, or EPS in the first and last blanks.Round to two decimal places for the change

In: Finance

Develop a Python program that brings together APIs and web scraping. Be creative. Pick something you...

Develop a Python program that brings together APIs and web scraping. Be creative. Pick something you are interested in - a hobby, a job, history, cooking, travel, sports, a foreign language, music, art, whatever you have some passion about.

Find an API that connects with your interest. Write a Python program that demonstrates the use of that api AND does some web scraping as well. It must include the ability to download images to your computer.

Submit the following to this Blackboard assignment:

1. your WELL DOCUMENTED source code file(s)

2. a word document that explains your program - what it does and how it does it

3. a Loom video link demonstrating what your program does - be sure to show off the images you download with your app.

In: Computer Science

Purpose The purpose of this assignment is to give you an opportunity to demonstrate your ability...

  1. Purpose

    The purpose of this assignment is to give you an opportunity to demonstrate your ability to identify emerging ethical issues in business, interpret the multitude of perspectives inherent in your case study, and model appropriate behaviour by recommending specific solutions.


    How to Proceed

    1. Select a case. It can be one of the textbook cases that we have not discussed during the course. It can also come from the outside world, perhaps a case you have been following in the HR business world. Do an extensive web search to ensure your summary includes the most up-to-date information available.

    2. Write a 450-word (+/- 10%) analysis. Your analysis should include:

      • a summary of the case and the conflicts; and
      • your strategy for resolving the conflicts.

    Note: the case must be related to ethical issues in a company

In: Operations Management

Java Code. imagine you're working for a fast-food restaurant. get details returns name of the burger...

Java Code. imagine you're working for a fast-food restaurant. get details returns name of the burger and getPrice return the price of the meal.

Using Decorator pattern make class BurgerToppings:

-Each topping is an extra $1 and the name provided in the constructor

-getTotalPrice: returns total price of burger + toppings

-getDetails: returns the burger name + name of topping with the word (extra)

Code:

public interface Burger{
    double C();
    String getDetails();
}
public class BigMac implements Burger{
    private String order;
    private double price ;

    public BigMac() {
        this.order= "Big Mac";
        this.price = 4.00;
    }

    @Override
    public double getPrice() {
        return price;
    }

    @Override
    public String getorder() {
        return name;
    }
}

Output expected:

Ordering BigMac + extra pickles+ extra cheese
Total price = 6.0

In: Computer Science

Imagine you're working for a fast-food restaurant. get details returns name of the burger and getPrice...

Imagine you're working for a fast-food restaurant. get details returns name of the burger and getPrice return the price of the meal. Java

Using Decorator pattern make class BurgerToppings:

-Each topping is an extra $1 and the name provided in the constructor

-getTotalPrice: returns total price of burger + toppings

-getDetails: returns the burger name + name of topping with the word (extra)

Output expected:

Ordering BigMac + extra pickles+ extra cheese
Total price = 6.0

public interface Burger{
    double C();
    String getDetails();
}
public class BigMac implements Burger{
    private String order;
    private double price ;

    public BigMac() {
        this.order= "Big Mac";
        this.price = 4.00;
    }

    @Override
    public double getPrice() {
        return price;
    }

    @Override
    public String getorder() {
        return name;
    }
}

In: Computer Science

break follow words into component parts and provide complete definitions.   example: Cardiomyopathy: cardi/o/my/o/pathy - A disease...

  1. break follow words into component parts and provide complete definitions.   example: Cardiomyopathy: cardi/o/my/o/pathy - A disease state of the heart muscle.   Hypoglycemia: hypo/glyc/emia - A blood condition with low levels of blood glucose (sugar)
  2. I'm not sure all words can be a break. if they can not break, just write [can not break]. find at least 18 of the terms include at least 3 word parts such as: 2 roots with a suffix and/or a prefix (e.g. Cardiomyopathy) or a prefix, a root, and a suffix (e.g. hypoglycemia).

diagnosis

epidemiologic

parameters

antihypertensives

cardiac

lipoprotein

diastolic

interventions

hypertriglyceridemia

hemoglobin

myocardial

demographic

Serum

prediction

Collaborators

hypothesis

territories

hypercholesterolemia

Angiology

myocardial

cholesterol

Hemoglobin

please type thank you.

In: Nursing

Python class Select a free ebook and download the plain text file (utf8). Write a program...

Python class

Select a free ebook and download the plain text file (utf8).

Write a program that does the following:

  • Read in your ebook (any book, any language)
  • Break the book into words (look at .split() for strings)
  • Make a dictionary of all words and how often they occur: for instance if the word'the' happened 2000 time and the word'a' happened 1940 times word_dict= {'the' : 2000, 'a' :1940}
  • Print the dictionary of word frequencies to a file (freqs.txt) with the most frequent at the top and least frequent at the bottom
  • No need to submit the book, I will run it on my own files.

Turn in a .py or Google Colab URL

Dictionaries are not easily sortable since they are not ordered like a list. To sort for this assignment use the following template.


import operator

sorted_dict = sorted(my_dict.items(),key=operator.itemgetter(1))

In: Computer Science

Write a Python function that takes a list of string as arguments. When the function is...

Write a Python function that takes a list of string as arguments.

When the function is called it should ask the user to make a selection from the options listed in the given list.

The it should get input from the user. Place " >" in front of user input.

if the user doesn't input one of the given choices, then the program should repeatedly ask the user to pick from the list.

Finally, the function should return the word the user selected.

Important Note:

DO NOT USE INPUT AND PRINT INSIDE THE FUNCTION AT ALL
MAKE THEM OUTSIDE THE FUNCTION PLEASE!

Example:

myList = myFunction(["yes","no","maybe"])

select one of the following please:

yes

no

maybe

# user input example

> could be

select one of the following please:

> perhaps

select one of the following please:

> yes

print(myList)

In: Computer Science

Answer the same problem as the if statement assignment but use the case statement instead. You...

Answer the same problem as the if statement assignment but use the case statement instead.

You are working for a company that offers driver licence training and you have been asked to write a script that asks your clients how old they are.

If he/she is 16 years old display the message "Please visit our company to take the test!"

If he/she is 15 years old display the message "Please take the training with us to learn how to drive!"

If he/she enters any other answer display the message. "Please visit out website to see our services!"

Name your script "case_statement.sh"

Be sure to include the standard header:

# Created by Your Name

# Assignment name

# Date

Do a screenshot of the code and the output. Submit as a single Word document

In: Computer Science

Guided Assignment Problem 3: Call Stack Your Tasks: Answer the following questions. Include a function stack...

Guided Assignment Problem 3: Call Stack

Your Tasks:

Answer the following questions. Include a function stack chart/diagram for each question to verify your answers.

  1. Use a call stack to explain the result of calling example(3).

    int example(int n) {

      if (n == 0)

    return 0;

      else

    return example(n – 1) + n * n * n;

    }

  2. Use a call stack to explain how many time(s) the method factorial invokes itself with an argument of 5 of factorial(5).

    int factorial(int n) {

      if (n == 0)

        return 1;

      else

        return (n * factorial(n – 1));

    }

  3. Include the following items in the same Word file for the final submission:
    • Your responses to the two tasks listed above

In: Computer Science