UNIT 2 COMPUTER SOFTWARE

Size: px
Start display at page:

Download "UNIT 2 COMPUTER SOFTWARE"

Transcription

1 UNIT 2 COMPUTER SOFTWARE Computer Software -Types of Software - Software Development Steps - Internet Evolution - Basic Internet Terminology - Getting connected to Internet Applications. 2.0 Computer Software Hardware : Hardware is a comprehensive term for all of the physical components of a computer, as distinguished from the data it contains or operates on it. It includes all mechanical, electronic and magnetic devices such as monitor, printer, electronic circuit, floppy and hard disk. Software Software refers to the set of computer programs, which are used in applications and operating systems. It is the collection of datas and instructions, which iperforms particular task.it increases the software capability of the computer. The process of software development is called programming. 2.1 Software Types Computer software is normally classified into two broad categories. Application Software System software

2 System Software: An instruction is a set of programs that has to be fed to the computer for operation of computer system as a whole. When you switch on the computer the programs written in ROM is executed which activates different units of your computer and makes it ready for you to work on it. This set of program can be called system software. Therefore system software may be defined as a set of one or more programs designed to control the operation of computer system. System software are general programs designed for performing tasks such as controlling all operations required to move data into and out of the computer. It communicates with printers, card reader, disk; tapes etc. monitor the use of various hardware like memory, CPU etc. Also system software are essential for the development of applications software. System Software allows application packages to be run on the computer with less time and effort. A) Operating system: - First layer of software loaded into the computer memory when it starts up. - Organizes and controls the hardware.

3 Basic Functions: Process Management: Handles the creation, deletion, suspension, resumption and synchronization of processes. Memory management: Handles allocation and de-allocation of memory space as required by various programs. File Management: Responsible for creation, deletion and other basic operations on files and directories. Device management: Manages all devices of the computer system. Security management: Protects system resources and information against destruction and other unauthorized use. User Interface: Provides interface between user and the hardware. B) Device drivers: A device driver, or software driver, is a computer program allowing higher level Computer programs to interact with a device. A driver typically communicates with the device through the computer bus or communications subsystem to which the hardware is connected. When a calling program invokes a routine in the driver, the driver issues

4 commands to the device. Once the device sends data back to the driver, the driver may invoke routines in the original calling program. Drivers are hardware-dependent and operating-system-specific. They usually provide the interrupt handling required for any necessary asynchronous time-dependent hardware interface. C)Language translators. (i) Compiler: A compiler is a computer program that translates a computer program written in one computer language (called the source language) into an equivalent program written in another computer language (called the output, object, or target language). Most compilers translate source code written in a high level language to object code or machine language that may be directly executed by a computer or a virtual machine. (ii) Interpreter A high-level programming language translator that translates and runs the program at the same time. It translates one program statement into machine language, executes it, and then proceeds to the next statement. This differs from regular executable programs that are presented to the computer as binary-coded instructions. Interpreted programs remain In the source language the programmer wrote in, which is human readable text. Slower, But Easier to Test Interpreted programs run slower than their compiler counterparts. Whereas the compiler translates the entire program before it is run, interpreters translate a line at a time while the program is being run. However, it is very convenient to write an interpreted program, since a single line of code can be tested interactively.

5 (iii)assembler Software that translates assembly language into machine language. Contrast with Compiler, which is used to translate a high-level language, such as COBOL or C, into assembly language first and then into machine language Application software A program or group of programs designed for end users. A) Word processor Using a computer to create, edit, and print documents. Of all computer applications, word processing is the most common. To perform word processing, you need a computer, a special program called a word processor, and a printer. A word processor enables you to create a

6 document, store it electronically on a disk, display it on a screen, modify it by entering commands and characters from the keyboard, and print it on a printer. The great advantage of word processing over using a typewriter is that you can make changes without retyping the entire document. If you make a typing mistake, you simply back up the cursor and correct your mistake. If you want to delete a paragraph, you simply remove it, without leaving a trace. It is equally easy to insert a word, sentence, or paragraph in the middle of a document. Word processors also make it easy to move sections of text from one place to another within a document, or between documents. When you have made all the changes you want, you can send the file to a printer to get a hardcopy. Word processors vary considerably, but all word processors support the following basic features: Insert text: Allows you to insert text anywhere in the document. Delete text: Allows you to erase characters, words, lines, or pages as easily as you can cross them out on paper. Cut and Paste : Allows you to remove (cut) a section of text from one place in a document and insert (paste) it somewhere else. Copy : Allows you to duplicate a section of text. Page size and margins : Allows you to define various page sizes and margins, and the word processor will automatically readjust the text so that it fits. Search and Replace : Allows you to direct the word processor to search for a particular word or phrase. You can also direct the word processor to replace one group of characters with another everywhere that the first group appears. Word wrap : The word processor automatically moves to the next line when you have filled one line with text, and it will readjust text if you change the margins. Print: Allows you to send a document to a printer to get hardcopy.

7 Word processors that support only these features (and maybe a few others) are called text editors. Most word processors, however, support additional features that enable you to manipulate and format documents in more sophisticated ways. These more advanced word processors are sometimes called full-featured word processors. B) Spreadsheet A table of values arranged in rows and columns. Each value can have a predefined relationship to the other values. If you change one value, therefore, you may need to change other values as well. Spreadsheet applications (sometimes referred to simply as spreadsheets) are computer programs that let you create and manipulate spreadsheets electronically. In a spreadsheet application, each value sits in a cell. You can define what type of data is in each cell and how different cells depend on one another. The relationships between cells are called formulas, and the names of the cells are called labels. C) Database management system A collection of programs that enables you to store, modify, and extract information from a database. There are many different types of DBMSs, ranging from small systems that run on personal computers to huge systems that run on mainframes. The following are examples of database applications: computerized library systems automated teller machines flight reservation systems computerized parts inventory systems D) Presentation graphics

