You are on page 1of 29

LESSON 3 LANGUAGE/SOFTWARE 3.1 INTRODUCTION In the previous lesson we discussed about the different parts and configurations of computer.

It has been mentioned that programs or instructions have to be fed to the computer to do specific task. So it is necessary to provide sequence of instructions so that your work can be done. We can divide the computer components into two major areas, namely, hardware and software. Hardware is the machine itself and its various individual equipment. It includes all mechanical, electronic and magnetic devices such as monitor, printer, electronic circuit, floppy and hard disk. In this lesson we will discuss about the other part, namely, software. 3.2 OBJECTIVES After going through this lesson you will be able to

explain the concept of software distinguish between different types of software differentiate application software from system software define a language differentiate between different types of language distinguish between compiler and interpreter

3.3 WHAT IS SOFTWARE? As you know computer cannot do anything without instructions from the user. In order to do any specific job you have to give a sequence of instructions to the computer. This set of instructions is called a computer program. Software refers to the set of computer programs, procedures that describe the programs, how they are to be used. We can say that it is the collection of programs, which increase the capabilities of the hardware. Software guides the computer at every step where to start and stop during a particular job. The process of software development is called programming. You should keep in mind that software and hardware are complementary to each other. Both have to work together to produce meaningful result. Another important point you should know that producing software is difficult and expensive. 3.4 SOFTWARE TYPES Computer software is normally classified into two broad categories.

Application Software System software

Application Software: Application Software is a set of programs to carry out operations for a specific application. For example, payroll is an application software for an organization to produce pay slips as an output. Application software is useful for word processing, billing system, accounting, producing statistical report, analysis of numerous data in research, weather forecasting, etc. In later modules you will learn about MS WORD, Lotus 1-2-3 and dBASE III Plus. All these are application softwares. Another example of application software is programming language. Among the programming languages COBOL (Common Business Oriented Language) is more suitable for business application whereas FORTRAN (Formula Translation) is useful for scientific application. We will discuss about languages in next section. System Software: You know that 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. Remember that it is not possible to run application software without system software. Development of system software is a complex task and it requires extensive knowledge of computer technology. Due to its complexity it is not developed in house. Computer manufactures build and supply this system software with the computer system. DOS, UNIX and WINDOWS are some of the widely used system software. Out of these UNIX is a multi-user operating system whereas DOS and WINDOWS are PC-based. We will discuss in detail about DOS and WINDOWS in the next module. So without system software it is impossible to operate your computer. The following picture is shown in Fig. 3.1 relation between hardware, software and you as a user of computer system.

Fig. 3.1 Relation between hardware, software.

IN-TEXT QUESTIONS 1 1. What are program, programming and software? 2. Differentiate between system software and application software. 3. Write True or False. a. The set of instructions given to the computer is called programming. b. Application Software is a set of programs to carry out operations for a specific application. c. UNIX is a multi-user operating system.

3.5 WHAT IS LANGUAGE? You are aware with the term language. It is a system of communication between you and me. Some of the basic natural languages that we are familiar with are English, Hindi, Oriya etc. These are the languages used to communicate among various categories of persons. But how you will communicate with your computer. Your computer will not understand any of these natural languages for transfer of data and instruction. So there are programming languages specially developed so that you could pass your data and instructions to the computer to do specific job. You must have heard names like FORTRAN, BASIC, COBOL etc. These are programming languages. So instructions or programs are written in a particular language based on the type of job. As an example, for scientific application FORTRAN and C languages are used. On the other hand COBOL is used for business applications. 3.5.1 Programming Languages

