+1(316)4441378

+44-141-628-6690

Archive for the ‘Websites, web programming’ Category

Enquiry Page

- 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

Create a Bootstrap site using Dreamweaver.

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.

Create a Bootstrap site using Dreamweaver.

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

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 Balanceab

Simple CRM

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!

VueJS

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.

VueJs API application

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

Project 8-2 Person Manager

Project 8-2: Person Manager
Create an application that lets you enter a new customer or a new employee.

Console
Welcome to the Person Manager



Create customer or employee? (c/e):

Error! This entry is required. Try again.

Create customer or employee? (c/e): p

Error! Entry must be 'c' or 'e'. Try again.

Create customer or employee? (c/e): c



First name: Steve

Last name: Trevor

Customer number: M10293



You entered a new Customer:

Name: Steve Trevor

Customer Number: M10293



Continue? (y/n): y



Create customer or employee? (c/e): e



First name: Diana

Last name: Prince

SSN: 111-22-3333



You entered a new Employee:

Name: Diana Prince

SSN: xxx-xx-3333



Continue? (y/n): OK

Error! Entry must be 'y' or 'n'. Try again.

Continue? (y/n): n

Specifications
Create a

JavaScript for beginners

1.Create an html page, add 3 text boxes in which the user will input 3 numbers :a,b,c
Add a button that, on click, will calculate ((a*b) + (b*c)) / (a+b). The result will be displayed in an alert.

2. Create an html page, add 3 text boxes in which the user will input 3 numbers :a,b,c
Add a button that, on click, will calculate the maximum number of the three. The result will be displayed in an alert. The program should not crash if the user does not input one or two numbers.
Cases:
-If no number is introduced then a message should be displayed asking the user to input at least on number.
-If only one number of the three is introduced, that number is the maximum number.
-If two numbers are introduced then it should be displayed the maximum of the two.
-If three numbers are introduced then it should be displayed the maximum of the three.


3. Create an html page, add 2 text boxes in which the user will input 2 numbers: n and m
Add a button that,

Project 7-3: Guessing Game

Project 7-3: Guessing Game
Convert a previous application so it uses classes to organize its code.

Console
Welcome to the Guess the Number Game

++++++++++++++++++++++++++++++++++++



I'm thinking of a number from 1 to 100.

Try to guess it.



Enter number: 50

You got it in 1 tries.

Great work! You are a mathematical wizard.



Try again? (y/n): y



I'm thinking of a number from 1 to 100.

Try to guess it.



Enter number: 50

Way too high! Guess again.



Enter number: 30

Too high! Guess again.



Enter number: 15

Too low! Guess again.



Enter number: 23

Too high! Guess again.



Enter number: 19

Too low! Guess again.



Enter number: 21

Too high! Guess again.



Enter number: 20

You got it in 7 tries.

Not too bad! You've got some potential.<