Question: (5 points) Start with an array called inputtable . The array should have numbers between 1 and 10. NOTE: Do NOT use a form of

  1. (5 points) Start with an array called inputtable. The array should have numbers between 1 and 10.

NOTE: Do NOT use a form of a for loop anywhere, including iterators. This is meant to be a functional exercise.

  1. (30 points) Use inputtable from step 1 to create the following: -
    1. Set of multiples of 5 between 1 and 51. Name it fiveTable
    2. Set of multiples of 13 between 1 and 131. Name it thirteenTable
    3. Set of squares of the numbers in inputtable. Name it squaresTable
  2. (10 points) Get the odd multiples of 5 between 1 and 100. 5, 15,
  3. (20 points) Get the sum of even multiples of 7 between 1 and 100.
    1. Example, find the multiples and then sum them: 14 + 28+
  4. (15 points) Use currying to rewrite the function below: -

function cylinder_volume(r, h){

var volume = 0.0;

volume = 3.14 * r * r * h;

return volume;

}

Use r = 5 and h = 10 to call your curried function.

  1. (15 points) Use the following code to take advantage of closures to wrap content with HTML tags, specifically show an HTML table consisting of a table row that has at least one table cell/element. You can use the console to output your results.

makeTag = function(beginTag, endTag){

return function(textcontent){

return beginTag +textcontent +endTag;

}

}

  1. (5 points) Following instructions
  2. (Extra credit) Do the generic version of questions 3 and 4, meaning the target multiple must not be hard coded first odd or even and then the number whose multiples (in range 1 to 100) you want.
in java script

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!