From: karl roger janowski Subject: Test question Date: Monday, October 06, 1997 2:30 PM #1.) segment address = 2000h offset address = sum of F000h and 5000h what is the accessed memory location? #2.) which of the following commands are valid? mov AX, 'CD' mov ES, DS mov [BX+SI], SP sbb DI, [BP+2] pop cs #3.) write a short Procedure using a while-do loop structure that stores in an already declared buffer called MyBuffer, consecutive numbers starting from 2 and going to 27 but leaves out multiples of 3. MyBuffer db 18 dup(?)