These are two programs. I need someone to write Assembly Programming codes for these two programs. The Architecture is 8086. File format .asm and it should work in NASM.
1. Write a program to search a particular element from an array using binary search. If the element is found set AX to one and otherwise to zero. It needs to be sorted first. Code should do the sorting part and then same code implements binary search. Code should be generic, take
array elements and array size in memory.
2. Take two arrays in memory as input sets, and find;
a) union
b) intersection
c) difference
of these two sets and store the result sets in the memory.