PowerPoint_3G_Remodels

 

PowerPoint_3G_Remodels

#PowerPoint3GRemodels

Project Description:

In the following project, you will format a presentation that describes backyard remodels.

Open   the file named Student_PowerPoint_3G_Remodels.pptx. downloaded with this project.

Change the Colors for the   presentation to Paper.

On Slide 1, format the   background with the Stationery texture, and then change the Transparency to   30%.

Select Slides 2 through 4, and   then apply a Solid fill to the background of the selected slides-in the fifth   column, the third color.

On Slide 2, hide the background   graphics.

On Slide 2, insert a Table with   2 columns and 4 rows. Apply table style Medium Style 3-Accent 1, and then   type the information below in the inserted table.
 

  Row 1, Col 1: Improvement Type; Col 2: Components
  Row 2, Col 1: Outdoor Kitchen; Col2: Barbecue, sink, bar, covered patio
  Row 3, Col 1: Swimming Pool; Col 2: Jacuzzi, pool, waterfall
  Row 4, Col 1: Fire Pit; Col 2: Fire pit, seating area, gas lines

Change the Font Size of all of   the table text to 28. Resize the table height to 5.8″, and then   distribute the table rows. Align   the table text so that it is centered horizontally and vertically within the   cells.

In the table, change the Font   Size of the first row of text to 32. Apply a Round style Cell Bevel to the   first row. Note, depending on your version of PowerPoint, this may be called   Circle.

On Slide 3, animate the picture   using the Wipe entrance animation starting After Previous. Change the   Duration to 01.00. Apply the Split entrance animation to the bulleted list   placeholder, and then change the Effect Options to Vertical Out.

On Slide 4, insert a Clustered   Column chart. In the worksheet, beginning in cell B1, type the following   data.
 

  In row 1, beginning in cell B1: Owner Installed, Contractor, Owner as Contractor
  In row 2, beginning in cell A2: Patio, 8000, 12000, 9500
  In row 3, beginning in cell A3: Bar, 3500, 5200, 4600
  In row 4, beginning in cell A4: Infrastructure, 5000, 9750, 8100
  In row 5, beginning in cell A5: Appliances, 3000, 4200, 3850

Apply Chart Style 8 to the   chart, and then remove the Chart Title element. Apply the Wipe entrance   animation to the chart and change the Effect Options to By Series.

On Slide 5, format the   background using solid fill color Dark Green, Background 2 and hide the   background graphics. (depending upon your version of Office, the color may be   named Dark Green, Text 2). From your downloaded project files, insert the   video p03G_Video1.mp4.

Change the Video Height to 5 and use the Align Center and   Align Middle options to position the video. Apply the Simple Frame, Black   video style.

On the Playback tab, change the   Video Options to Start the video Automatically. Trim the video so that the   End Time is 00:07 and then compress the media to Low Quality. (Mac users, the   Compress Media feature is not available on a Mac).

On Slide 6, hide the background   graphics, and then format the slide background by inserting a picture from   your downloaded grader files-p03G_Backyard.jpg.   Set the Transparency to 0%

Insert a Header & Footer on   the Notes and Handouts. Include the Date and time updated automatically, the   Page number, and a Footer with the text 3G_Remodels
  Display the document properties. As the Tags, type backyard   remodels 

This lab introduces you to

  

Language (or Software): C++
 

This lab introduces you to writing a C++ program to implement the concept of class inheritance using different types of bank accounts as a model. In this lab, you will create a base class, called CBankAccount, and two additional classes (each derived from CBankAccount), called CSavingsAccount and CCheckingAccount. You will then test the operations of each class in function main() to simulate the transactions of both a checking account and a savings account.

STEP 1: Create the Multifile Project and the Main (Base) Class
 

Create a new project that consists of the base class BankAccount.
 

The BankAccount class should contain, at minimum, the following members.
 

