Array Functions
Exercise 1
- Create a function which takes a string of all lowercase, return a string with First Later
uppercase.
Exercise 2
- Create a function which counts the digit provided as argument.
Exercise 3
- Create a function named palindrome which checks the number whether it is same if we read from the end.
Retrun boolen value.
Exercise 4
- Create a function which return array elements which sort and reverse order of elements.
Exercise 5
- Create a function to check whether an 'input' is an array or not.
Exercise 6
- Create function to get the first element of an array as new variable and
return the name & the value of that new variable in a string.
Exercise 7
- Create a function to get all elements of the array into a single string
using value of second argument.
Exercise 8
- Create a function to prints all the elements of nested array into single array.
Exercise 9
- Create a functions which takes Array as argument return new Array by multiplying each array element with 2.
Exercise 10
- Create a functions to find the sum of squares of a array elements.
Exercise 11
- Create a functions to remove negative values from an array.
Exercise 12
- Create a functions which takes an array and return a sum of odd elements in array.