This week we discuss the overall process of developing new software. Please also note the differences between software development and methods.
Your response should be 250-300 words.
This week we discuss the overall process of developing new software. Please also note the differences between software development and methods.
Your response should be 250-300 words.
Final blog post:
Discuss how your selected tech topic connects to the fundamentals of information technology covered in this course.
(Fundamentals: History and future of computers (Weeks 1 and 4)
How computers operate,
Major hardware components and functions of a modern computer system,
Programming languages,
Applications software,
Database management,
Network architecture,
Network management and security)
Explain how your chosen tech topic relates to the concepts of information technology and computer science, including the history of computers and the means by which computers operate.
Evaluate how your chosen tech topic relies on the major hardware components and functions of a modern computer system.
Explain how your chosen tech topic uses programming languages and program execution methods.
Analyze the role that application software plays with regard to your chosen tech topic.
Describe how your chosen tech topic relates to the basic concepts of database and database management.
Illustrate how the basic concepts of network architecture, management, and security influence your chosen tech topic.
Support your statements with evidence from sources.
One factor often overlooked in creating and implementing information security policy is the human factor. Your reading this week explores this factor. One tool to help manage the human factor is the separation of duties (also called segregation of duties). Explain what separation of duties is and why it is important. What three functions should be separate in all transactions? Give an example of how duties can be separated using an example you might find in an organization.
500 words. APA format with reference.
In this assignment, you will practice implementing and processing arrays in ARM Assembly by modelling the game of Bulgarian Solitaire.
The game starts with 45 cards. (They need not be playing cards. Unmarked index cards work just as well.). Randomly divide them into some number of piles of random size.
For example, you might start with piles of size 20, 5, 1, 9, and 10.
In each round, you take one card from each pile, forming a new pile with these cards.
For example, the sample starting configuration would be transformed into piles of size 19, 4, 8, 9, and 5. The solitaire is over when the piles have size 1, 2, 3, 4, 5, 6, 7, 8, and 9, in some order. (It can be shown that you always end up with such a configuration.)
In your ARM assembler program, produce a random starting configuration and print it. Then keep applying the solitaire step and print the result. Stop when the solitaire final configuration is reached.
I will leave the design of the program completely up to you, but make sure that you use functions for all major tasks and keep the main function very simple (use it primarily to call your functions).
random numbers (or, at least, pseudorandom numbers) are essential in cryptography, but it is extremely difficult even for powerful hardware and software to generate them. Go online and conduct research on random number generators. What are the different uses of these tools besides cryptography? How do they work? Explain your answer using your own words in 2-3 paragraphs.
Your family is considering purchasing a house and investing in a business venture. You started the structure for a loan amortization table and the investment table. You will complete the first five years of the 20-year loan amortization table. To complete the table, you will enter formulas to calculate the beginning balance, monthly payment, and ending balance. You will use financial functions to calculate the interest and principal paid for each monthly payment. In addition, you want to calculate cumulative interest after the first year, total interest over the life of the loan, and the amount of principal paid after the first year. You also want to see how many months half or more of the payment is for interest. You will then focus your attention on completing an investment table using date functions, formulas, and a financial function to calculate the future value of the investment.
1
Start Excel. Download and open the file named Exp19_Excel_Ch07_ML2_Finances.xlsx. Grader has automatically added your last name to the beginning of the filename.
2
The first step is to enter a formula to reference the loan amount for the beginning balance for the first payment.
In cell B9, enter a formula that references cell D2.
3
A loan amortization table usually contains a column that displays the monthly payment for each row.
In cell C9, enter a formula to reference the monthly payment in cell D3. Use a mixed reference and copy the formula to the range C10:C68.
4
The monthly payment indicates the total amount of the payment, which includes principal and interest. Interest is calculated based on the loan amount, the rate, the payment number, and the number of payments.
In cell D9, enter the IPMT function to calculate the interest paid for the first month using mixed cell references to the input area for the Rate, Nper, and PV arguments and using cell A9 for the Per argument. Make sure the result is a positive value and copy the function to the range D10:D68.
5
After calculating the interest paid, the rest of the monthly payment repays the principal.
In cell E9, enter the PPMT function to calculate the principal paid for the first month using mixed cell references to the input rea for the Rage, Nper, and PV argument and using cell A9 for the Per argument. Make sure the result is a positive value and copy the function to the range E10:E68.
6
The last column of the loan amortization table calculates the ending balance.
In cell F9, calculate the ending balance by subtracting the Principal Repayment from the Beginning Balance in row 9. Copy the formula to the range F10:F68.
7
The beginning balance for each payment is calculated and entered in column B.
In cell B10, enter a formula that references the first month’s ending balance in cell F9. Copy the formula to the range B11:B68.
8
Ensure that Accounting Number Format is applied to the range B9:F68.
9
You want to calculate the total interest paid for the first year.
In cell F2, insert the CUMIPMT function to calculate the cumulative interest paid for the first year. Use A9 for the Start_period argument and B6 for the End_period argument. Use 0 as the Type argument. Make sure the result is a positive value.
10
Now you want to calculate the total interest paid for the entire loan.
In cell F3, insert the CUMIPMT function to calculate the total cumulative interest paid for the entire loan. Use A9 for the Start_period and D6 for the End_period arguments. Make sure the result is a positive value.
11
You want to calculate the cumulative principal paid for the first year.
In cell F4, insert the CUMPRINC function to calculate the cumulative principal paid for the first year. Use A9 for the Start_period and B6 for the End_period arguments. Make sure the result is a positive value.
12
In cell F5, insert the COUNTIF function to count the number of payment periods in which the interest in the loan amortization table is higher than one-half of the monthly payment (cell D4).
13
Apply General number format to cell F5.
14
You want to extract the year and use it to determine the payoff year.
Display the Investment sheet. In cell D4, insert the YEAR function to extract the year from cell D3 and add the number of years (cell B3). You will change the format of the result in the next step.
15
You need to format the result in cell D4 as a number.
Ensure that General number format is applied to cell D4.
16
At the end of each period, you will add $125 to the investment.
In cell D7, enter a formula that references cell D2. Use a mixed reference to ensure the row number does not change. Copy the formula to the range D8:D54.
17
You want to calculate the interest earned per period.
In cell C7, multiply the beginning balance in cell B7 to the result of dividing the APR by the No. of Pmts per Year. Use mixed and relative cell references. Copy the formula to the range C8:C54.
18
You are ready to calculate the ending balance for each payment period.
In cell E7, add the Beginning Balance, Interest Earned, and End-of-Period Investment for row 7. Copy the formula to the range E8:E54.
19
You will use a nested function to calculate the dates in column A.
In cell A8, create a DATE function with a nested YEAR function, a nested MONTH function and then add 1 to increment the month, and a nested DAY function. The function arguments should reference the date on the previous row.
20
Copy the function from cell A8 to the range A9:A54 but preserve the fill formatting.
21
In cell E56, insert the FV function to calculate the future value of the investment use references to the respective cells in the input area for the arguments. Make sure the result is positive. Leave the Type argument empty.
22
Create a footer with your name on the left side, the sheet name code in the center, and the file name code on the right side of both sheets.
23
Save and close Exp19_Excel_Ch07_ML2_Finances.xlsx. Exit Excel. Submit the file as directed.
In Section 1, you will provide the specifications of your personal BYOD computing device. In Section 2, you will provide a brief description/explanation of the specifications of your device. You will learn about the specifications and capabilities of your machine in the process.
This task will require you to investigate your machine’s internals. How you locate your system information will vary by operating system.
Include a screenshot showing key system information
Q1. Discusses the common sources of risk on IT projects. Presents suggestions for managing these risks. Which suggestions do you find most useful? Which do you feel would not work in your organization? Why or why not?
Q2. It is very important to incorporate diversity and inclusion in the workplace. Speak with your manager or the HR manager regarding the business’s goals and requirements for diversity and inclusion. Share what you learn. What challenges do they face and what the company is doing to address those challenges.
To successfully complete this week’s discussion, you will need to:
Please respond to the following in a substantive post ( 3–4 paragraphs):
Attached are the math questions and need help answering and calculating the equations. (NOT ESSAYS)
Review the file title Linear Equations and complete the eight questions at the end of the file. Be sure to show your work. You may do the work in excel but be sure your answers are clearly highlighted and that the formulas work within the excel document.