1 / 26

Real World Programming

Real World Programming. BBrewer Fall 2013. Programming - Bellwork. Log on Go to edmodo Open & Save Vocabulary Graphic Organizer and Analaysis Document Keep edmodo OPEN – just minimize. Programming - Activator. Superpower Video!

chip
Download Presentation

Real World Programming

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. Real World Programming BBrewer Fall 2013

  2. Programming - Bellwork • Log on • Go to edmodo • Open & Save Vocabulary Graphic Organizer and Analaysis Document • Keep edmodo OPEN – just minimize

  3. Programming - Activator Superpower Video! http://www.youtube.com/watch?v=dU1xS07N-FA&edufilter=oSb3mzqNjRLVa-k_WUo0PA&safe=active

  4. Key Learning Knowing how to read a computer program and translate it into English is an essential programming practice.

  5. Unit Essential Question What are the elements of a basic computer program?

  6. Lesson Essential Question How is a basic computer program structured?

  7. Lesson Essential Question What type of commands are used in a basic computer program?

  8. Lesson Essential Question How can I determine if there is an error in the computer program?

  9. Vocabulary Source Code Algorithm Variables Comments String Syntax Debugger Bugs Iteration Program Boolean Function Condition Constant Loop If Statements Pseudocode

  10. Brainstorm: What do we program???

  11. Programmable Cars…

  12. Bellwork To Be Turned In: • Polices and Procedures PowerpointBbrewer Shared Folder • Get to Know You Document Bbrewer Shared Folder • Quiz edmodo – Policies and Procedures

  13. Activate…Can you translate in English??? <!DOCTYPE html> <html> <body> <p>Click the button to display a confirm box.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script> function myFunction() { var x; var r=confirm("Press a button!"); if (r==true) { x="You pressed OK!"; } else { x="You pressed Cancel!"; } document.getElementById("demo").innerHTML=x; } </script> </body> </html>

  14. Let’s Test your Theories… http://www.w3schools.com/js/tryit.asp?filename=tryjs_confirm

  15. Program: Collection of instructions that can process input and produce output when run by a computer.

  16. Syntax: Rules of how code is ordered in programming language.

  17. Source Code: text you type to write a program.

  18. Algorithm: Series of instructions to compute something.

  19. Pseudocode: Brief explanation of code in plain English

  20. Comments: Part of code that explains the process.

  21. String: Values made up of text.

  22. If Statement: code that asks questions which are only run by the computer if the statement is true.

  23. Summary 1. Compare and Contrast different types of code: Details, Patterns, Generalizations 2. Label Comments, Algorithms, If Statements 3. Write Pseudocode for one of the programs.

  24. Bellwork - Vocabulary Review • Comments • Algorithm • Source Code • Syntax • If Statement • String • Program • Pseudocode • Collection of instructions that can process input and produce output when run by a computer. • Rules of how code is ordered in programming language. • Text you type to write a program. • Series of instructions to compute something. • Brief explanation of code in plain English. • Part of code that explains the process. • Values made up of text. • Code that asks questions which are only run by the computer is the statement is true.

  25. Bellwork - Vocabulary Review • Comments • Algorithm • Source Code • Syntax • If Statement • String • Program • Pseudocode • Collection of instructions that can process input and produce output when run by a computer. • Rules of how code is ordered in programming language. • Text you type to write a program. • Series of instructions to compute something. • Brief explanation of code in plain English. • Part of code that explains the process. • Values made up of text. • Code that asks questions which are only run by the computer is the statement is true.

  26. Karel the Dog… CodeHS.com Sign Up! Individual Use ‘home’ email – write in class folder! Password – write in class folder!

More Related