Question: Objective: C++ Function II Activity: ** For each question, write pseudocode definition as part of design before going for implementation. ** Please provide sufficient test
Objective:C++ Function II
Activity:
** For each question, write pseudocode definition as part of design before going for implementation.
** Please provide sufficient test cases for each question.

1. Enhance Binary System Conversion program with Lab05.2 Addition Function Write a program that accepts two positive binary number in string and perform the addition with Lab05.2 function enhance in a way can accept binary string in addition to decimal string (use input parameter to control the base2 or baselO addition) and output the as binary string. (Optional: Demonstrate 8 bits and 16 bits in length as inputs.) // the example function prototype for addition function below where accepting two numbers, m, and base as input; output the addition result as string type as return value; base should be 2 or 10 as required. string addFunction(string numberA, string numberB, int m, int base)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