8 A type of business software that enables users to create highly stylized images for slide shows and reports. The software includes functions for creating various types of charts and graphs and for inserting text in a variety of fonts. Most systems enable you to import data from a spreadsheet application to create the charts and graphs. E) Desktop publishing Using a personal computer or workstation, we can produce high-quality printed documents. A desktop publishing system allows you to use different typefaces, specify various margins and justifications, and embed illustrations and graphs directly into the text. The most powerful desktop publishing systems enable you to create illustrations; while less powerful systems let you insert illustrations created by other programs. 2.2 Software Development Steps: Before starting the process of writing a program, the programmer has to determine the problem that needs to be solved. There are different approaches to problem solving. Most require breaking the problem into a series of smaller steps, independent of the programming language. One common technique is to use the Software development Life Cycle, with the number of steps that may vary according to the person who has formalized the development. Software Development Life Cycle of a program includes the following phases: i) Analyse : Define the Problem The problem is analyzed precisely completely. Task Analysis After analyzing the problem, the developer needs to develop various solutions to solve the given problem. From these solutions, the optimum solution (by experimenting with all the solutions) is

9 chosen, which economically. can solve the problem comfortably and ii) Designing Phase: After selecting the appropriate solution, algorithm is developed to depict the basic logic of the selected solution. An algorithm depicts the solution in logical steps. Further, algorithm is represented by flowcharts and pseudocodes. These tools make program logic clear and they eventually help in coding. This phase is also known as design phase. iii) Testing Phase: We are testing the Algorithm for Accuracy. Before converting the algorithms into actual code, it should be checked for accuracy. The main purpose of checking algorithm is to identify major logical errors at an early stage, because logical errors are often difficult to detect and correct at later stages. The testing also ensures that the algorithm is a true one and it should work for both normal as well as unusual data. iv) Coding: After meeting all the design consideration, the actual coding of the program takes place in the chosen programming language. Depending upon application domain and available resources, a program can be written by using computer languages of different levels such as machine, assembly or high level languages. v) Debug the program: It is common for the initial program code to contain errors. A program compiler and programmer designed test data machine tests the code for syntax errors. The results obtained are compared with results calculated

10 manually from this test data. Depending upon the complexity of the program, several rounds of testing may be required. vi) Documentation and Implementation: Once the program is free from all the errors, it is the duty of the program developers to ensure that the program is supported by suitable documentation. After documentation, the program is installed on the end user s machine. 2.4 EVOLUTION OF INTERNET 1960 origin of internet-us Department of Defense wanted to create a computer network that could continue to function even in the disaster. ARPANET Advance Research Projects Agency Network. It is used in the US Scientific and academic researchers-fore runner of today s internet s ARPANET helped in the developed new protocol known as TCP / IP for transmitting data b/w n/w. This is core of internet s NSF (National Science Foundation) used ARPANET to link its 5 regional super networks, so users share their work. So, NSF is Creating NSFNET. In 1980 s USENET newsgroups & E mail. Indices such as Archie & WAIS(wide area information server), were created to track of i/f in d internet. To give user an easy-to-use interface to work, GOPHER simple menu driven system for accessing files were created. In 1991 CERN released world wide web. This team developed the protocol based on hypertext that makes it possible to connect the content on the web with hyperlinks. In June 1993, there were only 130 websites, but now there are millions.

11 2.5 BASIC INTERNET TERMS a) Web Browser A web browser can also be defined as an application software or program designed to enable users to access, retrieve and view documents and other resources on the Internet. Non-graphical a user interface for computers which allows you to read plain text, not pictures, sound, or video, on the Internet. An example is lynx.( Graphical a user interface for computers which enables people to see color, graphics, and hear sound and see video, available on Internet sites. Examples are Firefox and Internet Explorer

12 b) Domain Name A method of identifying computer addresses. Your address has a domain address. Examples: Commercial and for profit organizations..edu - Colleges and universities

13 .gov - Federal government agencies..mil - US military sites..net - Internet infrastructure and service providers..org - Miscellaneous and non profit organizations. c) FTP File Transfer Protocol is a standard network protocol used to transfer files from one host to another over a TCP-based network, such as the Internet. d) HTTP- The hypertext transfer protocol It enables html documents to be read on the Internet.

14 e) Uniform Resource Locator (URL) f) Each web page has a unique address, called a Uniform Resource Locator (URL) that identifies its location on the Internet. Web browsers utilize the URL to retrieve a file from the computer on which it resides. URL consists of six parts: protocol, www, server (or domain), domain type, path and file name. ftp:// Example : Protocol World Wide Web : http : www

15 Domain Name Path File Name : xyz : tutor / start / : main.html g) Web page World Wide Web consists of files, called pages or web pages, which contain information and links to resources throughout the Internet. A web page is an electronic document written in a computer language called HTML. h) Website

16 A website is a related web page, published by an organization or individual. Web site contains a home page along with other additional web pages. Each website is owned and updated by an individual, company or organization. i) Home page A home page is the starting point or a doorway to the website. Like the table of contents of a book, the home page usually provides an overview of what could be found at the website

17 j) Hypertext Hypertext refers to the text or image that connects to other documents. These texts or images are known as hypertext link, hyperlink, hotlink or simply links. A hyperlink is used to jump to another part of the same page or to load different web pages. Hypertext is a method of instant cross referencing. It is used for organizing information and to link related documents together using words and graphics (also known as image maps.)

18 k) Blog A blog is information that is instantly published to a Web site. Blog scripting allows someone to automatically post information to a Web site. The information first goes to a blogger Web site. Then the information is automatically inserted into a template tailored for your Web site.

19 l) Bookmark It is a way of storing your favorite sites on the Internet. Browsers like Netscape or Internet Explorer let you to categorize your bookmarks into folders.

20 m)internet Service Provider (ISP) An ISP is a company that provides access to the internet to individuals or companies. For a monthly fee, the ISP provides the user software package, username, password, and access phone number(s). Equipped with a modem, the user can then log on to the Internet and browse the web.

21 n) Web Server A server is a computer equipped with server software, which provides a specific kind of service to client software running on other computers The term can refer to a particular piece of software, for example, a web server, or to the machine on which the software is running. A web server is a computer that answers requests from user s computers. It serves images and static content, such as web pages, to fill the client s requests. Web servers can run on any hardware platform and operating system and store documents in HTML. o) Cookie Information (in this case URLs, Web addresses) created by a Web server are stored on a user s computer. This information lets Web sites the user visits to keep of a user s browsing patterns and preferences.

