
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Question
Write this using a java script function and test with a mocha or postman to see if it passes the test
![2 COMP1231 - Assignment 2(2).pdf - Adobe Reader
File Edit View Window Help
Оpen
/ 8
173%
Tools
Fill & Sign
Comment
Sign In
v Export PDF
Adobe ExportPDF
Convert PDF files to Word or Excel
online.
Select PDF File:
4 COMP1231 - Assignment 2(...
1 file / 285 KB
Function 4: Class Grading
Convert To:
Microsoft Word (*.docx)
function four( array )
Recognize Text in English(U.S.)
Change
Create a JavaScript function that meets the following requirements:
Convert
• Create PDF
Receives a variable length array of numbers, representing student grades in a course
• Edit PDF
The function traverses the array to determine the number of passing and failing grades.
• Combine PDF
• Send Files
A passing grade, is grade greater than or equal to 50
• Store Files
The function displays the count (console log) for the number passing grades, failing grades and overall
class average as illustrated below
Average class grade is rounded to 1 decimal point
The function returns the array containing the number of passing grades, the number of failing grades, and
the overall averages of the grades, respectively, back to the caller
Calling _four([50,51,80,45])
The number of passing grades: 3, failing grades: 1, and class average: 56.5
Calling _four([35,45,25,10,6,33])
The number of passing grades: 0, failing grades: 6, and class average: 25.7
Calling _four([80,90])
The number of passing grades: 2, failing grades: 0, and class average: 85.0](https://content.bartleby.com/qna-images/question/849c8b78-282b-4953-85fb-f36540ae4832/fc0e6d59-75b5-47d4-98bd-21f247ab159d/5no0q98_thumbnail.png)
Transcribed Image Text:2 COMP1231 - Assignment 2(2).pdf - Adobe Reader
File Edit View Window Help
Оpen
/ 8
173%
Tools
Fill & Sign
Comment
Sign In
v Export PDF
Adobe ExportPDF
Convert PDF files to Word or Excel
online.
Select PDF File:
4 COMP1231 - Assignment 2(...
1 file / 285 KB
Function 4: Class Grading
Convert To:
Microsoft Word (*.docx)
function four( array )
Recognize Text in English(U.S.)
Change
Create a JavaScript function that meets the following requirements:
Convert
• Create PDF
Receives a variable length array of numbers, representing student grades in a course
• Edit PDF
The function traverses the array to determine the number of passing and failing grades.
• Combine PDF
• Send Files
A passing grade, is grade greater than or equal to 50
• Store Files
The function displays the count (console log) for the number passing grades, failing grades and overall
class average as illustrated below
Average class grade is rounded to 1 decimal point
The function returns the array containing the number of passing grades, the number of failing grades, and
the overall averages of the grades, respectively, back to the caller
Calling _four([50,51,80,45])
The number of passing grades: 3, failing grades: 1, and class average: 56.5
Calling _four([35,45,25,10,6,33])
The number of passing grades: 0, failing grades: 6, and class average: 25.7
Calling _four([80,90])
The number of passing grades: 2, failing grades: 0, and class average: 85.0
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 4 steps with 2 images

Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
- Give Description of TESTarrow_forwardWrite a function in JAVA language that accepts three integer parameters and returns true if two or more of them (integers) have the same rightmost digit. The integers are non-negative. Inside the main function test the function for at least two test cases.arrow_forwardWrite a program that creates an input function to enter a string. Then use .isalpha method to find ifthe first character in the string starts with a letter or a non-letter. (Hint: use indexing and if and if notfunction). Make sure to print the two statements ‘Your string starts with a letter’ and ‘Your stringcontains a non-letter’)arrow_forward
- Use the cubicSpline module to write programs that interpolate between a given data point with a cubic spline. The program must be able to evaluate the interpolant for more than one x value. As a test, use the data points specified in the previous Example and calculate the interpolants at x = 1.5 and x = 4.5 (due to symmetry, these values must be the same) import numpy as np from cubicSpline import * xData = np.array([1,2,3,4,5], float) yData = np.array([0,1,0,1,0], float) k = curvatures (xData, yData) while True: try: x = eval(input("\nx ==> ")) except SyntaxError: break print("y=", evalSpline (xData, yData, k, x)) input ("Done. Press return to exit") Exercise Fix the Cubic Spline Program There is an error in the Cubic Spline program, fix it and evaluate the values of x 1/2 = 1.5 and x = 4.5, where the results of both values must be the same.arrow_forwardCreate a function in MATLAB that does the following without utilising any of the program's built-in functions (don't use dec2bin or any of the others): Perform the conversion from decimal to binary, octal, or hexadecimal for an integer. Converting from binary, octal, or hexadecimal to decimal is another important step.arrow_forwardUSING C++ Please fix the errors in the code (image attached) with the failed test warning (image attached). Thank you! Write a program that removes all non-alphabetic characters from the given input. Ex: If the input is: -Hello, 1 world$! the output is: Helloworld Your program must define and call the following function that takes a string as a parameter and returns the string without any non-alphabetic characters.string RemoveNonAlpha(string userString)arrow_forward
- IN JAVA Write a function that takes in user input as a string. For all characters which are numeric, double its value and, if it is two digits, then replace it with the sum of its digits (e.g., 6 → 12 → 3 whereas 3 → 6). For all characters which are in uppercase, replace it with lowercase. For all characters which are in lowercase, replace it with uppercase (e.g., m → M and N → n). The program should keep asking the user to enter strings until they either enter ‘q’ or ‘Q’.arrow_forwardThe Python print function supports other keyword parameters besidesend. One of these other keyword parameters is sep. What do you thinkthe sep parameter does? Hint: sep is short for separator. Test your ideaeither by trying it interactively or by consulting the Python documentation.arrow_forwardIn Python language, define a function that takes two parameters count and sum as the parameters and returns the average from the function. Also, make a call to the function for some sample test cases.arrow_forward
- Use Matlab to write a function that calculates the area of a triangle given length of the three edges.arrow_forwardpython help... Write a function justVowels() that takes a string as a parameter and returns a new string that contains all the vowels found in the parameter string. The vowels in the returned string should appear in the same order as they did in the parameter string. A vowel is one of a, e, i, o, or u. both the upper- and lower-case vowels should be included. The characters in the returned string should have the same capitalization as they did in the parameter string. If the function is given a string without any vowels or an empty string, it should return the empty string. Use the if-else condition with iterate loop pattern. Don’t forget to include the docstring and comments. How it should run... >>> justVowels('Did you include your collaboration statement') 'iouiueouoaoaioaee' >>> justVowels('If you did not include your collaboration statement no points') 'Iouioiueouoaoaioaeeooi' >>> justVowels('1,2,3,4,...') '' >>> justVowels('') ''arrow_forwardWrite a function definition for a bool function called isEven. This function takes an integer value parameter, and returns boolean value true if the parameter is even and false if it is odd. Write a simple driver program to test your function. Show your full source code and a screenshot of your output.arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education