Programming Homework Help

Programming Homework Help. FIN 383 SUSS Programming a Python Script Portafolio

 

1. Instruction as provided in the question paper.

2. All documentation and assumptions must be indicated and made within the ipynb file using either Markdown or inline comments.

3. Good programming habits to ensure your code is readable

4. Submit a Jupyter Notebook (ipynb) for this assignment

5. Financial knowledge and python skill required

6. Data will need some processing

7. Errata provided for the Main ECA correction

8. No Cash remaining, stock can be fractional purchase

9. Portfolio drifting. To main the percentage allocation. Sell and purchase of stock is require.

Example: Allocation Stock A is 60% , Stock B is 30% , Stock C is 10%

Initial Price Stock A is $60 , Stock B is $30 , Stock C is $10

Later Date Price Stock A is $100 , Stock B is $30 , Stock C is $10 = Total Market value is $140

Therefore, allocation for Stock A is 100/140 Not 60% as required and have to sell and vice versa

Programming Homework Help

Programming Homework Help

Programming Homework Help. Plano West Senior High Explain the Time Complexity of The Programv Python Coding Task

 

Input : [1,2,3,,4,………….., 20], Target sum of integers = 23

Output: [[3,20], [4,19], [5,18],…..[1,2,20],……… [1,2,3,17],……..[1,2,3,4,13],……] [e.g., all possible combinations of the integers that produce the target sum 23]

1. Implement the above subset sum problem.

2. Explain the time complexity of the above program. you can write the code with Java or Python

Programming Homework Help

Programming Homework Help

Programming Homework Help. ASU ACME Tour Company C++ Code

 

ACME Tour Company offers tours to various locations; all tours include a tour guide. Write a program for the company which will allow tour guides to input the data from their trips. The program should implement the do-while control structure for the overall control of the program and for input validation. Each tour guide’s data should consist of the following:

employee ID number

number of days of the tour

  • dollar amount for each day (total of meals, tips, entry fees, transportation, etc)
  • dollar amount for each night’s accommodations
  • The program should then repeat the process if there is more data to be entered.
  • This data should be added to the spHWtourGuidesData.txt file which is provided with this assignment. Each tour guide’s data should be on a single line with a space separating each piece of data. The data should be stored in the file in the order listed above. The file write position should be remain on the line after storing the last piece of data; there should be no whitespace following the last piece of data.

When accepting a tour guide’s data, do not accept invalid data. An employee ID must be between 1001 and 9999. The shortest tour is 6 days, while the longest tour is 92 days. All dollar amounts should be non-negative and should be stored with two decimal places. There will be a dollar amount for each day of the tour; some daily totals may be $0.00 as there may be a free day built into the tour. There will be one less night than the total days of the tour; some accommodation costs may be $0.00 as transportation may include overnight lodging. Do not include commas in any number.

The program should then repeat the entire process if there is more data to be entered; the user should be queried about adding more data.

After all the data is added by the user, the program should read all the data in the file spHWtourGuidesData.txt and display a report to the screen. See the screen shot to see the required formatting and data that should be included in the report. Include commas in the formatting of all the numbers in the report.

To get the values printed with commas, include the locale library and use the following statement prior to displaying any numbers that should have commas:

cout.imbue(std::locale(“en_US.utf-8”));

spHWtourGuidesData.txt prior to running program

1001 6 35.56 15.25 69.34 152.35 0.00 65.35 125.65 250.35 0.00 412.36 321.24
9999 10 0.00 12.50 0.00 65.75 95.35 34.53 0.00 0.00 125.68 0.00 138.25 156.35 0.00 358.25 423.52 115.35 0.00 0.00 142.35
5521 8 25.65 159.35 125.35 1265.35 124.35 456.35 458.35 123.00 125.36 345.57 310.25 2500.00 365.35 1452.00 1520.00
4563 6 0.00 0.00 0.00 0.00 0.00 0.00 125.00 356.35 356.36 356.36 356.36

The output of your program should look exactly like this. Data values may differ.

Enter employee ID number (1001 – 9999): 999
Enter employee ID number (1001 – 9999): 10001
Enter employee ID number (1001 – 9999): 1234

Enter length of tour (6 – 92): 5
Enter length of tour (6 – 92): 100
Enter length of tour (6 – 92): 7

Enter expenses (0.00 or more) for day 1: -8.15
Enter expenses (0.00 or more) for day 1: 98.15
Enter expenses (0.00 or more) for day 2: 150.25
Enter expenses (0.00 or more) for day 3: 52.35
Enter expenses (0.00 or more) for day 4: 65.51
Enter expenses (0.00 or more) for day 5: 126.40
Enter expenses (0.00 or more) for day 6: 45.23
Enter expenses (0.00 or more) for day 7: 0