22 People can set up their browsers to accept or not accept cookies. p) Download and Upload Download means download the file or image from remote system to another system. Upload means file or image one system to remote system. q) Online and Offline Online means Connected to World Wide Web via Internet. Offline means Opposite of the Online 2.6 GETTING CONNECTED TO INTERNET Basic requirements for getting online are: 1. A TCP / IP enabled computer with a web browser. 2. An account with an ISP. 3. A telephone line plugged to suitable socket 4. A modem to connect the computer to the telephone line. Basic requirements for Computer: 1. Pentium III / Pentium IV MB / 256 MB RAM * 480 resolution and minimum of 256 colors. 4. Atleast 200MB of Hard Disk. 5. Sound Card. Basic requirement for MODEM: 1. Modem range 28 kbps to 56 kbps.

23 2. Modem type is internal or external TYPES OF INTERNET CONNECTION i) Dial Up Internet Connection This type connection is used in the Home computers Access method of this connection is connected to a telephone line. The user needs to specify a username, a password, and telephone number. ii) ISDN (Integrated Services Digital Network) It is more common in business and commercial use. High speed alternative to regular analog phone modems. ISDN involves the digitization of telephone network so that voice, graphics, text, and other data can be provided to users from a single terminal over existing telephone wiring.

24 Digital connection have fewer errors in transmission, which means speed of down loading graphics, web pages, sound, and so on, is increased to four times faster than with dial up modems. iii)cable Modem A cable modem connects the user to the Internet through a cable television line. Cable modem will typically have two connections, one to the television outlet and the other to the computer. Cable modems not only provide a faster Internet access (10 to 100) times as fast as the dial up modem), but they also give added interactivity to the television. iv) Leased Line

25 This facility provides reliable, high speed Internet access ranging from 2.4 kbps to 45 Mbps. This is a fixes monthly charge. Leased Line facility can be provided via fiber optic or copper lines. It provides a consistent amount of bandwidth and is an excellent way to provide data, voice and video links between sites. v) DSL (Digital Subscriber Line) It provided through the existing phone line but it works differently than regular analog modem dial up access. DSL Operates over normal telephone lines and it can be used simultaneously with the telephone.

26 DSL can increase the connection speed by as much as ten fold from a standard dial up modem. Vi) Broadband This type of access is good for remote location, where ISDN, cable or DSL are not available. Example Broadband connection is Satellite Internet connection. But very expensive.

Internet. Class-In charge: S.Sasirekha

Internet. Class-In charge: S.Sasirekha Internet Class-In charge: S.Sasirekha COMPUTER NETWORK A computer network is a collection of two or more computers, which are connected together to share information and resources. Network Operating Systems

More information

8 9 Before: Computers are categorized into three main categories from least to most powerful: microcomputers minicomputers mainframe computers Today:

8 9 Before: Computers are categorized into three main categories from least to most powerful: microcomputers minicomputers mainframe computers Today: 1 Computer, Internet, and Network Basics 2 Computer Basics A computer system includes a computer, peripheral devices, and software Computer refers to a device that accepts data as input, processes data,

More information

The Internet and the World Wide Web

The Internet and the World Wide Web Technology Briefing The Internet and the World Wide Web TB5-1 Learning Objectives TB5-2 Learning Objectives TB5-3 How Did the Internet Get Started? Internet derived from internetworking 1960s U.S. Defense

More information

INTRODUCTION TO THE INTERNET. Presented by the Benbrook Public Library

INTRODUCTION TO THE INTERNET. Presented by the Benbrook Public Library INTRODUCTION TO THE INTERNET Presented by the Benbrook Public Library INTRODUCTION TO THE INTERNET What is the Internet? How did it come about? What is the World Wide Web? How does it work? How do I get

More information

INTERNET PROGRAMMING INTRODUCTION

INTERNET PROGRAMMING INTRODUCTION INTERNET PROGRAMMING INTRODUCTION Software Engineering Branch / 4 th Class Computer Engineering Department University of Technology ORGANIZATION Lecture Mondays, 08:30-10:30 (Hall 4). Project 1. The project

More information

IBPS Practice Exam 1. 1.What is the ultimate purpose of Defragmentation? 1) Make the PC faster 2) Create More Free Space 3) Delete temporary files 4)

IBPS Practice Exam 1. 1.What is the ultimate purpose of Defragmentation? 1) Make the PC faster 2) Create More Free Space 3) Delete temporary files 4) IBPS Practice Exam 1. 1.What is the ultimate purpose of Defragmentation? 1) Make the PC faster 2) Create More Free Space 3) Delete temporary files 4) Reduce Power consumption 5) All of the above 2. Computers

More information

IBPS Practice Exam 1. One megabyte equals approximately 1) 1,000 bits 2) 1,000 bytes 3) 1 million bytes 4) 1 million bits 5) 2,000 bytes 2.

IBPS Practice Exam 1. One megabyte equals approximately 1) 1,000 bits 2) 1,000 bytes 3) 1 million bytes 4) 1 million bits 5) 2,000 bytes 2. IBPS Practice Exam 1. One megabyte equals approximately 1) 1,000 bits 2) 1,000 bytes 3) 1 million bytes 4) 1 million bits 5) 2,000 bytes 2. Data going into the computer is called? 1) Output 2) Algorithm

More information

The Internet. and the World Wide Web

The Internet. and the World Wide Web The Internet and the World Wide Web Discussion What is the internet? What do you use the internet for? History Advanced Research Projects Agency created ARPANET in the late 1960s. 1970s more universities

More information

Computer Networks. Computer Networks. Telecommunication Links. CMPUT101 Introduction to Computing - Spring Chapter 12: Computer Networks 1

Computer Networks. Computer Networks. Telecommunication Links. CMPUT101 Introduction to Computing - Spring Chapter 12: Computer Networks 1 Computer Networks Chapter 12 Topics: Communication links LAN / WAN Internet / WWW CMPUT101 Introduction to Computing (c) Yngvi Bjornsson 1 Computer Networks A computer network is a set of independent computer

More information

Basic Internet. Basic Internet

