Difference between revisions of "CSC231 Homework 1 2014"

From dftwiki3
Jump to: navigation, search
(Problem 2)
Line 29: Line 29:
 
  B
 
  B
  
Your program should have as small a data section as you can make it.
+
Your program should have as small a data section as you can make it.  Your grade will depend on the size of your data section.  The smaller the data section, the closest to 100.
  
 
Submit your program to Moodle's Homework 1, Problem 2.
 
Submit your program to Moodle's Homework 1, Problem 2.

Revision as of 07:22, 16 September 2014

--D. Thiebaut (talk) 21:16, 15 September 2014 (EDT)




This assignment is due on 9/23/14 @ 11:55 p.m. on Moodle.


Problem 1


Go to Moodle and answer the questions in the Homework 1, Problem 1 section. This section deals with binary, decimal, and hexadecimal number systems.

Problem 2


Write an assembly language program that outputs this pattern:

A
AA 
AAA
AAAA
AAAAA
BBBBB
BBBB
BBB
BB
B

Your program should have as small a data section as you can make it. Your grade will depend on the size of your data section. The smaller the data section, the closest to 100.

Submit your program to Moodle's Homework 1, Problem 2.

Notes
1) The fact that the letters 'A' and 'B' are printed is important. Look at their Ascii code in the Ascii table.
2) A string is just a collection of bytes. These bytes are numbers. Nothing special about numbers...