Enter accommodation expense (0.00 or more) for night 1: -12.50
Enter accommodation expense (0.00 or more) for night 1: 120.52
Enter accommodation expense (0.00 or more) for night 2: 0
Enter accommodation expense (0.00 or more) for night 3: 156.37
Enter accommodation expense (0.00 or more) for night 4: 156.37
Enter accommodation expense (0.00 or more) for night 5: 250.14
Enter accommodation expense (0.00 or more) for night 6: 325.67

Is there more data to add (Y or N)? j
Is there more data to add (Y or N)? n

Employee Tour Daily Accommodation Total
ID Number Length Expenses Expenses Expenses
——————————————————–
1,001 6 337.85 1,109.60 1,447.45
9,999 10 333.81 1,334.07 1,667.88
5,521 8 2,737.75 6,618.53 9,356.28
4,563 6 0.00 1,550.43 1,550.43
1,234 7 537.89 1,009.07 1,546.96
============
15,569.00

spHWtourGuidesData.txt after running the program for screenshot posted above

1001 6 35.56 15.25 69.34 152.35 0.00 65.35 125.65 250.35 0.00 412.36 321.24
9999 10 0.00 12.50 0.00 65.75 95.35 34.53 0.00 0.00 125.68 0.00 138.25 156.35 0.00 358.25 423.52 115.35 0.00 0.00 142.35
5521 8 25.65 159.35 125.35 1265.35 124.35 456.35 458.35 123.00 125.36 345.57 310.25 2500.00 365.35 1452.00 1520.00
4563 6 0.00 0.00 0.00 0.00 0.00 0.00 125.00 356.35 356.36 356.36 356.36
1234 7 98.15 150.25 52.35 65.51 126.40 45.23 0.00 120.52 0.00 156.37 156.37 250.14 325.67

When you have completed and tested the program, submit the source code by using the course submission utility.

Spend enough time with pencil and paper to satisfy yourself that you truly understand the problem and can work examples by hand before starting to write program code; you cannot explain a solution to a computer if you do not understand it yourself. If you find you do not understand a problem well enough to work examples by hand, seek out input from your instructor or fellow classmates; discussion with classmates can be particularly rewarding for both parties (as long as collaboration stops here). Start as early as you can to give yourself every opportunity to think through a solution; starting close to the deadline increases pressure on you and can make it even harder to think.

need 

1. C++ code 

2.Test Cases**

Note: Avoid Turnitin and plagiarism-detection software**

Programming Homework Help

Programming Homework Help

Programming Homework Help. STAT 4520 Relationship Between the Covid19 Deaths and the Covid19 Cases Essay

 

