Computer Literacy PowerPoint Dustin Llanes Comm. 165.

Slides:



Advertisements
Similar presentations
An Introduction to Programming By :- Vishal Hirani B.Tech II year (CSE)
Advertisements

Write a program step by step. Step 1: Problem definition. Given the coordinate of two points in 2-D space, compute and print their straight distance.
Chapter 1 - VB 2008 by Schneider1 Chapter 1 - An Introduction to Computers and Problem Solving 1.1 An Introduction to Computers 1.2 Windows, Folders, and.
101.  Computers DO NOT think for themselves. For them to do anything they need to be told what to do.  Simply put computer programming is when you tell.
CS001 Introduction to Programming Day 3 Sujana Jyothi
Object-Oriented Analysis and Design Lecture 10 Implementation (from Schach, “O-O and Classical Software Engineering”)
 Monday, 9/30/02, Slide #1 CS106 Introduction to CS1 Monday, 9/30/02  QUESTIONS (on HW02, etc.)??  Today: Libraries, program design  More on Functions!
CS211 Data Structures Sami Rollins Fall 2004.
Chapter 16 Programming and Languages: Telling the Computer What to Do.
CS31: Introduction to Computer Science I Discussion 1A 4/2/2010 Sungwon Yang
Presentations and Reports. Goal: to Communicate  Both presentations and reports should have a purpose  to inform  to convince  The content should.
Programming Introduction November 9 Unit 7. What is Programming? Besides being a huge industry? Programming is the process used to write computer programs.
Chapter 1 Program Design
CS 101 Problem Solving and Structured Programming in C Sami Rollins Spring 2003.
Computing Theory: BBC Basic Coding Year 11. Lesson Objective You will: Be able to define what BBC basic is Be able to annotate BBC basic code Be able.
COMPUTER SCIENCE 10: INTRODUCTION TO COMPUTER SCIENCE Dr. Natalie Linnell with credit to Cay Horstmann and Marty Stepp.
Introduction to Computer Software
Concept of Computer Programming November 2, 2011.
PYTHON: LESSON 1 Catherine and Annie. WHAT IS PYTHON ANYWAY?  Python is a programming language.  But what’s a programming language?  It’s a language.
6 Steps of the Programming Process
Introduction to Java Tonga Institute of Higher Education.
Simple Program Design Third Edition A Step-by-Step Approach
Standard Grade Computing SYSTEM SOFTWARE CHAPTER 19.
Python Programming Introduction to programming using python.
Introduction to Programming ICS2O Findlay. Learning Goals  We will learn  The definitions of a computer, program and programming language.  The different.
Mr C Johnston ICT Teacher BTEC IT Unit 06 - Lesson 01 Introduction to Computer Programming.
Web Design-Lecture1-QN-2003 Web Design Web Design Using HTML.
Basic HTML PowerPoint How Hyper Text Markup Language Works
Computer Programming TCP1224 Chapter 3 Completing the Problem-Solving Process and Getting Started with C++
INTRODUCTION SOFTWARE HARDWARE DIFFERENCE BETWEEN THE S/W AND H/W.
IXA 1234 : C++ PROGRAMMING CHAPTER 1. PROGRAMMING LANGUAGE Programming language is a computer program that can solve certain problem / task Keyword: Computer.
3/5/2009Computer software1 Introduction Computer System Hardware Software HW Kernel/OS API Application Programs SW.
C++ Basics C++ is a high-level, general purpose, object-oriented programming language.
Unit 5 Reflection presentation assignment.  First strength would be is I organize my essay before writing it  Second strength would be is that once.
Lecture 13: 10/10/2002CS149D Fall CS149D Elements of Computer Science Ayman Abdel-Hamid Department of Computer Science Old Dominion University Lecture.
Introduction to Python Lesson 1 First Program. Learning Outcomes In this lesson the student will: 1.Learn some important facts about PC’s 2.Learn how.
Lesson - 2. Introduction When we make a program we must follow some steps, called Programming Development Life Cycle (PDLC). Programming steps are five:
CS001 Introduction to Programming Day 2 Sujana Jyothi
1 Introduction to Python LING 5200 Computational Corpus Linguistics Martha Palmer.
How Are Computers Programmed? CPS120: Introduction to Computer Science Lecture 5.
Programming Introduction. What is a program? Computers cannot think for themselves, they can only follow instructions. A program is a set of instructions.
Searching Topics Sequential Search Binary Search.
Tuesday, 1 st of Aban 1 st TA Session.  Let’s Meet:  I’m Aideen NasiriShargh, a 83er of CE, a C(++) Lover!  You’re 86ers of EE!  You’re supposed to.
Simple algorithms on an array - compute sum and min.
To make a robot operate without constant human interaction, it must know what to do, when to do it, what order to follow, and perhaps even what to do if.
Software. Introduction n A computer can’t do anything without a program of instructions. n A program is a set of instructions a computer carries out.
RESEARCH DESIGN EXPERIMENT ON WRITING BY: GUADALUPE CASTRO.
Computer Programming Week 1: The Basics of CP 1 st semester 2012 School of Information Technology Website:
Introduction to Computer Programming Concepts M. Uyguroğlu R. Uyguroğlu.
CUT AND PASTE Learn how to cut and paste in a word document. By: Elizabeth Meringer.
INTRODUCTION TO COMPUTER PROGRAMMING ITC-314. Computer Programming  Computer Programming means creating a sequence of instructions to enable a computer.
3/5/2002e-business and Information Systems1 Introduction Computer System Hardware Software HW Kernel/OS API Application Programs SW.
Problem Identification
How to Write Lesson Plan
Computer Apps Honors: A trip down memory lane
Understand the Programming Process
CS212 Data Structures 2018 Second Semester.
Getting Started with Google Applications
Understand the Programming Process
Introduction to Programming
Tonga Institute of Higher Education IT 141: Information Systems
Thinking about programming
Computing Introduction.
C Programming Language
Tonga Institute of Higher Education IT 141: Information Systems
Introduction to Python
Hello World C By Anand George.
Hello Hi Hello Hi Hello Hi Hello Hi Hello Hi Hello Hi.
Getting Started With Coding
Week 1 - Friday COMP 1600.
Presentation transcript:

Computer Literacy PowerPoint Dustin Llanes Comm. 165

Introduction A computer program (i.e. powerpoint) is really just a set of instructions, a code, telling your computer what to do when. These programs can be really easy, or super complex. They are written in a computer language code.

Programs Programs help your computer know what to do. A program for your computer is like creating an outline before a big paper, it helps keep you in order. These programs need to be properly maintained to ensure their constant success.

Programs There are many steps to designing a program.. Set & Review goals: What is it supposed to do? Design: Create the strategy to achieve goal. Coding: Write the program. Testing: Try it out with real people. Documentation: What you did and why. How to use it.

Sample Program Using old microsoft technology (BASIC) I have created my own sample program. 10 INPUT "What is your name: "; U$ 20 PRINT "Hello "; U$ 30 REM 40 PRINT "Goodbye "; U$ This program will ask your name, say hello, and then say goodbye.

Computer Languages Different computer languages are used to write different types of programs. The computer understands these languages and translates it into the code so you don’t have to.

Computer Languages Cont. Once the program is written, it can either be translated or compiled – Translated changes the text into code – Compiled changes the code into text

If you want to know more… Visit Jan’s Computer Basics at –