Basic Internet. Basic Internet Basic Internet Basic Internet What is the Internet? The Internet is a global network connecting millions of computers which are linked together around the world, cooperating and communication with each

More information

APPENDIX A. Answer: D Reference: Hardware Basics Difficulty: Easy. Answer: A Reference: Hardware Basics Difficulty: Easy

APPENDIX A. Answer: D Reference: Hardware Basics Difficulty: Easy. Answer: A Reference: Hardware Basics Difficulty: Easy APPENDIX A Multiple Choice: 1. A desktop computer is also known as a: A. Palm Pilot. B. laptop. C. mainframe. D. PC. Answer: D Reference: Hardware Basics Difficulty: Easy 2. The physical parts of a computer

More information

Outside the Box: Networks and The Internet

Outside the Box: Networks and The Internet Outside the Box: Networks and The Internet Don Mason Associate Director Copyright 2011 National Center for Justice and the Rule of Law All Rights Reserved Inside vs. Outside Inside the Box What the computer

More information

Inside vs. Outside. Inside the Box What the computer owner actually has possession of 1/18/2011

Inside vs. Outside. Inside the Box What the computer owner actually has possession of 1/18/2011 Outside the Box: Networks and The Internet Don Mason Associate Director Copyright 2011 National Center for Justice and the Rule of Law All Rights Reserved Inside vs. Outside Inside the Box What the computer

More information

This is a list of vocabulary related to information and communication technology. Coloque el significado en español sobre las líneas.

This is a list of vocabulary related to information and communication technology. Coloque el significado en español sobre las líneas. Tú Teacher de Inglés 1 0B This is a list of vocabulary related to information and communication technology. Coloque el significado en español sobre las líneas. Anti-virus software = - A program that finds

More information

Objectives. Introduction to HTML. Objectives. Objectives

Objectives. Introduction to HTML. Objectives. Objectives Objectives Introduction to HTML Developing a Basic Web Page Review the history of the Web, the Internet, and HTML. Describe different HTML standards and specifications. Learn about the basic syntax of

More information

Using the Internet and the World Wide Web

Using the Internet and the World Wide Web Using the Internet and the World Wide Web Computer Literacy BASICS: A Comprehensive Guide to IC 3, 3 rd Edition 1 Objectives Understand the difference between the Internet and the World Wide Web. Identify

More information

Computers: Information Technology in Perspective, 11e

Computers: Information Technology in Perspective, 11e Computers: Information Technology in Perspective, 11e Larry Long and Nancy Long Chapter 3 Going Online Copyright Prentice Hall, Inc. 1 Objectives Once you have read and studied this chapter, you will have

More information

An internet or interconnected network is formed when two or more networks are connected.

An internet or interconnected network is formed when two or more networks are connected. Computers I 3. The Internet An internet or interconnected network is formed when two or more networks are connected. The most notable internet is called the Internet and is composed of millions of these

More information

The Internet. Connecting to the internet. Role of the ISP. Who is online? Internet users by country 2/18/2009. The Internet More than Just WWW

The Internet. Connecting to the internet. Role of the ISP. Who is online? Internet users by country 2/18/2009. The Internet More than Just WWW The Internet What does it mean to be connected to the internet? I.e. What does the internet do?? What do you need to connect your computer to the internet as opposed to any other network? The Internet

More information

Skill Area 209: Use Internet Technology. Software Application (SWA)

Skill Area 209: Use Internet Technology. Software Application (SWA) Skill Area 209: Use Internet Technology Software Application (SWA) Skill Area 209.1 Use Browser for Research (10hrs) 209.1.1 Familiarise with the Environment of Selected Browser Internet Technology The

More information

Chapter 2 The Internet and World Wide Web

Chapter 2 The Internet and World Wide Web Chapter 2 The Internet and World Wide Web Chapter 2 Objectives Explain how to access and connect to the Internet Explain how to view pages and search for information on the Web Describe the types of Web

More information

Vocabulary Platform Computing\ First grade Theoretical number of hours=30 Practical number of hours =60

