Difference between revisions of "CSC231 Homework 1 2014"

From dftwiki3
Jump to: navigation, search
Line 7: Line 7:
  
 
<bluebox>
 
<bluebox>
This assignment is due on 9/16/14 @ 11:55 p.m. on Moodle.  
+
This assignment is due on 9/23/14 @ 11:55 p.m. on Moodle.  
 
</bluebox>
 
</bluebox>
 
<br />
 
<br />

Revision as of 07:21, 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.

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...