I have to write a summary on Data Base tips by tonight @ 11pm . Please look at the png file for further information.
Module 7 – Final Course Project
Composition and Inheritance
This is the culmination of everything you have learned up to this point. You will complete your Employee pay form by adding Benefits, Salary, and Hourly classes to the project. Then you will add these capabilities to your user interface. Read the Project Guide provided and the project video link for instructions and details to help guide you through your efforts. The final project is due next week (Module 8).
ple week 13 DB
Hello,
i need this paper by 4/22 afternoon 12am.
Strictly No plagiarism please use your own words.
Discuss in 500 words your opinion on what lessons should be learned from the 737 Max 8 crashes.
Use at least three sources. Use the Research Databases available from the Danforth Library, not Google. Include at least 3 quotes from your sources enclosing the copied words 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. Do Not Doublespace.
Copying without attribution or the use of spinbot or other word substitution software will result in a grade of 0.
Write in essay format not in bulleted, numbered or other list format.
Make sure Strictly No plagiarism content should not match and even the reference should not match in plagiarism
Discussion topic
Discussion (Minimum 300 words):
– Discuss in detail the stakeholder approach.
– Minimum two references.
There should be no plagiarism. Attach a plagiarism report with 0 % similarity index.
DSRT topic
Could you please elaborate headings and subheadings and please work on subsections based on deductive approach and summary which should be total 20 pages?
Total 25 references
Can I have PPT min 8 slides without references?
everything should be in apa format,
can i have turnitin report.
1 Discussion and 1 Case Study and weekly Summary
Discussion 4.1
Describe the basic steps in conducting a wage and salary survey. What are some of the factors to consider?
Choose only TWO (2) case studies from the attachment below
Please note that the case studies are not related and so must be completed separately. Do not combine your answers and form a report. After completing your first chosen case study, you should start your second one on a different page.
You do not need an abstract. For each case, include an introduction/summary of the case and then answer the questions.
Writing Requirements
- 3–5 pages in length for both case studies (excluding the cover page, abstract, and reference list)
- APA format, Use the APA template located in the Student Resource Center to complete the assignment.
- Please use the Case Study Guide as a reference point for writing your case study.
Weekly Summary 3.1
This week you will write and submit a minimum of two (2) full page (not including cover page and reference section) summary of the important concepts learned during the week. The paper will include a summary of the topics covered in the readings/chapters for this week.
this should be based on chapter 5 and 6 weekly summary attached
IT501 week 3
This week’s discussion topic:
follow the instructions and write explain both questions no plazarigam and AI generated
You have now created the big data repository for your enterprise…
and, you spend time worrying about two things:
- How will this data be useful to me?
- How can I make it available to my organization?
Please share your thoughts.
Malware
Assignment Instructions
Week 4 Assignment:
In order to complete assignment #4 you will need to answer the below questions. Please complete the questions in a Word document and then upload the assignment for grading. When assigning a name to your document please use the following format (last name_Assignment #1). Use examples from the readings, lecture notes and outside research to support your answers. The assignment must be a minimum of 1-full page in length with a minimum of 2 – outside sources. Please be sure to follow APA guidelines for citing and referencing source. Assignments are due by 11:59 pm Eastern time on Sunday.
Instructions:
Discuss the different types of malware that can pose a threat to computer memory and processes.
3 Discussions 1 case study
Discussion 3.1
Due: Initial Post due Wednesday, Replies due Sunday
Is ArcGIS Pro the same as ArcGIS desktop?
Discussion 3.2
Due: Initial Post due Friday, Replies due Sunday
What is a relationship map?
Discussion 4.1
Due: Initial Post due Wednesday, Replies due Sunday
What are story maps?
Case Study 4.1
“My first ever experience volunteering in the Smart Cities Group Meeting in Washington DC” (For example: What presenters & companies was most interesting to you? What are the benefits of smart cities? What was your takeaway from the event?)
Write 3-4 Pages
APA formatting
No Plagiarism.
With proper referencing.
Submit a lab report
1. Submit a lab report (a Word document) containing the following information.
·
o Include your name and the lab or lab-exercise number.
o Specification: Include a brief description of what the program accomplishes, including its input, key processes, and output.
o Test Plan: Include a brief description of the method you used to confirm that your program worked properly. If necessary, include a clearly labeled table with test cases, predicted results, and actual results.
o Summary and Conclusions: Include a summary of what the lab demonstrated and any conclusions drawn from the testing of the lab program.
Create a new project that consists of the base class BankAccount.
The BankAccount class should contain, at minimum, the following members.
1. It should contain data members to store a bank customer’s balance and account number. These should be of different and appropriate data types.
2. It should have function members that do the following:
1. set the account number;
2. return the account number;
3. return the account balance;
4. deposit money into the account; and
5. withdraw money from the account.
The class CheckingAccount should contain, at a minimum, the following members.
1. 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.
2. Override the base class, withdraw-money function, and add the capability to deduct transaction fees from an account using the following guidelines.
1. 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.
2. 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.
The class CheckingAccount should contain, at a minimum, the following members.
1. 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.
2. 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.
3. It should contain a data member to hold the interest earned since the last transaction or balance inquiry.
4. It should contain a function member to set the annual interest rate.
5. Utilize the base-class functions for both withdrawal and deposit operations for the savings account.
6. 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.
7. 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.
8. A value should be returned to indicate whether a withdrawal transaction succeeded or failed.
9. It should contain a function member to return the interest earned since the last transaction or balance inquiry.
1. It should contain a function member to return the number of days since the last transaction or balance inquiry.
ll data-input and data-display operations (cin and cout) should be done in the function main() test program.
2. 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.
3. 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.
1. Make a deposit and specify the amount to a selected or an entered account.
2. Make a withdrawal and specify the amount to a selected or an entered account.
3. Return the balance of a selected or an entered account.
1. For deposit transactions, withdrawal transactions, and balance inquiries, the updated balance and any fees charged or interest earned should also be displayed.
2. For the savings account, the number of days since last transaction should be displayed.
4. Exit the program.
Each account operation should display the account number and the account type.