It should contain data members to store a bank customer’s balance and account number. These should be of different and appropriate data types.
It should have function members that do the following:
set the account number;
return the account number;
return the account balance;
deposit money into the account; and
withdraw money from the account.
STEP 2: Create the CheckingAccount Class Derived From the BankAccount Class
 

The class CheckingAccount should contain, at a minimum, the following members.
 

It should contain a data member to keep track of the number of withdrawal transactions made on the account. Whenever a withdrawal is made, this number should be incremented.
Override the base class, withdraw-money function, and add the capability to deduct transaction fees from an account using the following guidelines.
The checking account is allowed three free transactions. For each successful withdrawal transaction past the three free transactions, there will be a service fee of 50 cents per transaction. The service fee should be deducted from the account balance at the time the transaction is made.
If there are insufficient funds in the account balance to cover the withdrawal plus the service fee, the withdrawal should be denied.
The function should return a value to indicate whether the transaction succeeded or failed. Transaction fees should be deducted only from successful transactions, but the transaction count should be incremented in either case.
STEP 3: Create the SavingsingAccount Class Derived From the BankAccount Class
 

The class CheckingAccount should contain, at a minimum, the following members.
 

It should contain a data member to hold the daily interest rate. The daily interest rate can be calculated from a yearly interest rate by dividing the annual rate by 365.
It should contain a data member to keep track of the number of days since the last transaction or balance inquiry. This should be updated using a random-number generator (reference Lab 1) that will return a value representing the number of days between 0 and 7, inclusive. We will assume that this bank is open every day of the year.
It should contain a data member to hold the interest earned since the last transaction or balance inquiry.
It should contain a function member to set the annual interest rate.
Utilize the base-class functions for both withdrawal and deposit operations for the savings account.
Override the base-class-balance inquiry function to add calculating and adding interest to the account based on the daily interest rate, the current balance of the account, and the number of days since the last balance inquiry. This should be called only when a balance inquiry is made, not when a deposit or withdrawal transaction or an account number inquiry is made.
If there are insufficient funds in the account balance to cover a withdrawal, the withdrawal should be denied. The number of days since the last transaction or balance inquiry and the interest calculations should still be made.
A value should be returned to indicate whether a withdrawal transaction succeeded or failed.
It should contain a function member to return the interest earned since the last transaction or balance inquiry.
It should contain a function member to return the number of days since the last transaction or balance inquiry.
STEP 4: Test Program Operation
 

All data-input and data-display operations (cin and cout) should be done in the function main() test program.
The test program should create one checking account and one savings account with initial balances of $100 each using the functions defined in the class definitions. The test program should also assign a unique, five-digit account number to each account and assign an annual interest rate of 3% for the savings account.
The test program should then display a menu that allows the user to select which option is to be performed on which account, including the following.
Make a deposit and specify the amount to a selected or an entered account.
Make a withdrawal and specify the amount to a selected or an entered account.
Return the balance of a selected or an entered account.
For deposit transactions, withdrawal transactions, and balance inquiries, the updated balance and any fees charged or interest earned should also be displayed.
For the savings account, the number of days since last transaction should be displayed.
Exit the program.
Each account operation should display the account number and the account type.

What 'Big' means in Big Data. What exposure have you had to Big Data?

Write at least 700 words on what ‘Big’ means in Big Data. What exposure have you had to Big Data? 

Use at least three sources. Include at least 3 quotes from your sources enclosed in quotation marks and cited in-line by reference to your reference list.  Example: “words you copied” (citation) These quotes should be one full sentence not altered or paraphrased. Cite your sources using APA format. Use the quotes in your paragraphs.

Write in essay format not in bulleted, numbered or other list format. 

You have been hired as a Java programmer

You have been hired as a Java programmer to generate an amortization schedule. This program should be in the form of a Java applet. Inquiries will be Web-based using a browser. Your program should execute within the browser and prompt the user for three different inputs. The first is the loan amount, the second is the length of the loan and the last is the annual interest rate. Your task is to write a Java applet that will provide the user with their payment schedule. This amortization schedule would include their monthly payment amount, interest amount, principal amount and their remaining balance per pay period.

