Question: Write your programs using C++ In this assignment you must not use your programming language support (nor any libraries) for arbitrary length arithmetic. In your
Write your programs using C++
In this assignment you must not use your programming language support (nor any libraries) for arbitrary length arithmetic.

In your program you must not convert the input binary vectors representing numbers to decimals and use the built-in arithmetic operations on decimals. The operations must be performed on the binary vectors.
include a brief description of the algorithms you implemented, a list of test cases you tried and the results and compilation and execution instructions for your programs.
Problem 1. Design and implement an algorithm that takes two non-negative binary integers x and y represented and returns the quotient and the remainder of the integer division of x by y. Assume that y >0. Represent both the quotient and the remainder as vectors of binary integers. (You can implement the division algorithm from the textbook). Test vour program for the following binarv integers x and v I. x=[0, 1, 1, 0, 0, 0, 1, 1, 1] andy = [1, 1, 1, 1, 0, 1, 1, 0, 1] 2.x=[1, 0, 0, 1, 1, 0, 0, 0, 1, 1, 1] andy = [0, 1, 1, 0, 1] 3.x=[1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1] and
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
