Question 21 40 pts
(TCO 1) How should an information security policy be introduced within an organization, and who should be involved in the review and approval process?
In: Operations Management
Suzanne opens an account at a local bank on January 1, 2004 with a deposit of 4000 dollars. On October 1, 2004 she withdraws 1430 dollars. On April 1, 2005 she withdraws 850 dollars. And on April 1, 2007 she deposits 2090 dollars. Find the total present value of these transactions on July 1, 2006, if the account earns interest at a nominal rate of 7.6 percent convertible quarterly.
The solutions I've found on the website have not taken into account the future deposit and are incorrect, any suggestions?
In: Finance
You have just purchased a home and taken out a $ 520000 mortgage. The mortgage has a 30-year term with monthly payments and an APR (with semi-annual compounding) of 7.44 %. (Note: Be careful not to round any intermediate steps less than six decimal places.)
a. How much will you pay in interest, and how much will you pay
in principal, during the first year?
b. How much will you pay in interest, and how much will you pay
in principal, during the twentieth year (i.e., between 19 and 20
years from now)?
In: Finance
Question 3
Someone once commented that advertising is America’s greatest export. Discuss.
Question 8
How can advertisers overcome the problems of low literacy in their markets?
Question 18
Take each of the steps in the communications process and give an example of how culture differences can affect the final message received.
In: Operations Management
The Down Towner is considering a project with a life of 4 years that will require $164,800 for fixed assets and $42,400 for net working capital. The fixed assets will be depreciated using the Year 2018 bonus depreciation method. At the end of the project, the fixed assets can be sold for $37,500 cash and the net working capital will return to its original level. The project is expected to generate annual sales of $195,000 and costs of $117,500. The tax rate is 24 percent and the required rate of return is 13 percent. What is the project's net present value?
In: Finance
For both JavaScript and HTML:
----------------------------------------------------
Write and test JavaScript scripts for the two exercises that follow, debug (if necessary). When required to write a function, you must include a script to test the function with at least two different data sets. In all cases, for testing, you must write an HTML file that references the JavaScript file.
In: Computer Science
C++ QUESTION: I had originally made the program with a 8by2 array of "moves" for "knights tour". Now that I am trying to make each (row) and (column) individual arrays, I am not able to get the proper output. I'm sure it is a simple error in my for loops, but I haven't been able to make it work. Can you tell me what I need to change ?
// September 11, 2019
// Program sets all of an 8 by 8 array to 0, and then, starting in
the left most corner, moves
// about the array making only legal moves as a knight would in
chess. Moves are designated in the
// colMove and rowMove array
#include
using namespace std;
//functions
void setToZero(int board[8][8]);
void displayBoard(int oboard[8][8]);
int main()
{
// chess board 8x8
int board[8][8];
// all of the possible moves of the knight in 2
arrays
int colMove[8] = {2, 1, -1, -2, -2, -1, 1, 2 };
int rowMove[8] = {-1, -2, -2, -1, 1, 2, 2, 1 };
int row = 0; // starting row
int col = 0; // starting column
int newRow = 0; // transition row
int newCol = 0; // transition column
int mover = 1; // position # / tracker increase by 1
everytime a new position is found
// function to set values to 0
setToZero(board);
board[row][col] = 1; // starting position in top left set to one
bool ableToMove = true; // set to true so that while loop always executes
while (ableToMove)
{
ableToMove = false;
for (int i = 0; i < 8;
i++)
{
for (int j = 0;
j < 8; j++)
{
newRow += row + rowMove[i];
newCol += col + colMove[j];
// ensures that knight is staying on the
board
if (newRow >= 0 && newRow < 8
&& newCol >= 0 && newCol < 8 &&
board[newRow][newCol] == 0)
{
ableToMove = true; // becomes
true if able to move
break;
}
}
}
if (ableToMove) // if became true,
values are changed and "mover" (knight) increases
{
row +=
newRow;
col +=
newCol;
board[row][col]
= ++mover;
}
}
// function to display board
displayBoard(board);
cin.get();
cin.get();
return 0;
}
//function to initialize to zero
void setToZero(int fboard[8][8])
{
for (int i = 0; i < 8; i++)
for (int j = 0; j < 8;
j++)
fboard[i][j] =
0;
}
//function to display the board
void displayBoard(int oboard[8][8])
{
int i, j;
for (i = 0; i < 8; i++)
{
for (j = 0; j < 8; j++)
{
cout << "
" << oboard[i][j] << " ";
}
cout << " " <<
endl;
}
}
In: Computer Science
Describe the error transmission detection methodologies and give the pros and cons of each.
In: Computer Science
PLEASE DO THIS IN C#.In 1789, Benjamin Franklin is known to have written “Our new Constitution is now established, and has an appearance that promises permanency; but in this world nothing can be said to be certain, except death and taxes.” Our federal tax system is a “graduated” tax system which is broken into seven segments. Essentially, the more you make, the higher your tax rate. For 2018, you can find the tax brackets here. Your task is to design (pseudocode) and implement (source code) a program that asks the user for a salary and calculates the federal tax owed. Note, that only the money above a particular tax bracket gets taxed at the higher rate. For example, if someone makes $10,000 a year, the first $9525 gets taxed at 10%. The “excess” above that ($475) gets taxed at 12%. Note: work through at least three (3) examples of this by hand before designing the code. It will save you significant time. Still having problems? Have you talked to a GTA recently? Sample run 1: Enter your salary to the nearest dollar: 2000 Total tax owed is: $200
In: Computer Science
In Python...
Write a program that randomly assign participants for a study (use the random module).
The program should:
Remember:
In: Computer Science
-Draw a flowchart and pseudocode for a program that produces a monthly bill for a cell phone customer.
-List at least 10 separate modules that might be included. - For example, one module might calculate the charge for daytime phone minutes used. -
-Make a working version of this program using Python.
Need all of the above answered including the correct code for program using python
In: Computer Science
Question 1
(a) If Company A has a price per share of $40 and an earnings per share of $10, and Company B has a price per share of $30 and earnings per share of $3,what is the P/E
multiple of each.Which Company has a higher expected future earnings growth rate and why?
(b) How do we calculate the Times Interest Earned Ratio ? What does it tell us ?
(c) Why might a lender be more focused on liabilities - to- Assets Ratio rather than Debt- to- Equity Ratio ?
In: Finance
Problem 1:
Write a Java program for traversing a Binary Search Tree in following ways: (use any data structure, library functions) ---------- 20 points
i) Depth First Traversal: Inorder, LVR
ii) Depth First Traversal: Inorder, RVL
iii) Depth First Traversal: Preorder, VLR
iv) Depth First Traversal: Preorder, VRL
v) Depth First Traversal: Postorder, LRV
vi) Depth First Traversal: Postorder, RLV
No choice menu required.
Sample Input (taken from keyboard, single space separated nodes as found in a complete BFS: top-down, left to right traversal):
22 10 30 5 15 25 40 1 8
Sample Output (in console or in a file):
Depth First Traversal: Inorder, LVR -> 1 5 8 10 15 22 25 30 40
Depth First Traversal: Inorder, RVL -> 40 30 25 22 15 10 8 5 1
Depth First Traversal: Preorder, VLR -> 22 10 5 1 8 15 30 25 40
Depth First Traversal: Preorder, VRL -> 22 30 40 25 10 15 5 8 1
Depth First Traversal: Postorder, LRV -> 1 8 5 15 10 25 40 30 22
Depth First Traversal: Postorder, RLV -> 40 25 30 15 8 1 5 10 22
In: Computer Science
Describe how foreign keys impact the ability to add or delete rows from a table or the ability to drop tables from a database schema.
In: Computer Science
A pension fund manager is considering three mutual funds. The first is a stock fund, the second is a long-term government and corporate bond fund, and the third is a T-bill money market fund that yields a sure rate of 4.4%. The probability distributions of the risky funds are: |
Expected Return | Standard Deviation | |
Stock fund (S) | 14% | 34% |
Bond fund (B) | 5% | 28% |
The correlation between the fund returns is .14. |
What is the expected return and standard deviation of the optimal risky portfolio? (Do not round intermediate calculations. Round your answers to 2 decimal places.) |
Expected return | % |
Standard deviation | % |
rev: 02_05_2014_QC_44397
In: Finance