The applet input will be the loan amount, annual percentage rate (APR), and the number of years to pay out the loan. The output will be the loan amount, interest rate per pay period number of pay periods and the monthly payment. This information would be followed by the amortization schedule. Following is an example of the expected output for a $20,000 loan over 5 years at 6.25% interest rate.

Loan Amount $20,000
Interest Rate per pay period 0.0625
Pay Periods 60
Monthly Payment Amount $388.99
 

Payment Monthly Amount Interest Principal Balance
20,000.00
1 388.99 104.17 284.82 19,715.18
2 388.99 102.68 286.30 19,428.88
3 388.99 101.19 287.79 19,141.09
….
59 388.99 4.02 384.96 386.97
60 388.99 2.02 396.97 0.00

The necessary calculations were provided to you:

· p,loan amount or principal

· n,number of payments = payments per year * number of years

· i,interest rate per pay period = APR/payments per year = APR/12

· t,interest paid = interest rate per pay period * previous principal balance

· r,monthly payment amount = principal * interest per period / (1-(1+(interest per period)/100)^(number of payments-1)^2)

· a, principle amount = monthly payment amount – interest paid

· b, principle balance = previous balance – principle amount

Hint: In Java syntax the monthly payment calculation is:

r=((p*(i/100))/(1-(Math.pow((1+(i/100)),(n*(-1))))));

Details:

Please note that your program should accept three inputs:

1. The loan amount,

2. Annual Percentage Rate, and

3. The number of years to pay out the loan

And calculate six types of outputs:

1. The monthly payment amount,

2. Interest per pay period,

3. Number of pay periods,

4. Amortization schedule (including amount of interest per pay period, principal per pay period, and principle balance)

When coding your applet, remember the following:

· Your applet needs to extend the Applet (or JApplet) class. Of course, you need to import the appropriate applet package(s).

· Your applet needs to have declarations for the fields, labels, components, widgets,etc. that you use in the applet.

· There are applet methods that are called automatically by browsers (please see your textbook). Make sure you initialize (implement init()) your applet.

· You need the code that does the calculation of the interest.

· You need to handle the event of pressing the button. There are some examples in the book (ask your instructor for the specific pages).

· You may use this sample code for example.

Please create an HTML page that contains the applet tag. In addition to your mortgage calculator commented Java code, you need to provide the HTML page.

Here is the Hello world Java code example to create an applet:

  

import java.applet.*;
import java.awt.*;
/**
* The HelloWorld class implements anapplet that
* simply displays “HelloWorld!”.
*/
public class HelloWorld extends Applet {
public void paint(Graphics g){
// Display “Hello World!”
g.drawString(“Hello world!”,50, 25);
}
}

  

Then you would compile the class and create an HTML page called Hello.htm:

  


 


 

A Simple Program.
 


 


 

Here is the output of my program:

 


 


 

  

Deliverable Details:

Upload the commented source code file of your calculator, the class file and the HTML file.

IT 210

  

IT 210 

Title: CheckPoint: Iteration Control Structure
 

A worm is moving toward an apple. Each time it moves the worm cuts the distance between itself and the apple by its own body length until the worm is close enough to enter the apple. The worm can enter the apple when it is within a body length of the apple. 

1 page

You can use location-based tools to help you find your car or the closest gas station. However, some people see location-based tools as an invasion of privacy. Discuss two pros and two cons of location-based tools.

Physical security

 Using the example of Five Oaks in Dayton, Ohio, research how to initiate and present a plan to build defensible space into a mini-neighborhood. 

Android Design Support Fragment

What are the various layouts that are created when a developer utilizes the Fragment option in the Android Design Support Library? What are the components of each created layout? How can these layouts be used (provide an example for each layout)? 

Mobile -2B

 

Question 1: What are the Golden Rules of Interface Design for mobile applications?

Question 2: What is “Interaction as Brand”?  Give an example form one particular Mobile Phone Hardware and Software Developer

 Write your answer in a MS Word document.