You are to create a loop built inside of a table that will convert miles to kilometers. The table conversion list is to begin at 1 and continue through 75. The background of each row is to have have an alternating color.
tr:nth-child(odd) {
background-color: #f0f;
}
(Look up This is not intended to be a rainbow. The final result must have appropriate column headings.
The page background must be colored and it is desired that the text within the cells must also be colored (hint: in-line CSS). The font size must be at least 1 and a half times larger than the default font. The page must be laid out in an aesthetic fashion.
I have some done
I have been doing this assignment for a few weeks now and I am totally lost at this point. I attached my files that I had created from the previous steps in the assignment. The book is Web Fundamentals in Chegg and I will provide screen shots or my log in to whoever accepts the assignment. Basically you will need to modify the files I have attached and add on to them.
You have five tasks in this case study:
Create a new folder for this JavaJam case study.
Modify the style rules in the javajam.css file to configure a two-column page layout, as shown in Figure 6.48.
Modify the Home page to implement the two-column page layout, as shown in Figure 6.49.
The JavaJam menu page is shown in a browser window.
The new JavaJam two-column layout (index.html)
Modify the Menu page (Figure 6.50) to be consistent with the Home page.
The JavaJam home page is shown in a browser window.
The new JavaJam Menu page
Modify the Mu
Project 11-1: Batting Statistics
Create an application that calculates batting statistics for baseball players.
Console
Welcome to the Batting Average Calculator
Enter number of times at bat: 5
0 = out, 1 = single, 2 = double, 3 = triple, 4 = home run
Result for at-bat 1: 0
Result for at-bat 2: 1
Result for at-bat 3: 0
Result for at-bat 4: 2
Result for at-bat 5: 3
Batting average: 0.600
Slugging percent: 1.200
Another player? (y/n): y
Enter number of times at bat: 3
0 = out, 1 = single, 2 = double, 3 = triple, 4 = home run
Result for at-bat 1: 0
Result for at-bat 2: 4
Result for at-bat 3: 0
Batting average: 0.333
Slugging percent: 1.333
Another player? (y/n): n
Bye!
Specifications
The batting average is the total number of at bats for which the player e
Instructions:
You will complete this assignment in Python 3.x. Make sure you have downloaded the software, and it is installed correctly. You will download it from this site: https://www.python.org/downloads/.
You will code the following and submit it in one file. Use the information in the Lessons area for this week to assist you. Save it as a python file (.py), and upload it into the Assignments area.
Create a comment block (starts at line 1 in the code) with the following information:
"""
Your Name
Course Name, Section (example: ENTD200 B002 Spr15)
Instructor name
Week #
Date completed
"""
Problem 1: Create a list (or tuple only, no dictionary) that contains the months of the year. ( do not hardcode the month number)
Proble
Week 7 Assignment: Pseudocode and Flowchart Solution
Instructions:
Create a PowerPoint that contains a FLOWCHART and a PSEUDOCODE for each problem (You may use a different application if PowerPoint is not available).
Use the information below to create a pseudocode (which can be a text-based description for solving the problems) and a flowchart (using flowchart symbols to illustrate how you would program) to solve each problem. Use Microsoft PowerPoint for Pseudocode and the flowchart (You may use a different application if PowerPoint is not available)..
Problem 1: Create a list that contains the months of the year.
Problem 2: Create a loop to print the month number and name (do not hard code the month number)
Consider using the attached enumerate method to help!
Just for clarity, write the pseudocodes and the flowchart. Use the Python List to list the months of the year. Write a
Assignment Instructions
Week 6 Assignment: Variables, IF/THEN/ELSE, Loops
Instructions:
You will complete this assignment in Python 3.x. Make sure you have downloaded the software and it is installed correctly. You will download it from this site: https://www.python.org/downloads/.
You will code the following and submit it in one file. Use the information in the Lessons area for this week to assist you. Save it as a python file (.py), and upload it into the Assignments area.
1. Include comment block on line1 of your code with the following information:
""
"""
Your Name
Course Name, Section (example: ENTD200 B002 Spr18)
Instructor name
Week #
Date completed
"""
2. Create 2 Python programs based on week 5 flowcharts and requirements. You must use loops, do not use function call
Here is a SAMPLE r
-- 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
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