Vocabulary Platform Computing\ First grade Theoretical number of hours=30 Practical number of hours =60 Vocabulary Platform Computing\ First grade Theoretical number of hours=30 Practical number of hours =60 Sequence Subject Theoretical number of hours Introduction (Introduction to Computers, the concepts

More information

Word Processing. Delete text: Allows you to erase characters, words, lines, or pages as easily as you can cross them out on paper.

Word Processing. Delete text: Allows you to erase characters, words, lines, or pages as easily as you can cross them out on paper. Word Processing Practice Of all computer applications, word processing is the most common. To perform word processing, you need a computer, a special program called a word processor, and a printer. A word

More information

WEBINAR. Web Browsing 101 1/12/2012 WEBINAR TIPS:

WEBINAR. Web Browsing 101 1/12/2012 WEBINAR TIPS: Browsing 101 WEBINAR TIPS: 1. Power off cell phones. 2. If accessing webinar through telephone, turn down volume of computer speakers (or mute them.) 3. Conference attendees will be muted during webinar

More information

An introduction to the Internet. Joining a connected world

An introduction to the Internet. Joining a connected world An introduction to the Internet Joining a connected world Agenda 1.! What do you already know about using the Internet? 2.! What is this thing called the World Wide Web? 3.! How the Internet works 4.!

More information

Scale Yourself. Lesson 3: Introduction to Internet Technology. Computer Technology 3/13/2015

Scale Yourself. Lesson 3: Introduction to Internet Technology. Computer Technology 3/13/2015 Computer Technology Lesson 3: Introduction to Internet Technology Learning Goal: Students will be able to understand the elements of a network. Scale Yourself 4 I do understand the elements of a network.

More information

Internet Basics. Basic Terms and Concepts. Connecting to the Internet

Internet Basics. Basic Terms and Concepts. Connecting to the Internet Internet Basics In this Learning Unit, we are going to explore the fascinating and ever-changing world of the Internet. The Internet is the largest computer network in the world, connecting more than a

More information

The Internet Advanced Research Projects Agency Network (ARPANET) How the Internet Works Transport Control Protocol (TCP)

The Internet Advanced Research Projects Agency Network (ARPANET) How the Internet Works Transport Control Protocol (TCP) The Internet, Intranets, and Extranets 1 The Internet The Internet is a collection of interconnected network of computers, all freely exchanging information. These computers use specialized software to

More information

Introduction to the Internet. Part 1. What is the Internet?

Introduction to the Internet. Part 1. What is the Internet? Introduction to the Internet Part 1 What is the Internet? A means of connecting a computer to any other computer anywhere in the world via dedicated routers and servers. When two computers are connected

More information

CS 0478 Topic 1.2. only. From sender to receiver. directions simultaneously. data can be sent from A to B and from B to A along the same line

CS 0478 Topic 1.2. only. From sender to receiver. directions simultaneously. data can be sent from A to B and from B to A along the same line Communication and Internet Technologies:- When data is sent from one device to another, it is important to consider how that data is transmitted. It is also important to ensure that the data hasn t been

More information

This document is downloaded from DR-NTU, Nanyang Technological University Library, Singapore.

This document is downloaded from DR-NTU, Nanyang Technological University Library, Singapore. This document is downloaded from DR-NTU, Nanyang Technological University Library, Singapore. Title Search strategies and information resources Author(s) Sommerville, Joseph Citation Sommerville, J. (1998).

More information

Basic Computer Skills: An Overview

Basic Computer Skills: An Overview Basic Computer Skills: An Overview Proficiency in the use of computers and common software packages is essential to completing technical tasks and in communicating results. The basic skills required include:

More information

ACE Chapter 4 review. Name: Class: Date: True/False Indicate whether the statement is true or false.

ACE Chapter 4 review. Name: Class: Date: True/False Indicate whether the statement is true or false. Name: Class: Date: ACE Chapter 4 review True/False Indicate whether the statement is true or false. 1. Today s Internet joins together networks of over 300 million computers, or Internet hosts, to create

More information

Madhya Pradesh Bhoj (Open) University, Bhopal DIPLOMA IN COMPUTER APPLICATION (DCA)

Madhya Pradesh Bhoj (Open) University, Bhopal DIPLOMA IN COMPUTER APPLICATION (DCA) Subject: Fundamentals of computers and information technology Maximum Marks: 30 1.What is computer? Write the different types of compute according to size and working process. What is history of computer?

More information

WWW and Web Browser. 6.1 Objectives In this chapter we will learn about:

WWW and Web Browser. 6.1 Objectives In this chapter we will learn about: WWW and Web Browser 6.0 Introduction WWW stands for World Wide Web. WWW is a collection of interlinked hypertext pages on the Internet. Hypertext is text that references some other information that can

More information

o MAC (6/18 or 33%) o WIN (17/18 or 94%) o Unix (0/18 or 0%)

o MAC (6/18 or 33%) o WIN (17/18 or 94%) o Unix (0/18 or 0%) Computer OS: Feel comfortable with these operating systems o MAC (6/18 or 33%) o WIN (17/18 or 94%) o Unix (0/18 or 0%) CS120 The Information Era LECTURE 2 TOPICS:, Review, Computer Basics, Computer History,

More information

Outline. Internet and World Wide Web. History of the Internet. What is the Internet? How Does Data Travel Through the Internet?

Outline. Internet and World Wide Web. History of the Internet. What is the Internet? How Does Data Travel Through the Internet? Outline Internet and World Wide Web Internet World Wide Web Creating Web Pages CS 1410 Intro to Computer Tecnology Internet and World Wide Web 2 What is the Internet? The internet is a network of networks

More information

Name: Class: Date: Multiple Choice Identify the letter of the choice that best completes the statement or answers the question.

Name: Class: Date: Multiple Choice Identify the letter of the choice that best completes the statement or answers the question. Name: Class: Date: The Internet and WWW True/False Indicate whether the sentence or statement is true or false. 1. A search engine is a program that performs keyword searches for information on the Internet.

More information

Typical Network Uses

Typical Network Uses Computer Networks Introduction The next Great Revolution - Computer Networks- computers connected together for exchanging information Our information-oriented society - applications in education, commerce,

More information

Computer Applications I Vocabulary (Frameworks)

Computer Applications I Vocabulary (Frameworks) Computer Applications I Vocabulary (Frameworks) Unit 1: Introduction to the Operating System, Computer Systems, and Networks 1. Access keys shortcut keys; keys used in combination to create actions or

More information

UNIQUE IAS ACADEMY- COMPUTER QUIZ 2

UNIQUE IAS ACADEMY- COMPUTER QUIZ 2 1. Your business has contracted with another company to have them host and run an application for your company over the Internet. The company providing this service to your business is called an a) Internet

More information

WHAT IS THE INTERNET?

WHAT IS THE INTERNET? The Internet WHAT IS THE INTERNET? A world-wide network of computers allows people to share information electronically It is a BIG book with many web-pages on different topics. It Can be accessed anywhere

More information

A network is a group of two or more computers that are connected to share resources and information.

A network is a group of two or more computers that are connected to share resources and information. Chapter 1 Introduction to HTML, XHTML, and CSS HTML Hypertext Markup Language XHTML Extensible Hypertext Markup Language CSS Cascading Style Sheets The Internet is a worldwide collection of computers and

More information

ST. MARY S COLLEGE FORM 4

ST. MARY S COLLEGE FORM 4 Term 1 Week 1 Week 2 FUNDAMENTALS OF HARDWARE AND SOFTWARE 1. The generalpurpose computer system 2. Functions of the major hardware components of a computer system 3. Functions and uses of primary storage

More information

Chapter 6 The Internet

Chapter 6 The Internet Chapter The Internet Computer Concepts 2014 Chapter Contents Section A: Internet Technology Section B: Fixed Internet Access Section C: Portable and Mobile Internet Access Section D: Internet Services

More information

Downloaded From :

Downloaded From : 04-012-2011 Test V Computer Knowledge 201. The operation of combining two cells into a single cell in Excel is referred to as (1) Join Cells (2) Merge Cells (3) Merge Table (4) Join Table 202. Which of

More information

Q1. Describe the characteristic features of input and output devices of a computer system. [10]

Q1. Describe the characteristic features of input and output devices of a computer system. [10] Course: 1 st Sem. Of 3-year B.Sc. in H&HA Academic Year: 2017-2018 Q1. Describe the characteristic features of input and output devices of a computer system. [10] What is Topology? Discuss the various

