Question: 12. Design an assembly program to draw the following pattern: ** **** ** *** *** ** *** ** * ** 13. Design an assembly
12. Design an assembly program to draw the following pattern: ** **** ** *** *** ** *** ** * ** 13. Design an assembly program to read any string then encode it according to the following encryption rule: Letter with index 0 is encrypted to letter with index 25 Letter with index 1 is encrypted to letter with index 24 Letter with index 2 is encrypted to letter with index 23 Enter any string: Hello my dear friend The encrypted string is: SvooL nb wvzi uirvmw 12. Design an assembly program to draw the following pattern: ** **** ** *** *** ** *** ** * ** 13. Design an assembly program to read any string then encode it according to the following encryption rule: Letter with index 0 is encrypted to letter with index 25 Letter with index 1 is encrypted to letter with index 24 Letter with index 2 is encrypted to letter with index 23 Enter any string: Hello my dear friend The encrypted string is: SvooL nb wvzi uirvmw
Step by Step Solution
3.37 Rating (153 Votes )
There are 3 Steps involved in it
To design an assembly program to draw the pattern you can use the following code Code snippet mov cx 4 L1 push cx L2 mov ah 2 mov dl int 21h loop L2 mov dl 0Dh int 21h mov dl 0Ah int 21h pop cx loop L... View full answer
Get step-by-step solutions from verified subject matter experts
