1 / 7

Hex -> Denary

Hex -> Denary. State the denary representation of the hex number 5D Do not look it up on the internet. Learning Objectives. To understand where marks are allocated on specific exam questions To be able to interpret given sections of C++ code. C++.

anakin
Download Presentation

Hex -> Denary

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Hex -> Denary • State the denary representation of the hex number 5D • Do not look it up on the internet.

  2. Learning Objectives • To understand where marks are allocated on specific exam questions • To be able to interpret given sections of C++ code

  3. C++ If(GetKeyboard()->IsPressed(Keyboard::Up)) { SetPositionY(GetPositionY() + 5); }

  4. C++ if(GetKeyboard()->IsPressed(Keyboard::Left)) { SetPositionX(GetPositionX() – 5); }

  5. C++ int speed speed = 10; if(GetKeyboard()->IsPressed(Keyboard::Left)) { SetPositionX(GetPositionX() - speed); }

  6. C++ if(GetKeyboard()->IsPressed(Keyboard::P)) { Play(); } if(GetKeyboard()->IsPressed(Keyboard::S)) { Stop(); }

  7. C++ if(GetKeyboard()->IsPressed(Keyboard::P)) { Play(); SetLoop(true); }

More Related