+Consider a Project that requires an initial investment of 2000 and generates cash flows of 200, 600, 800 and 1200 in years 1 through 4. Use a discount rate of 10%
Compute the Payback period (in years) for the project
+Consider a Project that requires an initial investment of 2000 and generates cash flows of 200, 600, 800 and 1200 in years 1 through 4. Use a discount rate of 10%
Compute the discounted payback period (in years) for the project
+Consider a Project that requires an initial investment of 2000 and generates cash flows of 200, 600, 800 and 1200 in years 1 through 4. Use a discount rate of 10%
Compute the profitability index for the project (enter in numeric firm)
Consider a Project that requires an initial investment of 2000 and generates cash flows of 200, 600, 800 and 1200 in years 1 through 4. Use a discount rate of 10%
Compute the NPV of the project
Correct Answer:
98.35
The answer is already given I just want to know the work process to get that correct answer
In: Finance
Strategic planning is a lot of work, but it is so important for hospitals and other healthcare organizations. Why is it so crucial that hospitals conduct regular strategic planning sessions? Why must they develop a multiyear strategic plan document and update it annually? What would likely happen if a healthcare facility decided to discontinue strategic planning?
In: Nursing
create procedures you can use as a bookkeeper as part of your duties related to payroll.
include the following points:
Enter employee pay records.
Process payroll.
Reconcile payroll.
Update payroll records.
Payroll enquiries.
End of quarter.
End of financial year.
Back-up.
Complete payroll component of BAS.
In: Accounting
4. Suppose that the price of an asset at close of
trading yesterday was $300 and its volatility was estimated as 1.3%
per day. The price at the close of trading today is $298. Update
the volatility estimate using
(i) The EWMA model with λ = 0.94
(ii) The GARCH(1,1) model with ω = 0.000002, α = 0.04, and β =
0.94.
In: Finance
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
In: Accounting
Case Study: Taking the Plunge/ CIW: Database Design Specialist
The management of Acme Widgets has agreed that a relational
database management system should be implemented to track its
customer and order information. Joe is now tasked with recommending
a specific RDBMS.
Joe conducts several interviews with management in order to put
together a requirements document. He is able to ascertain the
following:
The preliminary budget is minimal.
The preliminary schedule is tight (management wants the system in place as soon as possible).
Company sales have been increasing rapidly (approaching nearly 10,000 widgets sold per day), so the product must be scalable.
The product must run on Windows, but may one day be ported to a different operating system.
The system must provide enough basic security to protect confidential data.
After reviewing his requirements document and investigating
several database management systems, Joe recommends MySQL 8.0
because it is open-source (which satisfies the budget constraint)
and because it can import data from the spreadsheets in which it is
currently stored. MySQL also offers sufficient scalability,
portability, and security.
As a class, discuss Joe's recommendation of MySQL 8.0. What are the
advantages of using an open-source product? What are the
disadvantages? Based on the requirements document Joe has
constructed, what other DBMS products (open-source or proprietary)
might serve equally well for Acme Widgets Inc.?
In: Computer Science
Python
ONLY ONE STATEMENT ALLOWED PER FUNCTION (ONE RETURN
STATEMENT ALLOWED)
def plsfollowrule(num):
return num
like this.
1) create a function popular. The dictionary called database contains each people's hobby and their excitement level. This function searches the dictionary and returns a list of that most popular hobby to least popular hobby. If multiple hobbies have the same number of popularity, follow alphabetical order.
#What is popular means? The dictionary contains each people's hobby. The programmer should search the dictionary and figure out how many times this hobby popular to the people.
For example
database = {'Dio': {'Lottery': 2, 'Chess': 4, 'Game': 3},'Baily': {'Game': 2, 'Tube': 1, 'Chess': 3}, 'Chico': {'Punch': 2, 'Chess': 5}, 'Aaron': {'Chess': 4, 'Tube': 2, 'Baseball': 1}}
def popular(database) -> list:
#ONE STATEMENT ALLOWED, THAT WILL BE ONE RETURN STATEMENT
output
['Chess', 'Game', 'Tube', 'Baseball', 'Lottery', 'Punch']
#Chess appear the most time which 4
#Game appear 2 times
#Tube appear 2 times but by the alphabetical order, it located after game
#baseball appear 1 time
#lottery appear 1 time but by the alphabetical order, it located after baseball
#punch appear 1 time but by the alphabetical order, it located after lottery
In: Computer Science
home / study / engineering / computer science / computer science questions and answers / 2. design an er-diagram for a bank that implements the following requirements. the database ...
Question: 2. Design an ER-diagram for a bank that implements the following requirements. The database you d...
2. Design an ER-diagram for a bank that implements the following requirements. The database you design should store information about customers, accounts, branches and employees
• Customer: Customers are identified by their SSN. For each customer we store a name, multiple phone numbers (one or more), and an occupation.
• Account: Accounts are identified by an account number and the branch they belong to. For each account we store a balance and the type of account (e.g., savings).
– An account belongs to one or more customers. A customer can have any number of accounts.
– An account belongs to exactly one branch. Obviously, branches can have multiple accounts (branches are not required to have accounts).
• Branch: A branch is identified by a unique branch code. For each branch we want to store a location and number of employees.
• Employee: Employees are identified by their SSN. For each employee we store a name and salary.
– An employee works for exactly one branch. Branches have one or more employees.
– An employee is the contact for zero or more customers. Every customer has at most one employee as a contact. [20 marks]
In: Computer Science
Choose from a-d the NoSQL store that best matches the description or need of each of the following systems/applications (no need to explain the details).
a. Key-value store; b. Document database; c. Column-family database; d. Graph Database.
1. “We use this system to manage the LinkedIn professional
network and it is effective at managing many complex social
relationships.”
2. This music data system for P2P music sharing will be used to
maintain a set of hash tables of a song’s id and its associated
name. “
3. “This system will be used by banks and need to ensure strong
ACID property and ensures consistency through transactions. “
4. “We need a fast and scalable client program to either get the
value of an attribute, put a value of the attribute, or delete a
value of that attribute. “
5. “We want to know which NoSQL is not a good choice for storing an
e-commerce shopping cart. “
6. “This data system is very useful for storing cyber threat event
information since they can easily store richly attributed events
with various types. “
7. “Although we stored 1000 attributes for our financial center, we
found most of the queries are read-only and they frequently access
10 most popular ones.”
8. “To support visualization and search of a geospatial map data,
we need to store and retrieve a self-describing, hierarchical tree
data structures. “
In: Computer Science
Given a relational database that consists of the following relations:
Performer (pid: integer, pname: string, years_of_experience:
integer, age: integer) Movie (mname: string, genre: string,
minutes: integer, release_year: integer, did: integer) Acted (pid:
integer, mname: string)
Director (did: integer, dname: string, earnings: real)
Do the following using your Azure SQL database:
a) Use SQL statements to create the relations.
b) Populate the relations using SQL statements with the given data
posted on Canvas. c) Implement the SQL queries for the
following:
Display all the data you store in the database to verify that you have populated the relations correctly.
Find the names of all Action movies.
For each genre, display the genre and the average length (minutes) of movies for that genre.
Find the names of all performers with at least 20 years of experience who have acted in a movie
directed by Black.
Find the age of the oldest performer who is either named “Hanks” or has acted in a movie named
“The Departed”.
Find the names of all movies that are either a Comedy or have had more than one performer act in
them.
Find the names and pid's of all performers who have acted in at least two movies that have the same
genre.
Decrease the earnings of all directors who directed “Up” by 10%.
Delete all movies released in the 70's and 80's (1970 <= release_year <= 1989).
In: Computer Science