28
COMPO2 Introduction to Information System

Compo2 prelim

Embed Size (px)

DESCRIPTION

information system

Citation preview

Page 1: Compo2 prelim

COMPO2

Introduction to Information System

Page 2: Compo2 prelim

Information System

Is any combination of information Technology and people’s activities using that technology to support operations, management.

In other words, IS is frequently used to refer to the interaction between people, algorithmic processes, data and technology

Page 3: Compo2 prelim

Components of IS

1. Management Information System

It is a system that provides information needed to manage organizations efficiently and effectively.(resources such as technology, information and people)

2. Decision Support System

Is a computer based information system that supports business or organizational decisional activities.

Page 4: Compo2 prelim

DSS serves as the management, operations, and planning levels of an organization and help to make decisions which may be rapidly changing and not easily specified in advance.

DSS includes knowledge based systems.

(ex. Inventories, Comparative sales, projected revenues)

3. Executive Information System

Is a type of MIS intended to facilitate and support information and decision-making needs of senior executives.

Considered as specialized form of DSS.

Page 5: Compo2 prelim

4. Transaction Processing System

It collects, stores, modifies and retrieves transactions of an organization.

Page 6: Compo2 prelim

WEB or the WWW

It is a system of interlinked hypertext documents accessed via the internet.

With a web browser, one can view web pages that may contain text, images, videos and other multimedia and navigate between them via hyperlinks

**hypertext is a text displayed on a computer with references to other text that reader can immediately access usually by a mouse click

Page 7: Compo2 prelim

**hyperlink is a reference to a document that reader can directly follow or followed automatically. It points out the whole document or to specific element within a document.

(hypertext is a text with hyperlink)

Page 8: Compo2 prelim

Surfing the Web

Surfing is the term used to denote the navigating around different websites.

1. In order to surf the Web, you need a web browser, a software application for retrieving, presenting and traversing information resources on the WWW.

Page 9: Compo2 prelim

Popular web Browser

Internet explorer – 36.3%

Firefox – 24.1%

Chrome – 18.2%

Safari – 10.7%

Opera – 4.4%

Android – 1.7%

As of aug. 2011

Page 10: Compo2 prelim

Once you have a web browser, you must ensure that your internet connection are established well.

Then, you may now launch your web browser

Type the complete URL address of a site into the address bar of your web browser.

Then navigate it through hyperlinks and address bar.

Page 11: Compo2 prelim

Client VS server

Client is an application or system that accesses a service made available by the server whereas

Server is a computer program running to serve request of other programs – the client

They are connected via a network

Together they called

Client-server architecture

Page 12: Compo2 prelim

Website

A collection of interrelated web pages containing images, videos or other assets.

It is hosted on at least one web server, accessible via network such as internet through URL.

Page 13: Compo2 prelim

Components of website

HTML

- For the content

CSS

- For the design

Javascript

- For the interaction

PHP

- For the dynamic web pages

Page 14: Compo2 prelim

Web page

Is a document or information resource that is suitable for the WWW and can be accessed through a web browser.

It is composed of an HTML tags

Page 15: Compo2 prelim

URL

Uniform Resource Locator

Universal Resource Locator

It is a character string that specifies where a known resource is available on the internet and the mechanism for retrieving it.

Page 16: Compo2 prelim

Searching the web

It means the user will try to access their needed information through web

Web gives millions of results in just few seconds

User use different search engines for web searching

Page 17: Compo2 prelim

Popular Search Engine

Google 150 M Yahoo 137 M Bing 80 M ASK 60 M Teotama 9M Duck Duck Go 198K Entire Web 123K Blekko 120K Scrub the web 58K Gigablast 29K

Page 18: Compo2 prelim

Some ethical issues in web

Protection of intellectual property

Prevention of fraud

Protection of freedom of expression versus problems of defamation

Protection of privacy

control of spamming

Page 19: Compo2 prelim

What is HTML?

HTML stands for Hyper Text Markup Language

It is a language for describing web pages

It is not programming language, it is mark up language

Mark up language is a set of mark up tags

It uses mark up tags to describe web pages

It is invented by Tim Berners- Lee in 1989

Page 20: Compo2 prelim

Application needed in creating HTML

Internet Browser

HTML editor

A graphic program

Page 21: Compo2 prelim

HTML tags

These are the keywords surrounded by angle brackets like <html>

Usually tags come in pair like <b> and </b>

The first tag in a pair is the start tag, the second tag is the end

Start and end tags are also called opening tags and closing tags

Page 22: Compo2 prelim

HTML example

<html>

<head>

<title> hello </title></head>

<body>

Hello

</body>

</html>

Hello

Page 23: Compo2 prelim

Parts of HTML tag

<html> - tells the web browser on the type of the document

<head> - technical information about the document is stated

<title> - gives the document a name

<body> - where the actual documents are places

Page 24: Compo2 prelim

Basic formatting tags

<b> bold</b> - to make the text bold

<strong> </strong> - also for bold

<u> </u> - for underline

<i> </i> - for italic

<em> </em> - also for emphasis

<strike> </strike> - for strike through

<center> </center> - to align text in center

<tt> </tt> - for teletype text

Page 25: Compo2 prelim

<h1> </h1> to <h6> </h6>-

for heading

<br>

for breaking lines

<pre> </pre>

preformatted text

Preserves spacing

<sub></sub>

subscript

<sup></sup>

superscript

Page 26: Compo2 prelim

HTML elements

Html elements starts with a start tag / opening tag

Html elements starts with a end tag and closing tag

The element content is everything between the start and end tag

Some html elements have empty content

Page 27: Compo2 prelim

HTML comments

It makes html codes to make it more readable and understandable

It is ignored by the browser and are not displayed

<!---this is a comments ----->

Page 28: Compo2 prelim

Paragraph tags

HTML documents are divided into paragraphs

This is defined with <p> and </p>

it has one attribute which is align

Example : <p align = “right/center/left”> sample paragraph</p>