Principles of Information Technology

Slides:



Advertisements
Similar presentations
Introduction to Programming Lecture 2. Today’s Lecture Software Categories Software Categories System Software System Software Application Software Application.
Advertisements

COSC 120 Computer Programming
Copyright © 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with Programming Logic & Design First Edition by Tony Gaddis.
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. COMPSCI 125 Introduction to Computer Science I.
Copyright © 2012 Pearson Education, Inc. Chapter 1: Introduction to Computers and Programming.
Introduction to Computers and Programming. Some definitions Algorithm: –A procedure for solving a problem –A sequence of discrete steps that defines such.
Copyright © 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with C++ Early Objects Sixth Edition by Tony Gaddis, Judy Walters,
©TheMcGraw-Hill Companies, Inc. Permission required for reproduction or display. COMPSCI 125 Introduction to Computer Science I.
Introduction to Computers and Programming. Some definitions Algorithm: Algorithm: A procedure for solving a problem A procedure for solving a problem.
C programming Language and Data Structure For DIT Students.
1 Presentation on System Programming Course Code:- CM5G Subject Teacher :- Mr. Pankaj M Ughade Dept :- Computer Technology G. H. Raisoni polytechnic college,
Types of software. Sonam Dema..
Copyright 2003 Scott/Jones Publishing Brief Version of Starting Out with C++, 4th Edition Chapter 1 Introduction to Computers and Programming.
Copyright © 2012 Pearson Education, Inc. Chapter 1: Introduction to Computers and Programming.
Chapter Introduction to Computers and Programming 1.
Chapter 1: Introduction to Visual Basic.NET: Background and Perspective Visual Basic.NET Programming: From Problem Analysis to Program Design.
CIS Computer Programming Logic
General Computer Science for Engineers CISC 106 Lecture 02 Dr. John Cavazos Computer and Information Sciences 09/03/2010.
4 - 1 Copyright © 2006, The McGraw-Hill Companies, Inc. All rights reserved.
Copyright © 2012 Pearson Education, Inc. Chapter 1: Introduction to Computers and Programming.
Chapter 1: Introduction to Computers and Programming.
Copyright © 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 1: Introduction to Computers and Programming.
Computer Programming I. Today’s Lecture  Components of a computer  Program  Programming language  Binary representation.
UNIT - 1Topic - 3. Computer software is a program that tells a computer what to do. Computer software, or just software, is any set of machine-readable.
CS CS Computing for Business Instructor:David Tucker GTA:Batul Mirza.
IXA 1234 : C++ PROGRAMMING CHAPTER 1. PROGRAMMING LANGUAGE Programming language is a computer program that can solve certain problem / task Keyword: Computer.
Chapter 1 Introduction Chapter 1 Introduction 1 st Semester 2015 CSC 1101 Computer Programming-1.
An Object-Oriented Approach to Programming Logic and Design Chapter 1 An Overview of Computers and Logic.
FOUNDATION IN INFORMATION TECHNOLOGY (CS-T-101) TOPIC : INFORMATION SYSTEM – SOFTWARE.
1 Principles of Information Technology Introduction to Software and Information Systems Copyright © Texas Education Agency, All rights reserved.
Copyright 2003 Scott/Jones Publishing Standard Version of Starting Out with C++, 4th Edition Chapter 1 Introduction to Computers and Programming.
Getting Started With Java September 22, Java Bytecode  Bytecode : is a highly optimized set of instructions designed to be executed by the Java.
Sahar Mosleh California State University San MarcosPage 1 Finite State Machine.
Data Representation. How is data stored on a computer? Registers, main memory, etc. consists of grids of transistors Transistors are in one of two states,
Chapter 1: Introduction to Visual Basic.NET: Background and Perspective Visual Basic.NET Programming: From Problem Analysis to Program Design.
Introduction to C Programming
Welding Symbols Copyright © Texas Education Agency, All rights reserved.
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.
INTRODUCTION TO COMPUTER PROGRAMMING(IT-303) Basics.
Chapter 1: Introduction to Computers and Programming.
IS 350 Course Introduction. Slide 2 Objectives Identify the steps performed in the software development life cycle Describe selected tools used to design.
Compilers Principles, Techniques, & Tools Taught by Jing Zhang
Day 6 - Encoding and Sending Formatted Text
Topic 2: Hardware and Software
What Do Computers Do? A computer system is
Why don’t programmers have to program in machine code?
Chapter 10 Programming Fundamentals with JavaScript
Computer Maintenance Numbering Systems Trade & Industrial Education
Hardware and Software Hardware refers to the physical devices of the computer system e.g. monitor, keyboard, printer, RAM etc. Software is a set of programs,
Day 6 - Encoding and Sending Formatted Text
hardware bits and bytes Java
Overview of Compilation The Compiler Front End
Overview of Compilation The Compiler Front End
GENERAL OOPs CONCEPTS.
Ch. 7 Programming Languages
Java programming lecture one
CS 21a: Intro to Computing I
An Introduction to Visual Basic .NET and Program Design
Unit# 8: Introduction to Computer Programming
Chapter 10 Programming Fundamentals with JavaScript
Unit 1: Introduction Lesson 1: PArts of a java program
COMPUTER SOFT WARE Software is a set of electronic instructions that tells the computer how to do certain tasks. A set of instructions is often called.
COMS 161 Introduction to Computing
CMP 131 Introduction to Computer Programming
Day 6 - Encoding and Sending Formatted Text
Introduction to Visual Basic and Object Oriented Programming
A programming language
JavaScript: Objects.
Compilers Principles, Techniques, & Tools Taught by Jing Zhang
Networks & I/O Devices.
Presentation transcript:

Principles of Information Technology Introduction to Software and Information Systems Copyright © Texas Education Agency, 2014. All rights reserved. Trade & Industrial Education

Course Objectives Define terms associated with software and information systems Identify how the terms relate and function Demonstrate how software and information systems work together giving instructions to computers Copyright © Texas Education Agency, 2014. All rights reserved. Trade & Industrial Education

Software Software: the complete set of programs, documentation and procedures associated with a computer system System software controls integrate and manage the components of a computer system Application software are programs used to perform specific tasks such as word processing, spreadsheets and presentation graphics Copyright © Texas Education Agency, 2014. All rights reserved. Trade & Industrial Education

Information Systems Information System: is a computer application that helps you create, control, store, locate and access data (information) Ex. e-mail, grading programs, social networking websites, micro-blogging networks Acts as an interface between people and technology Copyright © Texas Education Agency, 2014. All rights reserved. Trade & Industrial Education

Information Systems Compilers: a translator that converts source code into instructions (object code) that the computer can understand so it can execute a specific function Source Code Object Code Linker Executable Copyright © Texas Education Agency, 2014. All rights reserved. Trade & Industrial Education

Information Systems Interpreter: a computer program that takes the source translation and executes the specific function step by step Compilers and Interpreters: the main ways that programming languages are used to perform certain functions Source Code Executable Interpreter 1. 2. 3. Copyright © Texas Education Agency, 2014. All rights reserved. Trade & Industrial Education

Information Systems String: a sequence of characters or finite sequence of symbols Strings are important and useful data types used in programming languages Ex. robot.jump(); Copyright © Texas Education Agency, 2014. All rights reserved. Trade & Industrial Education

Information Systems Character: a unit of information that corresponds to a form of computer language Examples are letters, punctuation marks (“.”), numerical digits, symbols and whitespace Integer: a quantity represented by a sequence of digits Date: sequence of integers typically used for month, day, and year Ex. 07/04/2015 Copyright © Texas Education Agency, 2014. All rights reserved. Trade & Industrial Education

Information Systems Computer Language: a formal language designed to communicate instructions to a computer Copyright © Texas Education Agency, 2014. All rights reserved. Trade & Industrial Education