More information

Chapter Topics. The History of the Internet. Chapter 7: Computer Networks, the Internet, and the World Wide Web

Chapter Topics. The History of the Internet. Chapter 7: Computer Networks, the Internet, and the World Wide Web Chapter Topics Chapter 7: Computer Networks, the Internet, and the World Wide Web CS10051: Intro. to Computer Science Kent State University History of the Internet History of the World Wide Web Internet

More information

CSC 121 Computers and Scientific Thinking

CSC 121 Computers and Scientific Thinking CSC 121 Computers and Scientific Thinking David Reed Creighton University Computer Basics 1 What is a Computer? a computer is a device that receives, stores, and processes information different types of

More information

Discovering Computers Your Interactive Guide to the Digital World

Discovering Computers Your Interactive Guide to the Digital World Discovering Computers 2012 Your Interactive Guide to the Digital World Objectives Overview Discuss the evolution of the Internet Identify and briefly describe various broadband Internet connections and

More information

Introduction to the Internet

Introduction to the Internet Introduction to the Internet Sponsored by Greene County Public Library http://www.greenelibrary.info Rev 09/07 1 What is the Internet? Introduction to the Internet The internet is a network of computers

More information

The internet What is it??

The internet What is it?? The internet What is it?? The internet is a global system of interconnected computer network that use the standard internet protocol suit (TCP/IP) to serve billions of users word wide. In other word it

More information

Downloaded from

Downloaded from RYAN INTERNATIONAL SCHOOL LUDHIANA SESSION 2014-15 COMPUTER WORKSHEET-I NAME - CLASS X, SEC. - Q1. Fill in the blanks. 1. The ARPANET project was funded by USA, (DOD) Department of Defense in 1969. 2.

More information

Chapter 2A. The Internet s History

Chapter 2A. The Internet s History Chapter 2A The Internet and the World Wide Web 1 The Internet s History At about 10:30 PM on October 29th, 1969, a connection was established over a 50 kbps line provided by the AT&T telephone company,

More information

AQU Information Systems Fundamentals Spring 2012 Pg. 9.1

AQU Information Systems Fundamentals Spring 2012 Pg. 9.1 AQU Information Systems Fundamentals Spring 2012 Pg. 9.1 c h a p t e r 9 THE INTERNET & THE NEW INFORMATION TECHNOLOGY INFRASTRUCTURE 9.1 LEARNING OBJECTIVES Describe features of infrastructure & connectivity

More information

Full file at Chapter 2: Technology Infrastructure: The Internet and the World Wide Web

Full file at   Chapter 2: Technology Infrastructure: The Internet and the World Wide Web Chapter 2: Technology Infrastructure: The Internet and the World Wide Web TRUE/FALSE 1. Computer networks and the Internet form the basic technology structure that underlies all electronic commerce. T

More information

ICT Glossary. NCTE Advice Sheet ICT Glossary Advice Sheet 30

ICT Glossary. NCTE Advice Sheet ICT Glossary Advice Sheet 30 ICT Glossary ADSL Application Anti-virus software Attachment Backup Bandwidth Bit BPS Broadband Buffer Bug Bus Byte Cache CAD Cards CAT-5 (Asymmetric Digital Subscriber Line) A high-speed technology that

More information

DETAILED SYLLABUS 1. INTRODUCTION TO COMPUTER

DETAILED SYLLABUS 1. INTRODUCTION TO COMPUTER DETAILED SYLLABUS 1. INTRODUCTION TO COMPUTER 1.0 Introduction 1.1 Objectives 1.2 What is Computer? 1.2.1 History of Computers 1.2.2 Characteristics Of Computer System 1.2.3 Basic Applications of Computer

More information

From administrivia to what really matters

From administrivia to what really matters From administrivia to what really matters Questions about the syllabus? Logistics Daily lectures, quizzes and labs Two exams and one long project My teaching philosophy...... is informed by my passion

More information

The Internet and World Wide Web Chapter4

The Internet and World Wide Web Chapter4 The Internet and World Wide Web Chapter4 IS-IT-UOB 2013 The Internet What is the Internet? Worldwide collection of networks that connects millions of computers IS-IT-UOB 2013 2 History of the Internet

More information

IRIS LLC Sample Interrogatories for Electronic Discovery. UNITED STATES DISTRICT COURT DISTRICT OF [Jurisdiction]

