Answered step by step
Verified Expert Solution
Question
1 Approved Answer
- Write a function that takes a single number as an argument and prints the next 5 numbers in the console. Note: each output should
- Write a function that takes a single number as an argument and prints the next 5 numbers in the console. Note: each output should be displayed on a new line. Test case: If you give 7 to the function, output should look like this: 89101112 Question 3 - Write a function that takes a single number and prints the sum of the next 10 numbers after the given number. - Test case: If you give 7 to the function, output should be: 125 - because (8+9+10+ 11+12+13+14+15+16+17=125) Question 4 - Write a function that takes an array as an argument and prints every element of the array on the console. - Test case: given the array a =[1, "Hello", 8, 44], output should look like this: 1 Hello 8 44 Question 5 - Write a function that takes an array as an argument and prints the total number of elements found in the array. Hint: use a property of the Array object to solve this question. Test case 1: Given the array a =[1, "Hello", 8,44], output should be: 4 Test case 2: Given the array a =[ "world", 13], output should be: 2
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started