Question
please help witb coding! this is a beginner level class! second picture is what it is suppose to look like
3 - A A A EVENE Äv 21 Never email your code to anyone. Maintain the standards of academic honesty discussed in lecture and in
8. The tds at the bottom, that are to hold the final grade and the letter grade, are to be empty, but need to have ids so tha
0 0
Add a comment Improve this question Transcribed image text
Answer #1

****This requires some effort so please drop a like if you are satisfied with the solution****

index.html:

<html>

<head><link href="style.css" rel="stylesheet"></head>

<body>

<h2>Your Name</h2>

<h1 id="title">CSCE 102 Grade Calculator</h1>

<div>

<table style="text-align:left">

<tr><th>Test 1</th>

<td><label for="exam1">0<input type="range" id="exam1" onchange="test1()">100</label></td>

<td id="test1val">00</td></tr>

<tr><th>Test 2</th>

<td><label for="exam2">0<input type="range" id="exam2" onchange="test2()">100</label></td>

<td id="test2val">00</td></tr>

<tr><th>Final Exam</th>

<td><label for="Fexam">0<input type="range" id="Fexam" onchange="Fexam()">100</label></td>

<td id="FexamVal">00</td></tr>

<tr><th>Labs</th>

<td colspan="2"><input type="number"></td></tr>

<tr><th>Project</th>

<td colspan="2"><input type="number"></td></tr>

<tr><th>Quizzes</th>

<td colspan="2"><input type="number"></td></tr>

<tr><td colspan="3"><button style="width:100%">Calculate Grade</button></td></tr>

<tr><th>Score:</th>

<td colspan="2" id="score"></td></tr>

<tr><th>Letter:</th>

<td colspan="2" id="letter"></td></tr>

</table>

</div>

<script src="script.js"></script>

</body>

</html>

style.css:

table {

border-collapse: collapse;

}

table,th,td{

border: 1px solid black;

}

script.js:

function test1(){

document.getElementById("test1val").innerHTML=document.getElementById("exam1").value;

}

function test2(){

document.getElementById("test2val").innerHTML=document.getElementById("exam2").value;

}

function Fexam(){

document.getElementById("FexamVal").innerHTML=document.getElementById("Fexam").value;

}


Output Screenshot:

Your Name CSCE 102 Grade Calculator Test 1 100 80 Test 2 0 100 82 Final Exam 100/63 Labs Project Quizzes Calculate Grade Scor

Code Screenshot:

