Design and Coding Write a function FrequencyOfVowels that takes a string as input and displays the frequency of each vo
Posted: Fri Apr 29, 2022 6:32 am
Design and Coding Write a function FrequencyOfVowels that
takes a string as input and displays the frequency of each vowel
(’a’,’e’,’i’,’o’,’u’). For example, FrequencyOfVowels("Together we
will get there") should display There are: • 5 - e • 1 - i • 1 - o
in the string "Together we will get there" [12] 11. A firm employs
a group of fifty (50) salesmen [with ID numbers represented with 5
characters, ages (integer), and sales] who are paid commission on
that portion of their sales (in Rand value) which exceeds the
four-fifths of the average sales of the group. (a) Give the data
structure to represent the sales of all members of the group. [5]
(b) Write a function that reads the sales value of each salesman
and prints on the screen the ID number and the sales of those who
qualify for commission
takes a string as input and displays the frequency of each vowel
(’a’,’e’,’i’,’o’,’u’). For example, FrequencyOfVowels("Together we
will get there") should display There are: • 5 - e • 1 - i • 1 - o
in the string "Together we will get there" [12] 11. A firm employs
a group of fifty (50) salesmen [with ID numbers represented with 5
characters, ages (integer), and sales] who are paid commission on
that portion of their sales (in Rand value) which exceeds the
four-fifths of the average sales of the group. (a) Give the data
structure to represent the sales of all members of the group. [5]
(b) Write a function that reads the sales value of each salesman
and prints on the screen the ID number and the sales of those who
qualify for commission