It's a long time since I taught at UCL. In retirement, I got involved in a UK STEM project to get more computing into schools and the simulators were things I wrote as part of that. Thank you for using my simulator. Peter Higginson
@ComputerScienceLessons2 жыл бұрын
Thank YOU for creating the simulator. As a [almost retired] school teacher, I still make good use of your simulator when teaching kids about CPU architecture and low level programming. The instruction set is even part of OCR's A Level course :)KD
@drakata272 жыл бұрын
Thank you sir, a very well done video. It will help me in my computer architecture lesson 👍
@ComputerScienceLessons2 жыл бұрын
Glad to help :)KD
@TrinityChapelIntl3 жыл бұрын
Great Job. This will help teach the programming fundamentals to the upcoming students.
@ComputerScienceLessons3 жыл бұрын
I'm delighted to help another teacher :)KD
@dannyielpoloz31298 ай бұрын
2 years late but this helped me so much thanks man
@igooazoovig43063 жыл бұрын
Great vid, looking forward for upcoming episodes.$
@ComputerScienceLessons3 жыл бұрын
I'm editing episode right now :)KD
@beamboy07 Жыл бұрын
amazing and very clear thank you very much!
@ComputerScienceLessons Жыл бұрын
You are most welcome :)KD
@iflookscouldsha2 жыл бұрын
I just want to say your videos are better than craig and daves. Thank you
@ComputerScienceLessons2 жыл бұрын
I delighted to hear that. I used to work in the same school as Dave. :)KD
@beamboy07 Жыл бұрын
@@ComputerScienceLessons both top tier uk computer science you are probably more clear at explaining though
@xylophone37642 ай бұрын
I count this as my revision
@rolinho23 жыл бұрын
good refresher video - nicely done
@ComputerScienceLessons3 жыл бұрын
Thank you :)KD
@natking1u1z992 жыл бұрын
This is a very good explanation but I have to listen at 1.25x speed for the sake of my brain wanting to do everything fast.
@ComputerScienceLessons2 жыл бұрын
It's a tricky balance :)KD
@stickbreads6719 Жыл бұрын
good morning usa i have feeling that its going to be a wonderful day
@stickbreads6719 Жыл бұрын
if a teacher sets me this as homework im gonna be hanging
@ComputerScienceLessons Жыл бұрын
It's the start of spring :)KD
@caiotorres61568 ай бұрын
such a great teaching process wow makes my teacher look like an amateur lmfao
@algorithminc.88503 жыл бұрын
Useful video ... thank you ... will pass it along ... subscribed (fun channel).
@xd_hp39542 жыл бұрын
very helpful vid thank you !
@ComputerScienceLessons2 жыл бұрын
You're welcome :)KD
@jeffsad83914 ай бұрын
Question:Should you begin with c++ and then assembly?
@zakaria.l9577 Жыл бұрын
thanks mister
@ComputerScienceLessons Жыл бұрын
You're welcome :)KD
@RayRay-ym9xy2 жыл бұрын
Ask the user for two numbers. Print out the answer to first number minus the second number, followed by the answer to the second number minus the first number. Example test data Expected output 7, 3 4, -4
@solaris4133 жыл бұрын
why u re-uploaded?
@ComputerScienceLessons3 жыл бұрын
The original VB code snippet included MsgBox(X) instead of MsgBox(Z). I might have confused some people so I had to fix it. :)KD
@Dudleymiddleton3 жыл бұрын
This is a repeat?
@ComputerScienceLessons3 жыл бұрын
Yes - the original VB code snippet included MsgBox(X) instead of MsgBox(Z). For the uninitiated, tiny errors like that can be very confusing. :)KD
@xyzabc08 Жыл бұрын
write a program in little man computer that takes a variable number of user inputs until the user enters 0. the program then prints out the sum of the user inputs. for example, if the user enters 5, 1, 11, 12, 2 and 0, the program outputs 31. if the user enters 2, 1, 0, the program outputs 3. Pleasee helppp
@ComputerScienceLessons11 ай бұрын
Try this :)KD START INP STA INPUT LDA INPUT BRZ PRINT ADD SUM STA SUM BRA START PRINT LDA SUM OUT HLT INPUT DAT 0 SUM DAT 0
@japaneselearner340511 ай бұрын
Video’s code: INP STA NUM1 INP STA NUM2 LDA NUM1 ADD NUM2 STA RESULT OUT HLT NUM1 DAT NUM2 DAT RESULT DAT