ID Instruction Decode
DF Data Fetch
IE Instruction Execution
RR Return Result
-Tells
computer how much memory to allot for values that will be stored there
-Tells
computer what type of value to allow or expect and helps computer and
programmer to avoid errors in computation
101 |
Dalmations |
Dude |
400 |
Level |
Class |
<html>
<body>
<table border="1">
<tr>
<td>101</td>
<td>Dalmations</td>
<td>Dude</td>
</tr>
<tr>
<td>400</td>
<td>Level</td>
<td>Class</td>
</tr>
</table>
</body>
</html>
Envelope 1: ASK
15
Envelope 2: ASK 13
Envelope 3: ADD 15 13 10
Envelope 4: SAY 10
Envelope 5: NEXT 1
What did the student asking for
numbers from the audience represent?
-GUI
OR
-input/output
mechanism
Dim dog As Integer
Dim cat As Integer
Dim bird As Integer
dog = 0
cat = dog
bird = cat
dog = 0
cat = 0
bird = 0