On the final day of the semester, the final report will be due. You should submit a typed report (<1500 words or so) which roughly has the following structure:

  • Introduction: Reiterate the data you chose and your research question. Discuss why your work is valuable in the context of current world events. If your own data was used, describe the data’s
  • background and relevance to your eld, your research question(s), etc.

  • Methods: How will the data be analyzed in a way which can address the questions you have proposed? Which techniques will you use?
  • Results: Communicate your results clearly and succinctly here.
  • Discussion/Conclusion: Interpret your results in the context of your questions and discuss the implications. Conclude by providing an overall summary of your work.
  • The report should clearly tell the story but should be relatively concise. From a statistical perspective, a complete analysis will include at a minimum:

  • Exploratory analysis with plots of the data and/or hypothesized relationships.
  • A statistical model with a structure that is in line with the methods covered. Ideally, random effects should be used as this was a major component of the course, and diagnostics should be run.
  • Interpretations of the fixed/random effects of the model, and how it is into your objective.
  • In short, you can think of this as an open-ended homework assignment.

    To be submitted

  • The report.
  • Your R code(no need to submit data).
  • Programming Homework Help

    Programming Homework Help

    Programming Homework Help. IT 405 SEU Blood Bank Database with 3 Tables Donors Blood and Clinics Program

     

    I’m working on a mysql multi-part question and need an explanation and answer to help me learn.

    Q1. By using MySQL, create a “Blood_Bank” database, the database has three tables: Donors, Blood, and Clinics.

    The Donor relation has the following attributes: DID, Name, Email, Gender.

    The Clinic relation has the following attributes: CID, Name, Location.

    The Blood relation has the following attributes: BID, Type, DID, CID.

    Programming Homework Help

    Programming Homework Help

    Programming Homework Help. Java Script Programming Multiple Parts Project

     

    Pick one of the following projects to complete:

    Project 1

    Create a Java program that will use a class named StockProcessor. The StockProcessor class will take a .txt file named “February Stock Tips.txt” and read the contents of that file into a JOptionPane window. The “February Stock Tips.txt” file can be found in the “Final Project” folder in the course files section.

    Project 2

    Create a Java program that will use a class named StockOrganizer. The StockOrganizer class will take a .txt file named “February Stock Tips.txt” and will reorder the stock quotes from highest stock price to lowest *average* stock price for the month and save the reordered stock quotes in a new file named “February Stock Tips [Organized].txt”. The “February Stock Tips.txt” file can be found in the “Final Project” folder in the course files section.

    Project 3

    Create a Java program that will use a class named StockSearch. The StockSearch class will take a .txt file named “February Stock Tips.txt” and it will search for a user defined stock ticker and return the month’s average stock price. The user can either interact through the InteliJ terminal or a JOptionPane window. The “February Stock Tips.txt” file can be found in the “Final Project” folder in the course files section.

    Part 1 (

    After selecting one of the three projects to complete, write a Unified Modeling Language outline (in a Word document or Powerpoint presentation) of how you intend to write the program. Break down what libraries you intend to import, what structures you intend to use, and what the program will output. Submit the Word document or PowerPoint presentation 

    Part 2 

    Submit the .java files that contain your project via Canvas or email for reviewKO.

    The “February Stock Tips.txt”

    58.580002
    58.84
    58.849998
    58.990002
    59.189999
    59.75
    59.59
    59.41
    59.610001
    59.950001
    59.529999
    59.77
    59.720001
    60.130001
    58.650002
    57.82
    57.599998
    54.93
    53.490002
    MMM
    156.589996
    157.240005
    162.330002
    162.889999
    160.080002
    160.149994
    162.449997
    163.800003
    159.759995
    161.009995
    158.880005
    159.339996
    158.559998
    156.929993
    152.550003
    146.850006
    148.960007
    150.160004
    149.240005
    AXP
    131
    131.850006
    133.600006
    133.25
    131.820007
    132.240005
    132.630005
    133.240005
    134.460007
    135.869995
    135.600006
    136.929993
    136.580002

    134.899994
    128.190002
    120.900002
    118.5
    112.809998
    109.93
    BA
    316
    317.940002
    329.549988
    341.429993
    336.75
    344.670013
    344.420013
    347.450012
    342.820007
    340.48999
    338.880005
    338.299988
    336.279999
    330.380005
    317.899994
    304.140015
    305.589996
    287.76001
    275.109985
    CSCO
    46.529999
    47.619999
    48.450001
    48.689999
    47.970001
    48.869999
    49.130001
    49.93
    47.32
    46.970001
    46.59
    46.290001
    46.849998
    46.299999
    44
    42.740002
    42.16
    40.040001
    39.93
    CAT
    129.770004
    133.509995
    137.440002
    137.25
    133.369995
    134.320007
    136.190002

    139.589996
    139.720001
    137.990005
    136.580002
    136.860001
    136.929993
    137.210007
    132.169998
    129
    128.25
    123.269997
    124.239998
    AAPL
    308.660004
    318.850006
    321.450012
    325.209991
    320.029999
    321.549988
    319.609985
    327.200012
    324.869995
    324.950012
    319
    323.619995
    320.299988
    313.049988
    298.179993
    288.079987
    292.649994
    273.519989
    273.359985
    CVX
    106.279999
    106.849998
    110.279999
    109.489998
    108.940002
    109.790001
    111.209999
    112.040001
    111.660004
    110.080002
    110.239998
    110.739998
    109.809998
    109.010002
    104.709999
    100.709999
    98.040001
    94.129997
    93.339996

    Programming Homework Help

    Programming Homework Help

    Programming Homework Help. Create a bootstrap website HTML/CSS/JAVASCRIPT

     

    Hello, I need help with the following assignment using bootstrap to create a simple website. I honestly do not care how the website looks as long as it hits the requirements (keep it PG). you could copy and paste code from your other projects I don’t care, i just need to meet the requirements.

    Requirements

    • Create a website using Bootstrap with a minimum of three pages
      • Template/theme use is encouraged
    • If not automatically included in the template/theme, be sure to include each of the following Bootstrap capabilities.
      • Carousel
      • Navigation bar
      • Glyphicons or Font Awesome Icons
      • Tooltip or Popover
      • A form for users to contact person/business
      • Badge or label
    • Comments as necessary
    • The directory structure of the website must be in good form:
      • Parent folder of the website has the index.html file only
      • An html folder for all other pages of the site
      • A folder for all other resources based on their content
      • Pathing must be relative not absolute

    Programming Homework Help