Questions
(My Name is TT please I need new and unique answers, please. (Use your own words,...

(My Name is TT please I need new and unique answers, please. (Use your own words, don't copy and paste),Please Use your keyboard (Don't use handwriting)

((Thank you FOR YOUR HELP))

SUBJECT: System analysis and design IT243

Q1:

Assume the following scenario:
A small company needs to develop an information system for the Finance and Accounting Department. As an analyst which process model would you prefer and why?

In: Computer Science

ks) Write a program that prompts a person to enter a positive integer value. If the...

ks) Write a program that prompts a person to enter a positive integer value. If the value

cannot be converted into an integer or if the value is less than 1, keep prompting the user to

enter a value until they enter a valid integer

value. Determine if the value is odd or even and

display the result on the screen. Pause the screen until the user presses a key to continue.(c programming begineers method

In: Computer Science

Mills Mining is considering an expansion project. The proposed project has the following features: • The...

Mills Mining is considering an expansion project. The proposed project has the following features: • The project has an initial cost of $500,000--this is also the amount which can be depreciated using the three year MACRS depreciation schedule. • If the project is undertaken, at t = 0 the company will need to increase its inventories by $50,000, and its accounts payable will rise by $10,000. This net operating working capital will be recovered at the end of the project’s life (t = 4).

• If the project is undertaken, the company will realize an additional $600,000 in sales over each of the next four years (t = 1, 2, 3, 4). The company’s operating cost (not including depreciation) will equal $400,000 a year.

• The company’s tax rate is 40 percent. • At t = 4, the project’s economic life is complete, but it will have a salvage value of $50,000.

• The project’s WACC = 12 percent.

In: Finance

Write an interactive C++·program to have a user input their three initials and the length of...

Write an interactive C++·program to have a user input their three initials and the length of three sides of a triangle. Allow the user to enter the sides in any order.

Determine if the entered sides form a valid triangle.The triangle may not have negative sides.The sum of any two sides must be greater than the third side to form a triangle.

Determine if the entered sides are part of a scalene, isosceles, or equilateral triangle. Using the

Pythagorean Theorem, determine if the scalene triangle is also right triangle. (A^2+ B^2= C^2, where C is the hypotenuse.)Adequately check entered data for validity.

Use adequate test data to process all valid data and representative combinations of invalid data.Label output clearly.

Be sure your output printout contains user prompts and what was entered by the user in addition to the results of your program processing.

Examples

of test data

3 4 5

1 2 0

7 -3 5

6 6 4

7 7 7

2 2 4

In: Computer Science

Calculate the Annual Percentage Yield (APY) on an account that has a stated interest rate of...

Calculate the Annual Percentage Yield (APY) on an account that has a stated interest rate of 5.1% . Presume your account you deposit 6,900 a year for the next 45 years. Calculate the value of your portfolio when the interest is compounded yearly, quarterly, monthly, and daily.

In: Finance

(My Name is NN please I need new and unique answers, please. (Use your own words,...

(My Name is NN please I need new and unique answers, please. (Use your own words, don't copy and paste), Please Use your keyboard (Don't use handwriting)

((Thank you FOR YOUR HELP))

SUBJECT: System analysis and design IT243

Q1:

As the project sponsor, you suggested that your company that runs multiple local supermarkets should provide an online shopping service to increase sales during COVID-19 pandemic. Write a system request to propose this project.
System request
Project Sponsor

Business Need

Business Requirements

Business Value

Special Issues or Constraints

In: Computer Science

Assume that the economy has three types of people. 15% are fad followers, 75% are passive...

Assume that the economy has three types of people. 15% are fad followers, 75% are passive investors, and 10% are informed traders. The portfolio consisting of all informed traders has a beta of 1.3 and an alpha of 2.21%. The market has an expected return of 12% and the risk-free rate is 4 %. What is the alpha for the fad followers? Enter your answer as a percentage to two decimal places (i.e. 0.12% rather than 0.0012; the percent sign is not necessary).

In: Finance

Problem 5-5 You are considering moving your money to new bank offering a​ one-year GIC that...

Problem 5-5

You are considering moving your money to new bank offering a​ one-year GIC that pays an

5 %

APR with monthly compounding. Your current​ bank's manager offers to match the rate you have been offered. The account at your current bank would pay interest every six months. How much interest will you need to earn every six months to match the​ GIC?

First convert APR into a monthly discount​ rate:

The monthly discount rate is

​%.

In: Finance

A collection of financial assets and securities is referred to as a portfolio. Most individuals and...

A collection of financial assets and securities is referred to as a portfolio. Most individuals and institutions invest in a portfolio, making portfolio risk analysis an integral part of the field of finance. Just like stand-alone assets and securities, portfolios are also exposed to risk. Portfolio risk refers to the possibility that an investment portfolio will not generate the investor’s expected rate of return.

Analyzing portfolio risk and return involves the understanding of expected returns from a portfolio.

Consider the following case:

Andre is an amateur investor who holds a small portfolio consisting of only four stocks. The stock holdings in his portfolio are shown in the following table:

Stock

Percentage of Portfolio

Expected Return

Standard Deviation

Artemis Inc. 20% 6.00% 31.00%
Babish & Co. 30% 14.00% 35.00%
Cornell Industries 35% 11.00% 38.00%
Danforth Motors 15% 3.00% 40.00%

What is the expected return on Andre’s stock portfolio?

13.10%

9.70%

7.28%

14.55%

Suppose each stock in Andre’s portfolio has a correlation coefficient of 0.4 (ρ = 0.4) with each of the other stocks. If the weighted average of the risk of the individual securities (as measured by their standard deviations) included in the partially diversified four-stock portfolio is 36%, the portfolio’s standard deviation (σpσp) most likely is ---- 36%.

In: Finance

(1 point) Using a diagram/table, please illustrate how the personal record “John Cool, 45, 1980” will...

(1 point) Using a diagram/table, please illustrate how the personal record “John Cool, 45, 1980” will be stored in big- and little-endian byte ordering. The personal record includes a name (string), age (integer), and year (integer). The length of a byte is 8, and the length of a word is 32 for the computer.

In: Computer Science

Write a menu driven Java program which uses a method for each of the following operations:...

Write a menu driven Java program which uses a method for each of the following operations:

(Note : The user should be allowed to repeat the operations as long as he wants to. Use appropriate number of parameters and return type for each method.)

A. to find the sum of the following series (up to N terms). The program should    display the terms:

             22 + 42 + 62

For example, if N=4, then the program should display the following terms:

                          22 + 42 + 62 + 82

Sum of terms = 120

B. To accept a number and then check whether it is a prime number or a composite number. Your program should display an appropriate message. A prime number is one which is divisible by itself and 1.

Sample Outputs:

Enter a number : 5

It is a prime number.

Enter a number : 12

It is a composite number.

In: Computer Science

What are the strengths and weakness for Message Digest (MD5) and RIPEMD-128?

What are the strengths and weakness for Message Digest (MD5) and RIPEMD-128?

In: Computer Science

Using the financial calculator and the diagramming techniques, please answer the questions and include the diagrams...

Using the financial calculator and the diagramming techniques, please answer the questions and include the diagrams Part A You wish to purchase a home and have been very successful in saving $12,000 for a down payment. You can get a 30 year mortgage at a fixed rate of 11.5%. The most you can afford is $630 / month for payment. What's the maximum you can pay for a house? Part B You plan to be married soon and your partner can contribute $250/month toward the monthly payment, but nothing toward the down payment. Now what price can you afford to pay? Part C You have learned of a special bank offer to first-time home buyers. Interest rates will be dropped to 9% for the life of the mortgage. Now, what can you afford to pay?

In: Finance

apply the concepts of social facts and verstehen to the topic of binge drinking among college...

apply the concepts of social facts and verstehen to the topic of binge drinking among college students.

In: Psychology

1.Suppose that you will receive annual payments of $14,000 for a period of 10 years. The...

1.Suppose that you will receive annual payments of $14,000 for a period of 10 years. The first payment will be made 5 years from now. If the interest rate is 5%, what is the present value of this stream of payments?

a.What is the present value?

2.A store offers two payment plans. Under the installment plan, you pay 25% down and 25% of the purchase price in each of the next 3 years. If you pay the entire bill immediately, you can take a discount of 8% from the purchase price. Assume the product sells for $100.

a-1. Calculate the present value of the payments if you can borrow or lend funds at an interest rate of 5 percent.

b-1. Calculate the present value if the payments on the 4-year installment plan do not start for a full year.

In: Finance