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 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
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.
Write a 450-word (+/- 10%) analysis. Your analysis should include:
In: Operations Management
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 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
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 that does the following:
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 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 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 chart/diagram for each question to verify your answers.
int example(int n) {
if (n == 0)
return 0;
else
return example(n – 1) + n * n * n;
}
int factorial(int n) {
if (n == 0)
return 1;
else
return (n * factorial(n – 1));
}
In: Computer Science