Answer all
D Question 18 1 pts One of the answers typically leads to two previously different firms being under joint ownership. Which one? Omergers and acquisitions business mergers government regulation business acquisitions5. The system prepares a check that is mailed to the E. customer. 6. A report is prepared from data stored on magnetic F. tape. 7. Billing data are entered into a system from a ter- G minal and used to update both the sales order database and the customer database. 8. Data from a paper invoice are used to update the H, cash disbursements file. 9. The system prepares two copies of a sales order; I. one copy is sent to the customer and the other is filed. 10. An accounts receivable aging report is prepared from the accounts receivable master file and the cash receipts master file.Prepare a program flowchart to help Melanie program this process. 3.12 Match the flowchart or DFD segments in the right column to an appropriate description in the left column. DFDS 1. Statements are prepared and sent to customers from data contained in the accounts receivable data store. 2. A vendor sends a sales invoice to the accounts payable process. B. 3. The cash receipt process updates the cash receipts data store.Lab Micro Fall 2019 BONUS #1 (2 points): For all of the following questions, draw the Flowchart corresponding to them by hand then capture it and submit it online. Incorrect flowchart gets 0 points (no partial points). General Notes: 1. If part of the problem needs a loop, then you must draw the loop. 2. If part of the flowchart calls a subroutine, then you must draw the flowchart of the subroutine. 3. All flowchart must be labeled (e.g. main, delayD, operationX, .. etc.) 4. Each step should be unambiguous (i.e. well defined (i.e. cannot be interpreted in two different ways)). Question1 (0.5 points): Draw a flowchart for an 8051 program that adds two 16 bits numbers, call them x, and y, then the result is stored in z. Note: 8051 uses registers of length 8bits, then you have to show how the flowchart deals with this problem (hint: check Lab 2's exercise). Question2 (0.5 points): Draw a flowchart for an 8051 program that reads a list of data from the RAM starting at location S (S E [20H, 7FH]). The list is terminated by the value OH. The program then calculates the difference between number of evens and number of odds in the list (0 is not even nor odd). Question3 (1 points): Draw a flowchart for an 8051 program that works as a vending machine. Each switch connected to port 1 is considered as 50Fils coin. The user should turn switches ON and OFF which correspond to the amount of 50filses he inputted. The program then counts the number of 50Filses and output number of 100Filses to port 2, and number of the remaining 50Filses to port 3. (the program should loop forever). Example: If: Port1: 00111011 ;0+0+50+50+50+0+50+50 = 250Fils Then: Port2: 00000010 ;2x100Fils Port3: 00000001 ;1x50Fils