IRIS LLC Sample Interrogatories for Electronic Discovery. UNITED STATES DISTRICT COURT DISTRICT OF [Jurisdiction] IRIS LLC Sample Interrogatories for Electronic Discovery UNITED STATES DISTRICT COURT DISTRICT OF [Jurisdiction] Court File No.: Plaintiff, INTERROGATORIES TO [Party Name v. Defendant, I. Definition. The

More information

INTRODUCTION TO COMPUTERS

INTRODUCTION TO COMPUTERS INTRODUCTION TO COMPUTERS When we talk about computers, we really are talking about a Computer System. Computer System: It is a combination of Hardware and Software. This combination allows a computer

More information

3. WWW and HTTP. Fig.3.1 Architecture of WWW

3. WWW and HTTP. Fig.3.1 Architecture of WWW 3. WWW and HTTP The World Wide Web (WWW) is a repository of information linked together from points all over the world. The WWW has a unique combination of flexibility, portability, and user-friendly features

More information

Chapter 2: Technology Infrastructure: The Internet and the World Wide Web

Chapter 2: Technology Infrastructure: The Internet and the World Wide Web Chapter 2: Technology Infrastructure: The Internet and the World Wide Web Student: 1. Networks of computers and the Internet that connects them to each other form the basic technological structure that

More information

MR AZIZUL ZAMRI BIN MUHAMED AMIN WEB : Your Logo

MR AZIZUL ZAMRI BIN MUHAMED AMIN WEB :  Your Logo MR AZIZUL ZAMRI BIN MUHAMED AMIN WEB : http://fsktm2.uthm.edu.my/azizulzamri Your Logo Chapter 1 Introduction to WWW and the Internet By : Azizulzamri bin Muhamed Amin History of the Internet and WWW COLD

More information

Computer networks 2013

Computer networks 2013 Chapter 4 EXERCISE 1 1 Describe what is meant by each of the following: a Router b Bridge c Proxy server Answers: see the Glossary. 2 Many small businesses have computer networks. a List three advantages

More information

Resource:http://whatis.techtarget.com/

Resource:http://whatis.techtarget.com/ A1 Terminology Urichuck Resource:http://whatis.techtarget.com/ Term Definition Image Blog Short for Web log, a blog is a Web page that serves as a publicly accessible personal journal for an individual.

More information

CSC Introduction to Computers and Their Applications. Background

CSC Introduction to Computers and Their Applications. Background CSC 170 - Introduction to Computers and Their Applications Lecture 7 The Internet Background The history of the Internet begins in 1957. In a response to the Soviet Union launching Sputnik, the first man-made

More information

Computer is an electronic machine that can receive, store, transform and output data of all kinds (image, text, numeric, graphics and sound).

Computer is an electronic machine that can receive, store, transform and output data of all kinds (image, text, numeric, graphics and sound). ELECTRONIC COMPUTERS THEN AND NOW Computer is an electronic machine that can receive, store, transform and output data of all kinds (image, text, numeric, graphics and sound). In the Past (i.e., during

More information

NOTE: In this chapter universal key commands are used unless JAWS key commands are specified.

NOTE: In this chapter universal key commands are used unless JAWS key commands are specified. Copyright 2009 BOSMA Enterprises Chapter 19 Internet Setup and General Use Terms NOTE: In this chapter universal key commands are used unless JAWS key commands are specified. Key Terms Internet: Imagine

More information

09-Jan-17. Objectives Overview. The Internet. Objectives Overview. Evolution of the Internet. Evolution of the Internet. Discovering Computers 2012

09-Jan-17. Objectives Overview. The Internet. Objectives Overview. Evolution of the Internet. Evolution of the Internet. Discovering Computers 2012 Objectives Overview Discuss the evolution of the Identify and briefly describe various broadband connections and state differences between broadband connections and dialup connections Describe the types

More information

Overview of the Internet

Overview of the Internet Overview of the Internet IVPR 1 Outline Goals and Objectives Topics headlines Introduction Internet and WWW Client/Server Model Diagnostic commands Evolution of Internet Transmission IP Addresses and Domain

More information

Glossary. advance: to move forward

Glossary. advance: to move forward Computer Computer Skills Glossary Skills Glossary advance: to move forward alignment tab: the tab in the Format Cells dialog box that allows you to choose how the data in the cells will be aligned (left,

More information

SAMPLE PAGES. Unit 12.1 Information and Communication Systems Topic 2: Networking. What is a network? Network node

SAMPLE PAGES. Unit 12.1 Information and Communication Systems Topic 2: Networking. What is a network? Network node Topic 2 focuses on networking. It covers: Definition of a network. Characteristics and functions of network devices. Specification of local area network (LAN). Network software. Application software. Basic

More information

Quality Developers is a company that writes programs to do specific jobs for other companies. These programs are called

Quality Developers is a company that writes programs to do specific jobs for other companies. These programs are called When the computer is working on given instructions, it is called The teclmology used to read pencil or pen marks on a multip Ie choice answer sheet is (8) CD) output storage processing input (8) OCR OMR

More information

Chapter 7. Telecommunications, the Internet, and Wireless Technology

Chapter 7. Telecommunications, the Internet, and Wireless Technology Chapter 7 Telecommunications, the Internet, and Wireless Technology LEARNING OBJECTIVES What are the principal components of telecommunications networks and key networking technologies? What are the different

More information

Local area network (LAN) Wide area networks (WANs) Circuit. Circuit switching. Packets. Based on Chapter 2 of Gary Schneider.

Local area network (LAN) Wide area networks (WANs) Circuit. Circuit switching. Packets. Based on Chapter 2 of Gary Schneider. Local area network (LAN) Network of computers located close together Wide area networks (WANs) Networks of computers connected over greater distances Based on Chapter 2 of Gary Schneider. (2009). E-Business.

More information

Razi University Eduvational Use. Computer. Fundamentals & Programming. Software. Computer Fundamentals & Programming. Dr.

Razi University Eduvational Use. Computer. Fundamentals & Programming. Software. Computer Fundamentals & Programming. Dr. Software Dr. Maysam Saidi 1 1. 2. 3. 4. 5. Application Software Types of Software Software Licensing Types of Software License Software Piracy 2 Software software, or just software, is a collection of

More information

Bridge Program Computer Skills Self-Inventory

Bridge Program Computer Skills Self-Inventory Name Date Bridge Program Computer Skills Self-Inventory This inventory is a lengthy but non-comprehensive list of beginning, intermediate and advanced computer skills a typical college graduate would have.

More information

Geographic Information Systems (GIS) - Hardware and software in GIS

Geographic Information Systems (GIS) - Hardware and software in GIS PDHonline Course L153 (5 PDH) Geographic Information Systems (GIS) - Hardware and software in GIS Instructor: Steve Ramroop, Ph.D. 2012 PDH Online PDH Center 5272 Meadow Estates Drive Fairfax, VA 22030-6658

More information

3 The Internet and the electronic mail

3 The Internet and the electronic mail 3 The Internet and the electronic mail The chapter concerns the following; ² Internet operation ² Internet services ² Searching information ² Uniform Resource Locator-URL ² IP addresses ² Domain name ²

More information

Chapter 3. E-commerce The Evolution of the Internet 1961 Present. The Internet: Technology Background. The Internet: Key Technology Concepts

Chapter 3. E-commerce The Evolution of the Internet 1961 Present. The Internet: Technology Background. The Internet: Key Technology Concepts E-commerce 2015 business. technology. society. eleventh edition Kenneth C. Laudon Carol Guercio Traver Chapter 3 E-commerce Infrastructure: The Internet, Web, and Mobile Platform Copyright 2015 Pearson

More information

Class X Subject : IT (Vocational) Chapter -1 Ouestion / Answer

Class X Subject : IT (Vocational) Chapter -1 Ouestion / Answer Class X Subject : IT (Vocational) Chapter -1 Ouestion / Answer Q1 What is a computer network? A computer network, often simply referred to as a network, is a collection of computers and other hardware

More information

Lab 03. Windows Operating Systems (Cont.)

Lab 03. Windows Operating Systems (Cont.) Lab 03 s (Cont.) Objectives Develop a good understanding of 1. The role of an operating system in a computer system 2. Services provided by an operating system and have some hands on experience in 1. Understanding

More information

INFS 321 Information Sources

INFS 321 Information Sources INFS 321 Information Sources Session 12 The Internet Lecturer: Prof. Perpetua S. Dadzie, DIS Contact Information: pdadzie@ug.edu.gh College of Education School of Continuing and Distance Education 2014/2015

More information

Multimedia Technology (IT-204-F) Section A Introduction to multimedia. Lecture 4. Multimedia Networks

Multimedia Technology (IT-204-F) Section A Introduction to multimedia. Lecture 4. Multimedia Networks Multimedia Technology (IT-204-F) Section A Introduction to multimedia Lecture 4 Multimedia Networks 1 Multimedia Networks: Five basic types that provide multimedia communication services: -- Telephone

More information

elc International School

elc International School Subject: COMPUTER SCIENCE (0478) Syllabus 2016 Topics to be covered Section 1: Theory of Computer Science Theory: At the end of the section candidates should be able to Practical: At the end of the section

More information

1. "To help others locate a Web site, the site should be registered with various " a. On Line services b. Backbone providers c.

1. To help others locate a Web site, the site should be registered with various  a. On Line services b. Backbone providers c. 1. "To help others locate a Web site, the site should be registered with various -----." a. On Line services b. Backbone providers c. Search engines d. Mail servers 2. "In technique, network communications

More information

SCSD Technology Standards Third Grade A Awareness - Exposed to the technology as it is being used by others.

SCSD Technology Standards Third Grade A Awareness - Exposed to the technology as it is being used by others. General Hardware 1.3 Identify and use A/V equipment: VCR, laserdisc, digital camera, camcorder, audio CD player, audio cassette player, TV. 1.6 Identify the appropriate cables for computer and A/V connections.

More information

CONCEPTS OF MANAGEMENT COMPUTING

CONCEPTS OF MANAGEMENT COMPUTING CONBUS1 NOVEMBER 2013 EXAMINATION DATE: 11 NOVEMBER 2013 TIME: 14H00 17H00 TOTAL: 100 MARKS DURATION: 3 HOURS PASS MARK: 40% (BUS-EDP) CONCEPTS OF MANAGEMENT COMPUTING THIS EXAMINATION PAPER CONSISTS OF

More information

SECTION 2 (Part B) Types And Components Of Computer Systems. Sophia Pratzioti

SECTION 2 (Part B) Types And Components Of Computer Systems. Sophia Pratzioti SECTION 2 (Part B) Types And Components Of Computer Systems 2 Hardware & Software Hardware: is the physical parts of the computer system the part that you can touch and see. Hardware can be either external

More information

BEDI INTERNATIONAL SCHOOL, BAREILLY. Chapter-1(Computer Hardware Internal & External)

BEDI INTERNATIONAL SCHOOL, BAREILLY. Chapter-1(Computer Hardware Internal & External) Chapter-1(Computer Hardware Internal & External) I. Fill in the blanks. 1. External hardware are the physical parts that are outside the computer. 2. Internal hardware are the physical parts that are inside

More information

Computers Are Your Future

Computers Are Your Future Computers Are Your Future Computers Are Your Future The Internet and World Wide Web 2006 Prentice-Hall, Inc. Slide 2 What You Will Learn... What You Will Learn... How the Internet works Methods for accessing

More information

PROBLEM SOLVING AND OFFICE AUTOMATION. A Program consists of a series of instruction that a computer processes to perform the required operation.

PROBLEM SOLVING AND OFFICE AUTOMATION. A Program consists of a series of instruction that a computer processes to perform the required operation. UNIT III PROBLEM SOLVING AND OFFICE AUTOMATION Planning the Computer Program Purpose Algorithm Flow Charts Pseudo code -Application Software Packages- Introduction to Office Packages (not detailed commands

More information

Introduction to Computing

Introduction to Computing Introduction to Computing Engr. Abdul-Rahman Mahmood MS, PMP, MCP, QMR(ISO9001:2000) armahmood786@yahoo.com alphasecure@gmail.com alphapeeler.sf.net/pubkeys/pkey.htm http://alphapeeler.sourceforge.net

More information

Introduction to Computers. Joslyn A. Smith

Introduction to Computers. Joslyn A. Smith Introduction to Computers Joslyn A. Smith March 9, 2010 5/18/2011 1 What is a Computer? An electronic device that has the capability of performing the following tasks: Responds to input. Processes the

More information

It is the process of sharing data, programs, and information between two or more computers.

It is the process of sharing data, programs, and information between two or more computers. 1 Communications It is the process of sharing data, programs, and information between two or more computers. Numerous applications depend on communication systems: E-mail Instant messaging (IM) Internet

More information

Copyright 2006 Prentice-Hall. All rights reserved. 1

Copyright 2006 Prentice-Hall. All rights reserved. 1 PC Basics CPSC 100 Hardware Software Networking Copyright 2006 Prentice-Hall. All rights reserved. 1 Objectives Identify basic components of a computer (hardware) Gain insight into how computers work (software)

More information

Syllabus for Computer Science General Part I

Syllabus for Computer Science General Part I Distribution of Questions: Part I Q1. (Compulsory: 20 marks). Any ten questions to be answered out of fifteen questions, each carrying two marks (Group A 3 questions, Group B, Group C and Group D 4 questions

More information

Course Title: Introduction to Information Technology Course no: CSC-101 Full Marks: Credit hours: 3 Pass Marks:

Course Title: Introduction to Information Technology Course no: CSC-101 Full Marks: Credit hours: 3 Pass Marks: Course Title: Introduction to Information Technology Course no: CSC-101 Full Marks: 60+20+20 Credit hours: 3 Pass Marks: 24+8+8 Nature of course: Theory (3 Hrs) + Lab (3 Hrs) Course synopsis: Fundamental

More information