└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # Simple function Related Practice Tasks 2 | 3 | ### Task-1 4 | Take four parameters. Multiply the four numbers and then return the result 5 | 6 | --- 7 | 8 | ### Task-2 9 | Take a number if the number is odd multiply it by 2 and return the result. If the number is even divide it by two and return the result. 10 | 11 | --- 12 | 13 | ### Task-3 14 | Write a function called make_avg() which will take an array of integers and the size of that array and return the average of those values. 15 | 16 | --- 17 | 18 | ### Task-4 19 | Write a function called count_zero() which will take a binary string (Binary string is a string which is consist of only 0 and 1) as parameter and count how many 0’s are there in that string. 20 | 21 | --- 22 | 23 | ### Task-5 24 | Write a function called odd_even() which takes an integer value and tells whether this value is even or odd. If even return `Even`. If odd return `Odd` 25 | --------------------------------------------------------------------------------