There are two major types of programming languages. These are Low Level Languages and High Level Languages. Low Level languages are further divided in to Machine language and Assembly language. 3.5.2 Low Level Languages The term low level means closeness to the way in which the machine has been built. Low level languages are machine oriented and require extensive knowledge of computer hardware and its configuration. (a) Machine Language Machine Language is the only language that is directly understood by the computer. It does not needs any translator program. We also call it machine code and it is written as strings of 1's (one) and 0s (zero). When this sequence of codes is fed to the computer, it recognizes the codes and converts it in to electrical signals needed to run it. For example, a program instruction may look like this: 1011000111101 It is not an easy language for you to learn because of its difficult to understand. It is efficient for the computer but very inefficient for programmers. It is considered to the first generation language. It is also difficult to debug the program written in this language. Advantage The only advantage is that program of machine language run very fast because no translation program is required for the CPU. Disadvantages 1. It is very difficult to program in machine language. The programmer has to know details of hardware to write program. 2. The programmer has to remember a lot of codes to write a program which results in program errors. 3. It is difficult to debug the program. (b) Assembly Language It is the first step to improve the programming structure. You should know that computer can handle numbers and letter. Therefore some combination of letters can be used to substitute for number of machine codes.

The set of symbols and letters forms the Assembly Language and a translator program is required to translate the Assembly Language to machine language. This translator program is called `Assembler'. It is considered to be a second-generation language. Advantages: 1. The symbolic programming of Assembly Language is easier to understand and saves a lot of time and effort of the programmer. 2. It is easier to correct errors and modify program instructions. 3. Assembly Language has the same efficiency of execution as the machine level language. Because this is one-to-one translator between assembly language program and its corresponding machine language program. Disadvantages: 1. One of the major disadvantages is that assembly language is machine dependent. A program written for one computer might not run in other computers with different hardware configuration.

IN-TEXT QUESTIONS 2 1. What is the difference between FORTRAN and COBOL? 2. Differentiate between machine language and Assembly language. 3. Write True or False a. Low level language and High level language are two major types of programming languages. b. Machine language is the only language that is indirectly understood by the computer. c. Assembly language is second generation language.

3.6 HIGH LEVEL LANGUAGES You know that assembly language and machine level language require deep knowledge of computer hardware where as in higher language you have to know only the instructions in English words and logic of the problem irrespective of the type of computer you are using.

Higher level languages are simple languages that use English and mathematical symbols like +, -, %, / etc. for its program construction. You should know that any higher level language has to be converted to machine language for the computer to understand. Higher level languages are problem-oriented languages because the instructions are suitable for solving a particular problem. For example COBOL (Common Business Oriented Language) is mostly suitable for business oriented language where there is very little processing and huge output. There are mathematical oriented languages like FORTRAN (Formula Translation) and BASIC (Beginners All-purpose Symbolic Instruction Code) where very large processing is required. Thus a problem oriented language designed in such a way that its instruction may be written more like the language of the problem. For example, businessmen use business term and scientists use scientific terms in their respective languages. Advantages of High Level Languages Higher level languages have a major advantage over machine and assembly languages that higher level languages are easy to learn and use. It is because that they are similar to the languages used by us in our day to day life. 3.6.1 Compiler It is a program translator that translates the instruction of a higher level language to machine language. It is called compiler because it compiles machine language instructions for every program instructions of higher level language. Thus compiler is a program translator like assembler but more sophisticated. It scans the entire program first and then translates it into machine code. The programs written by the programmer in higher level language is called source program. After this program is converted to machine languages by the compiler it is called object program.

Higher Level Language --> (Compile) ---> Program --> Machine Language Program Fig. 3.2 Compile A compiler can translate only those source programs, which have been written, in that language for which the compiler is meant for. For example FORTRAN compiler will not compile source code written in COBOL language.

Object program generated by compiler is machine dependent. It means programs compiled for one type of machine will not run in another type. Therefore every type of machine must have its personal compiler for a particular language. Machine independence is achieved by using one higher level language in different machines. 3.6.2 Interpreter An interpreter is another type of program translator used for translating higher level language into machine language. It takes one statement of higher level languages, translate it into machine language and immediately execute it. Translation and execution are carried out for each statement. It differs from compiler, which translate the entire source program into machine code and does involve in its execution. The advantage of interpreter compared to compiler is its fast response to changes in source program. It eliminates the need for a separate compilation after changes to each program. Interpreters are easy to write and do not require large memory in computer. The disadvantage of interpreter is that it is time consuming method because each time a statement in a program is executed then it is first translated. Thus compiled machine language program runs much faster than an interpreted program.

IN-TEXT QUESTIONS 3 1. What is the difference between interpreter and compiler? 2. Give some examples of high level language. 3. Write True or False (a) High level languages are problem-oriented language. (b) Object program generated by compiler is machine independent. (c) The disadvantage of interpreter is that it is time consuming. 3.7 WHAT YOU HAVE LEARNT In this lesson we discussed about two types of software, namely, system software and application software. System software controls the hardware part of the computer. It is designed for performing tasks such as controlling all operations required to move data into and out of the computer. It communicates with printer, card reader, disk, tapes, etc. and monitors the use of various components like memory, CPU, etc. DOS, UNIX and WINDOWS are three important system softwares. Application software is a set of programs written for specific purpose. Examples of application softwares are MS WORD, Lotus 1-2-3, COBOL, BASIC and FORTRAN. We have discussed about levels of computer language. 3.8 TERMINAL QUESTIONS

1. What is software and hardware? 2. What is computer Language? 3. Name the three different categories of computer languages. 4. What is machine language? Why is it required? 5. What are advantages and disadvantages of machine language . 6. What is assembly language? What are its advantages over machine languages? 7. What is the difference between source program and object program? 8. What is higher level languages? Why are higher level languages are easier to use. 9. What is compiler? Why is it required? 10. What is interpreter? How does it differ from compiler?

3.9 FEEDBACK TO IN-TEXT QUESTIONS IN-TEXT QUESTIONS 1 1. Program is a set of instructions given to the computer by the user. Software is a set of computer programs and procedures that describe the programs. Programming is the process of software development. 2. Application Software is a set of programs to carry out operations for a specific application. System software is a set of programs written for performing tasks such as controlling all operations required to move data into and out of the computer. 3. (a) False b) T rue (c) True IN-TEXT QUESTIONS 2 1. FORTRAN is used for scientific applications whereas COBOL is used for business applications. 2. Machine Languages are the only language that is directly understood by the computer. It is written in binary form that is 0 and 1. The set of symbols and letters forms the Assembly Language. 3. (a) True (b) False (c) True IN-TEXT QUESTIONS 3

1. Both compiler and interpreter are program translators used for translating higher level language into machine language. While compiler scans the entire program first and then translates it into machine code, an Interpreter translates the program line by line. 2. FORTRAN (Formula Translation) and BASIC (Beginners All-purpose Symbolic Instruction Code) are some of the high level languages. 3. (a) True (b) False (c) True

WINDOWS 95- AN INTRODUCTION 8.1 INTRODUCTION Windows 95 is the upgraded version of Windows 3.x series with lots of new features embedded into it. It is a complete paradigm shift from windows 3.x working environment. It is the entry point to a 32-bit operating/computing environment with less set of hardware requirements. It has more compatibility with other software as compared to its previous version and provides easy installation. It also runs most of the Windows 3.x and Ms-DOS programs. Windows 95 also provides flexibility to configure hardware, easy link to a network or setup a network, install and uninstall programs automatically. It also has lots of other useful features like easy Internet access, multitasking, and its most useful feature is long file names. 8.2 OBJECTIVES: At the end of this lesson you would be able to

understand the difference between Windows 3.11 and Windows95. able to work on Windows95 appreciate the uses of Long file name appreciate the new look and feel of Windows95.

8.3 IMPROVED FEATURES OF WINDOWS 95 Graphical User Interface : As compared to Windows 3.x, Windows 95 provides user-friendlier interface to work on. Its improved graphical user interface makes learning and using Windows 95 more natural and easier for all types of users. It is more powerful, customizable and efficient. Start Button Introduction of START button in Windows 95 made life much simpler while there is a need to access multiple programs. It is the gateway of accessing most of the functionality available in the computer loaded with Windows 95. Just Click on the Start button anytime to start any programs, open or find documents, change windows settings, get Help, manage Files, maintain system, and much more. Taskbar

10

As the name suggests, the Task bar provides information and access to the entire task that has been currently activated by Windows 95. Using this one can keep a track of what all programs have been activated and switched between them. Windows Explorer Windows Explorer is more or less acts as a File Manager for Windows 95, but with lots of new features. It is more efficient, faster and user friendly as compared to File Manager of Windows 3.x. Using Explorer one can easily browse through all the drives and network resources available and manage files. Right Mouse Button Clicking on the right mouse button activates a pop-up menu in any programs so as to help in completing a task efficiently. Long File Names As the Ms-DOS convention follows, non-of the file used in DOS environment should be more than 8 characters of primary name and optional secondary name (extension) of three characters. However Windows 95 has broken this barrier. Windows 95 supports long file names, maximum of 255 characters. It also allowed space to be used in between file name. This helps to make files and folders (directory/subdirectory) easier to organize and find. Shortcuts As the name suggests, SHORTCUTS are the shortest way to access programs, files and other resources in Windows 95. Instead of going through the structural process of accessing a program, one can create "shortcuts" to access them. It creates links for easy access to files, programs, folders, and more. Multitasking Multitasking allows the user to activate and accomplish more than one task at a time. For example, work on a document file in WORD programs, while copying file from other computer available in the network. With Windows 95, 32-bit computing environment, the user can do more than one task a time.

11

Easy Internet Access One of the most useful and entirely new features is Windows 95 easy access to Internet. It provides built-in Internet functionality to setup link and access Internet with less amount of Hardware and Software requirement. It also provides connectivity software from Microsoft Network (MSN), CompuServe, and America Online. It also improves the efficiency of working on Internet with applications that support the latest Internet technologies, such as ActiveX, Java, and streaming audio and video. Software Compatibility Windows 95 provides complete backward compatibility. It is easily compatible with applications developed for MS-DOS and Windows 3.x environment. It also supports the latest 32-bit technology. Most of the latest software packages are now built on Windows 95 operating environment. Great Gaming Platform Windows 95 support rich graphics, high quality audio and video. It also requires all most no editing of Config.sys files so as to support these technologies. All this is possible because of Windows 95 compatibility with latest and hottest technologies like Plug and Play, AutoPlay, and built-in support for MIDI and digital and surrounds video. Hardware Compatibility Windows 95 provides greater Hardware compatibility as compare to any other operating environment. It has flexibility of supporting hardware from different vendors. Its Plug and Play functionality allows to insert the hardware card into the computer and when the computer is turned on Windows 95 automatically recognizes and sets up the hardware. Find Utility Find Utility of Windows 95 allows you to do searches by partial name, last modified date, or full text. In addition, you can save, rename, or view files from within the result pane, just like you can from Windows Explorer.

Help Windows 95 provides online help to accomplish a task. If the user is not sure how to perform a task, Windows 95 Help will provide structured process how to accomplish the

12

task. Simply right-click on any object in the user interface (icons) and you'll get relevant descriptions about that object. (a) System Requirements CPU Memory Hard Disk Space Display Operating System Recommended 486/25 MHz-based system or more Recommended a minimum of 8-MB memory (RAM). Available free hard disk space of 40-45 MB. VGA or higher-resolution display MS-DOS

Peripheral/ Miscellaneous Compatible pointing device

(b) Windows Desktop Icons Icon Purpose My Computer Provides direct access to local drives, printers, Control panel, and the Dialup Network utility. Network Neighborhood Access to shared resources on the machine and computers on local and wide area network. Recycle Bin Provides drag and drop facilities, deletion of file from folders in the machine and provides a second chance to recover files deleted from the hard disk. Inbox or Microsoft Outlook Universal in-box for all mail sources including faxes, mail, exchange, and others.

13

Fig. 8.1 8.4 START BUTTON AND TASK BAR Windows now features the Start button and Taskbar at the bottom of the screen. This bar contains the Start button. Using this button, a program can be quickly started or file can be searched for. Quick help on how to use windows can also be obtained from this task bar.

14

Fig. 8.2

Click on the Start to activate the Pop-up menu so as to open a program, find a file or folders (directory or sub-directory), and change the settings for Windows95, Run a program or shut down the computer and also to get help on windows. If you have opened more than one program or windows, you can switch between them. All the opened windows or program appears on the Start or the Task bar as a minimized icons. Click on the desired icon to open the designated program. Similarly if you don't need a windows too frequently, click on the minimized button of the windows. This will send the activated window as small icon to the task bar. (a) Steps to start a program 1. Click on the Start button, and then point to Programs option. 2. Select the program you want to run. If the program you want is not on the menu, point to the folder that contains the program. 3. Click on the program icon or menu. Once the selected program starts, a small icon appears on the taskbar. If you have opened more than one program, click on the required program icon on the taskbar to make it currently activated program. If the desired program is not available on the program menu or one of its submenus, point to Find on the Start menu, and then click Files Or Folders where the program resides. You can also use the Find dialog box to locate the program file. (b) Steps to open a recently used document

15

1. Click on the Start button 2. Select/point to Documents option. 3. Select the document you want to open, by clicking on it Note: All programs are not capable of adding files to Document menu. So if the desired document to be opened is not listed or available in Document Menu, click on the Start button, and then select the Find option. Select/Click "Files Or Folders" option, and then use the Find dialog box to locate the file. 8.5 MY COMPUTER It allows looking at a glance to all the resource available on the machine such as floppy drive, CD-ROM drive, Hard Disk etc. If you have network drives mapped as local drives they will also show up here. Double clicking on a drive in the top level of my computer will open another window containing the main folders on the select drive. Double clicking on any of the folders in the drive window will open another window showing the contents of the folder. Double clicking on either the Control Panel folder or the Printers folders in My Computer windows will activate the respective windows for Control panel or Printers. Using this you can manipulate the settings for your Computer or Printer the same way that you were accessing them from the Start menu.

16

Fig.8.3 My Computer is the quickest way of accessing all the resources available on the computer. Even this can be used to copy, move, delete files among or between floppy and Hard Disk or network drives.

Fig 8.4 My Computer also provides the tools to change the settings of the available resources. Select the media such as floppy disk, hard disk drive you want to change the settings and right click on it. This will activate a Pop-Up menu. Now select the Properties option from the pop-up menu. This action will display the property windows with three options: General, Tools and Sharing. Using these three options you can change the properties of the selected media. 8.6 WINDOWS EXPLORER As the name suggests, Windows Explorer let you explore the contents of your computer and do file management. It is the improved version of File Manager in Windows 3.1 or 3.11.

17

Fig. 8. 5

To activate Windows Explorer, Click on the Start Button on the Task Bar and select Programs option. This will activate another Pop-Up menu. Now select Windows Explorer Option. Windows Explorer displays on the left-hand side of the screen, all the folders on your computer in a hierarchical order. On the right hand side of the screen, it displays all the files and folders in each selected folder.

18

Fig 8.6 Windows Explorer is especially useful for copying and moving files. You can open the folder that contains the file you want to move or copy, and then drag it to the folder you want to put it in. (a) Steps to copy a file or folder 1. Go to My Computer or Windows Explorer 2. Select the file you want to copy by clicking on it. 3. Go to Edit Menu and Select/Click Copy option. 4. Open the folder or disk drive where you want to copy. 5. Again go to Edit Menu and Select/Click Paste option. (b) Steps to move a file or folder

19

1. Go to My Computer or Windows Explorer 2. Select the file you want to move by clicking on it. 3. Go to Edit Menu and Select/Click Cut option. 4. Open the folder or disk drive where you want to move. 5. Again go to Edit Menu and Select/Click Paste option. (c) Steps to delete a file or folder 1. Go to My Computer or Windows Explorer 2. Select the file or folder you want to delete by clicking on it. 3. Go to File Menu and Select/Click Delete option. Note:

Files or folder deleted are stored in the Recycle Bin until the Recycle Bin is emptied. Files or folders can also be deleted by dragging file or folder icons onto the Recycle Bin icon. If SHIFT key is pressed while dragging, the item will be deleted permanently from the computer without being stored in the Recycle Bin. To select more than one file or folder to copy, while pressing the CTRL key, click the items you want to select.

(d) Steps to copy a file to a floppy disk 1. Insert the disk in the floppy disk drive. 2. Go to My Computer or Windows Explorer 3. Select the File you want to Copy, by clicking on the file. 4. Go to File menu, point to "Send To" option, and then select the drive you want to copy the file to. (e) Steps to create a new folder 1. Go to My Computer or Windows Explorer; open the folder in which you want to create a new folder by double clicking on it. 2. Go to the File menu, point to New, and then click on the "Folder" option. 3. The new folder appears with a temporary name. 4. Type a name for the new folder, and then press ENTER.

20

Steps to change the name of a file or folder 1. 2. 3. 4. Note : As Windows 95 supports long file name, a filename can be up to 255 characters, including spaces. However, it cannot contain any of the following characters: \/:*?"<>| Go to My Computer or Windows Explorer Click on the file or folder you want to rename. Go to the File menu, and Select/Click "Rename" option. Type a new name for the file or Folder, and then press ENTER.

8.7 NETWORK NEIGHBORHOOD A Network is a group of Computers connected to each other to share available resources such as storage and printers. Network neighborhood takes the ability of My Computer and extends them one step further, by giving you with the ability to view all of the Computers connected in workgroup or network, and see what drives or Printers may be available for use. If you double click on one of the Computers, any resources that Computer shares with others in the workgroup like- drives, directories or printers will be listed

Fig.8.7 When connected to a network, the Network Neighborhood icon appears on the desktop. To browse through the computers in the workgroup and the computers on the entire network, double click on the icon Network Neighborhood.

21

1.8 RECYCLE BIN The files deleted by you are put in the Recycle Bin, a holding place for files that are no longer needed. There you can also drag and drop files for quick deleting. They are, however, not actually removed from the hard disk until the user "empty" the Recycle Bin. It is a safety feature, built in to protect you against the possibility of deleting something you should not have.

Fig. 8.9 8.9 FIND Using Windows 95 it is easy to locate files and folders on the computer. One way is to browse through folders in My Computer. But if you want to find something quickly, you can use the Find command on the Start menu.

22

Fig. 8.10 Click on the Start button and select "Find" option. Now select the Option " Files or Folders". This will activate the Find Dialog box. In the Find dialog box, type the name of the file or folder you are looking for, and then click Find Now. You can also use wildcard character to Find files

Fig. 11

8.10 WORK WITH PROGRAMS Windows 95 provides higher level of flexibility in terms of installing and removing programs. To install a program from a floppy disk or CD-ROM 1. Select Control Panel from the Settings option of Start Menu 2. Double Click on the Add/Remove Programs icon. 3. Follow the instructions on your screen. To install a program from a network 1. Click here to open the Add/Remove Programs dialog box. 2. if the Install/Uninstall tab is selected, and your computer is already connected to a network, click Install button, and then click Next. Follow the instructions on your screen. Note 23

If you do not have a Network Install tab in the Add/Remove Programs dialog box, this feature has not been enabled on your computer, your network, or both. See your system administrator. If you are not already connected to the shared folder you want to install from, you must connect to it by using My Computer or Windows Explorer, or type the path to it in the text box. To remove a program from your computer 1. Select Control Panel from the Settings option of Start Menu 2. Double Click on the Add/Remove Programs icon. 3. Follow the instructions on your screen. Note Only programs that were designed for Windows 95 can be removed by using Add/Remove Programs. For all other programs, check the program's documentation to determine which files should be removed. 8.11 MS-DOS WINDOW Windows 95 provides the flexibility of executing most of the DOS commands or DOS based program without going out of Windows 95 GUI. To use DOS prompt; 1. Click the Start button, and then point to Programs. 2. Click/Select MS-DOS Prompt.

24

Fig 8.12

Tips

To view the toolbar, click the MS-DOS icon in the title bar, and then click Toolbar. To switch between a full screen and a window, press ALT+ENTER. To quit MS-DOS, click or type Exit at the command prompt.

8.12 CHANGE WINDOWS SETTINGS

25

Windows 95 provides tools to change the look and feel of the desktop window. Using these tools you can change the desktop background, wallpaper and lots of other settings according to your choice. To activate these tools, right click on the windows. This will display a menu now select the Properties option. You can also activate these tools from Control panel by selecting the Display icon.

Fig 8.13 Desktop Background To change the background of the desktop


Right Click on the Desktop to view the Display properties. In the Pattern or Wallpaper list, click the pattern or wallpaper you want to use.

26

Fig. 8.14 Tips


To cover the entire screen with wallpaper image, click Tile. To center a wallpaper image, click Center. Patterns and wallpaper can be used simultaneously. However, you will not be able to see the pattern, if Title is selected.

Similarly all other option such as Appearance, Screen Saver and Settings can be used. Using the Settings option, one can select the number of colors, pixel type and display adapter for the system.

8.13 SHUT DOWN THE COMPUTER Click the Start button, Click the Shut Down button, and then select the option Shut down the Computer and click on the Yes button.

27

Fig. 8.15

Important Do not turn off your computer until the "You can now safely turn off your computer" message appears. Choose the best answer for the following questions.

Top IN-TEXT QUESTIONS 8.1

1. Which of the following is introduced exclusively in Windows95? a. b. c. d. Control panel File manager Start button None of the above

2. What is the Windows 3.x series equivalent to Windows Explorer in Windows95? a. b. c. d. Program manager File manager Print manager None of the above

3. Answer whether the following statement is True (T) or False (F). 28

a. b. c. d.

Windows 95 supports file name of 255 characters including space in between. Windows 95 does not support Ms-DOS based application. Windows 95 is a application software. In Windows 95 desktop icons can be created, but can not be deleted.

4. Fill in the blanks a. Inbox in Windows 95 is used for ______________________. b. GUI stands for ________________________.

WHAT YOU HAVE LEARNT This lesson introduced you to one of the most popular and widely used GUI operating system in desktop environment. In the beginning it discussed what is GUI and its usefulness. It explained the new features of Windows95 and hardware requirement for installation. You also learned about various Windows 95 icons and their usability. Here we discussed how to do file management in Windows 95, and also we learned how to change look and feel of Windows 95 desktop according to user requirement.

8.15 TERMINAL QUESTIONS a. b. c. d. e. Briefly explain, how Windows95 is different from Windows 3.x series. Explain what do you understand by multitasking? What is the minimum hardware requirement for installing Windows95 software? What is the purpose of recycle bin? Explain the steps involved to shut down Windows95.

8.16 FEEDBACK TO IN-TEXT QUESTIONS IN-TEXT QUESTIONS 8.1 1. (c) 2. (b) 3.(a) True (b) False (c) False (d) False 4. (a) Getting e-mail, (b) Graphical User Interface.

29

You might also like