— Display your full name in an alert box.

–Provide the result of a calculation in an alert box that will involve three numbers; you will decide what the variable names are and what the values and math operations will be. You must supply labels to inform the viewer what the numbers represent (See concatenation below)

–Display the values of the screen size you are using to write your code.

The third bullet above requires you to use the JavaScript functions of screen.height and screen.width plus the concatenation symbol of ‘+’. Look it up using the link.

Project 10-1: Account Balance Calculator
Update the Account Balance Calculator so its code is stored in packages. The functionality of the application should stay the same.

Console
Welcome to the Account application

Starting Balances

Checking: $1,000.00

Savings:  $1,000.00

Enter the transactions for the month

Withdrawal or deposit? (w/d): w

Checking or savings? (c/s): c

Amount?: 500

Continue? (y/n): y

Withdrawal or deposit? (w/d): d

Checking or savings? (c/s): s

Amount?: 200

Continue? (y/n): n

Monthly Payments and Fees

Checking fee:              $1.00

Savings interest payment:  $12.00

Final Balances

Checking: $499.00

Savings:  $1,212.00

Specifications
Your instructor should supply you with a starting project.

Add the following packages to the application:

yourLastName.app
yourLastName.interfaces
yourLastName.account
yourLastName.presentation

Move the Balanceable, Depositable, and Withdrawable interfaces to the interfaces package. If the IDE identifies any errors, fix them. Then run the application to make sure it still works as expected.

Move the Account, CheckingAccount, and SavingsAccount classes to the account package. Move the Console class to the presentation package. And move the AccountBalanceApp class to the app package. If the IDE identifies any errors, fix them. Then run the application to make sure it still works as expected.

Assignment 2 – Form Validation PHP Introduction.

This assignment assumes that you are relatively familiar with HTML forms and that you use JavaScript functions to validate them. The goal here is essentially to create a dynamic form that will submit the POST object containing these values to a server. Using PHP, you’ll do some manipulations on this data to return a result set to display to the user.

This assignment is also built to assignment 1, which I previously completed because it will serve the function of your layout. Assignment 1 is already attached  for your reference.

– Only required to make a page for admins to respond to the customer’s enquiries, under Enquiry Status > Update (staff will reply to customer’s enquiries from here)
– Page for customers to view their own enquiry and check if it has been answered by admin
– If enquiry has been answered, display admin’s answers
– Only using SQL, shelve, python, java, css, jinja, flask

-from Constance’s portions only

– Only required to make a page for admins to respond to the customer’s enquiries, under Enquiry Status > Update (staff will reply to customer’s enquiries from here)
– Page for customers to view their own enquiry and check if it has been answered by admin
– If enquiry has been answered, display admin’s answers

-from Constance’s portions only

Topics for the site: Animals
What your site needs to include:

Your site must be four pages.
You need to use the Bootstrap nav bar, customize the colours, and change the hamburger icon to the words “menu”.
You need to include a responsive hero image.
You need to include six box elements.
Your site needs to be responsive and adapt to the screen size.
You need a home page plus three additional pages that correspond to the links in the nav bar and these all need to be linked.
You need excellent code, appropriate alt tags, and page titles.

Topics for the site: Animals
What your site needs to include:

Your site must be four pages.
You need to use the Bootstrap nav bar, customize the colours, and change the hamburger icon to the words “menu”.
You need to include a responsive hero image.
You need to include six box elements.
Your site needs to be responsive and adapt to the screen size.
You need a home page plus three additional pages that correspond to the links in the nav bar and these all need to be linked.
You need excellent code, appropriate alt tags, and page titles.

Project 9-2: Account Balance Calculator
Create an application that calculates and displays the starting and ending monthly balances for a checking account and a savings account.

Console
Welcome to the Account application

Starting Balances

Checking: $1,000.00

Savings:  $1,000.00

Enter the transactions for the month

Withdrawal or deposit? (w/d): w

Checking or savings? (c/s): c

Amount?: 500

Continue? (y/n): y

Withdrawal or deposit? (w/d): d

Checking or savings? (c/s): s

Amount?: 200

Continue? (y/n): n

Monthly Payments and Fees

Checking fee:              $1.00

Savings interest payment:  $12.00

Final Balances

Checking: $499.00

Savings:  $1,212.00

Specifications
Create interfaces named Depositable, Withdrawable, and Balanceable that specify the methods that can be used to work with accounts. The Depositable interface should include this method:

void deposit(double amount)

The Withdrawable interface should include this method:

void withdraw(double amount)

And the Balanceable interface should include these methods:

double getBalance()
void setBalance(double amount)

Create a class named Account that implements all three of these interfaces. This class should include an instance variable for the balance.

Create a class named CheckingAccount that inherits the Account class. This class should include an instance variable for the monthly fee that’s initialized to the value that’s passed to the constructor. This class should also include methods that subtract the monthly fee from the account balance and return the monthly fee.

Create a class named SavingsAccount that inherits the Account class. This class should include instance variables for the monthly interest rate and the monthly interest payment. The monthly interest rate should be initialized to the value that’s passed to the constructor. The monthly interest payment should be calculated by a method that applies the payment to the account balance. This class should also include a method that returns the monthly interest payment.

Create a class named AccountBalanceApp that uses these objects to process and display deposits and withdrawals.

Use the Console class presented in chapter 7 or an enhanced version of it to get and validate the user’s entries. Don’t allow the user to withdraw more than the current balance of an account.

Need to use spring boot app (java), angular in vs code, and MySQL for database. Need to be able to create, edit, delete, update customers in a database and pick a service to assign to each customer and add a price. Needs to be styled with CSS and be responsive. I am looking for something simple!

To get a better idea of how you build your web applications and where your skill level is at, I would like to see you build a web application using test data from https://jsonplaceholder.typicode.com/.

I would like you to complete this challenge using Vue.js

The application should:

-Make use of the users, posts, and comments data from the jsonplaceholder api to show a list of all the users.
-Each user should have a link to another page that displays all the posts that user has created.
-Those posts selectable to show the comments in them.
-You should also have navigation to return to the users page.
-Implement state management.
-Favorite/save posts to the store (Resets on page refresh).
-At least 1 automated test using Vue Test Utils

This should be completed as a single page application that does not refresh the browser when switching between pages.
No back-end code is necessary. Good programming practices should be used. Styling is a bonus.