PRASHNIKAप्रश्निका
‹ Back to the paper

A class Mix has been defined to mix two words, character by character, in the following manner: The…

Computer Science202010 marksProgram
A class Mix has been defined to mix two words, character by character, in the following manner: The first character of the first word is followed by the first character of the second word and so on. If the words are of different length, the remaining characters of the longer word are put at the end. Example: If the First word is “JUMP” and the second word is “STROLL”, then the required word will be “JSUTMRPOLL” Some of the members of the class are given below: Class name : Mix Data member/instance variable: wrd : to store a word len : to store the length of the word Member functions/methods: Mix( ) : default constructor to initialize the data members with legal initial values void feedword( ) : to accept the word in UPPER case void mix_word( Mix P, Mix Q ) : mixes the words of objects P and Q as stated above and stores the resultant word in the current object void display( ) : displays the word Specify the class Mix giving the details of the constructor( ), void feedword( ), void mix_word( Mix, Mix ) and void display( ). Define the main( ) function to create objects and call the functions accordingly to enable the task.

Answer

No answer yet.

Objects

From ISC 2020 Computer Science Paper 1, question 9.