1 html> <head><link href style.css rel-stylesheet ></head> <body> <h2>Your Name</h2> <hl id-title>CSCE 102 Grade Calcultable border-collapse: collapse; } table, th, td{ border: 1px solid Oblack; 7 HN3t567function testi{ 1 document.getElementById ( testlval).innerHTML document.getElement ById ( e 2 4 function test2(){ 5 docum

Add a comment
Know the answer?
Add Answer to:
please help witb coding! this is a beginner level class! second picture is what it is...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • I NEED SOME HELP WITH THIS PLEASE :) 1. Create a data entry form on one...

    I NEED SOME HELP WITH THIS PLEASE :) 1. Create a data entry form on one of your web pages for visitors who want to be added to your mailing list. Include one of each of the following input elements*: Text <input type="text".... • Tel <input type="tel".... . Email <input type="email"... Date <input type="date"... . A set of radio buttons <input type="radio"... • A set of check boxes <input type="checkbox"... • A select element with options <select>.....</select> (do NOT add...

  • can you do this js and html question. ill give you the html and js and...

    can you do this js and html question. ill give you the html and js and css files just fix my error use if and else like what i did dont use switch just fix my erorr. <!DOCTYPE html> <!-- Webpage HTML document for Lab 4. Authors: Amirhossein Chinaei, Andriy Pavlovych For: EECS 1012, York University, Lassonde School of Engineering --> <html lang="En"> <head> <meta charset="UTF-8"> <!-- title for web page --> <title> EECS1012: Lab 4 - Computational Thinking </title>...

  • We want to create a program which prints off what letter grade an individual receives based...

    We want to create a program which prints off what letter grade an individual receives based upon whether or not their grade obeys the following condition: grade>= 90 and grade = 80 and grade<89, we will print off “You made a B”, so on and so forth. In this program, we can assume that we are asking the user to enter whatever grade they recieved as a numeric input. NEED HELP WITH ALL PARTS! 4.) Consider the example of grades...

  • Write the code in python, if you cannot answer all the question please dont anser, thanx very much. Please gimme a scr...

    Write the code in python, if you cannot answer all the question please dont anser, thanx very much. Please gimme a screen shot for code. Write clear code with comments and follow coding convention. Comments should include your name, student number and subject code on top of your code Question 1 Create a list to store all the subject codes that you are currently doing at UOW Then use for loop to display it in a table as in the...

  • Please help. I need a very simple code. For a CS 1 class. Write a program...

    Please help. I need a very simple code. For a CS 1 class. Write a program in Java and run it in BlueJ according to the following specifications: The program reads a text file with student records (first name, last name and grade). Then it prompts the user to enter a command, executes the command and loops. The commands are the following: "printall" - prints all student records (first name, last name, grade). "firstname name" - prints all students with...

  • ***************************************PLEASE USE AN ARRAY NOT A POINTER******************************************** Detailed Specification: Write six basic functions for the BST:...

    ***************************************PLEASE USE AN ARRAY NOT A POINTER******************************************** Detailed Specification: Write six basic functions for the BST: Insert, Delete, Search, Find max, Find min, and Print_BST 1. Search(x): Find out the index that stores element x using binary search tree mechanism. Print out all the elements in the search path. 2. Find max(): Find and print maximum value in BST 3. Find min): Find and print minimum value in BST 4. Print BST: Print out the BST structure in the form...

  • PLEASE HELP: EASY CODE. Using your template create a webpage that contains a div. Give the...

    PLEASE HELP: EASY CODE. Using your template create a webpage that contains a div. Give the body element the id of TOOscary. Give the div the id of ghost. At the bottom of the page (just before the closing body tag) insert a script element. In the script element insert an assignment statement to save the content of the webpage using the variable candy. Hint: candy= document.getElementById(‘TOOscary’).innerHTML; We want to save it so we can bring it back after we...

  • URGENT HELP NEEDED: JQuery. PLEASE POST SCREEN SHOTS Task 1: Downloading jQuery Right-click the link to...

    URGENT HELP NEEDED: JQuery. PLEASE POST SCREEN SHOTS Task 1: Downloading jQuery Right-click the link to download the uncompressed latest version of jQuery Copy the jQuery.x.x.x.js file in the folder and specified as source file. Task 2: Download and install HTML-Kit 1. Navigate to htmlkit.com. 2. Click Download HTML-Kit 292. After it downloads, launch HKSetup.exe. Choose Full installation (the default) Uncheck Yes, download and install HTML-Kit Tools Trial. 6. Click Next>Finish. Task 3: Creating a Simple jQuery Application Launch HTML-Kit....

  • X86 Assembly language lab: TITLE Lab 3: assembly language fundamentals               ;;;;; Q1: Don't...

    X86 Assembly language lab: TITLE Lab 3: assembly language fundamentals               ;;;;; Q1: Don't forget to document your program            ; Name:Yuyan Wang ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;; Answer each question below by writing code at the APPROPRIATE places in the file. ;;;;; Hint: the appropriate place is not always right below the question. ;;;;; Q2: Write the directive to bring in the IO library           ;;;;; Q3: Create a constant called MAX and initialize it to 150...

  • i need the code that goes within the <script> opening and closing following the insturctions of...

    i need the code that goes within the <script> opening and closing following the insturctions of the insturctions of the pasted assignment screen shots please. <!DOCTYPE html> <html> <head> <!-- JavaScript 6th Edition Chapter 3 Hands-on Project 3-1 Filename: index.htm --> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width,initial-scale=1.0"> <title>Hands-on Project 3-1</title> <link rel="stylesheet" href="styles.css" /> <script src="modernizr.custom.05819.js"></script> </head> <body> <header> <h1> Hands-on Project 3-1 </h1> </header> <article> <h2>Lunch selections</h2> <form> <input type="checkbox" id="item1" value="8" /> <label for="item1">Fried chicken ($8.00)</label> <input type="checkbox"...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT