False because it for ASCII not EBCDIC Dir /O:order ex. Dir/O:n False because it s a valid command True False because there are lines

Size: px
Start display at page:

Download "False because it for ASCII not EBCDIC Dir /O:order ex. Dir/O:n False because it s a valid command True False because there are lines"

Transcription

1 Instructions: This is an open book pretest. Answer all questions. There are three sections. There are a total of five question pages. The time limit is two hours. Section one: Select only one answer for each multiple-choice question. Each question is worth 2 marks. Q1. Determine which of the following is true concerning DOS filters a. A DOS filter is used to modify information as it passes from EBCDIC text files to the screen. False because it for ASCII not EBCDIC b. The sort command is replaced using the command (dir /w) False because to sort you must use Dir /O:order ex. Dir/O:n c. The command (find /C supervisor memo1.txt memo2.txt) is an invalid command. False because it s a valid command d. The command (type readme.doc more) produces the same output as (more < readme.doc) True Q2. Determine which of the following is true concerning the tree command a. To indicate branching of directories, the tree command only uses the line characters. False because there are lines b. The deltree command is an enhanced version of the tree command. False, deltree erases a directory, tree shows structure. c. We can use the tree command with redirection symbols. True d. The tree command is an internal DOS command. False, it s external. Internal means it exists in command.com. Tree.exe is external. Q3. Determine which of the following statement is true concerning variables. a. DOS includes built-in variables and therefore do not allow user defined variables. False you can define your own variable. b. You can use the path variable in config.sys to list directories through which you want DOS to search to find program files. False, Path variable only exists in autoexec.bat c. The command (set prompt = $p$g) can be used to set the prompt to include the current path and a greater than sign. True. d. Variables do not require RAM space. False, variables reside in the RAM. Q4. Which of the following statement about data copying is false? a. msbackup, copy, and xcopy can be used to backup files. True. b. You can use the copy command to combine all the contents of three files into one bigger file. True. Called concatenation. c. The copy command must at-least include one parameter, at-most two parameters. True. d. The xcopy command is an enhanced version of the copy command and therefore does not require wildcards in its usage. False because you can use wildcards in XCOPY.

2 Q5. Which of the following statement is true about preparing a hard drive for usage? a. The FORMAT command is used to create partitions on the hard drive. False, FDISK is for partitions. b. We can still use the hard drive even thou the following files on the C: drive are not installed: MSDOS.SYS, IO.SYS, COMMAND.COM. True, can still use drive- with boot disk for example. c. For every logical partition, we must create an extended partition on the hard drive. False, because you only need one extended partition for many logical partitions. d. The hard drive can have more than one active partition at a time. False, BIOS can only see one active partition at boot up. Section two: With the given file structure of the hard drive below answer the following questions. Each question is worth two marks. C:\ Document DOS download files: black.mp3 fly.mp3 Temp files: bsa001.tmp PDF MP3 Q6. Write the instruction to change your current directory to the MP3 directory. C:\> cd document\mp3 Q7. What is wrong with this instruction: C:\>rd c:\temp It will not remove the directory because there is a file in the directory. RD only works with an empty directory. Q8. Write the instruction to move the contents of the download directory into the MP3 directory. C:\> move download\*.mp3 document\mp3 Q9. Write the instruction to rename the MP3 directory to Music directory. C:\Temp> move c:\document\mp3 c:\document\music Q10. Assume the contents of the DOS directory contains 125 files. Write the instructions to control the listing of the files in the DOS directory on screen. C:\> dir c:\dos /p /o:d 1

3 Q11. What is wrong with this instruction: C:\Temp>erase b?001.tm* The? wildcard is used to replace only one character. The file name is bsa001.tmp.? cannot replace the s and the a characters. Q12. Write the instruction to create a subdirectory within the Document directory called diary. C:\DOS> md c:\document\diary Section three: Answer all the following questions. Q13 (2 marks): What function does an operating system perform in a computer system? Resource management and extended machine. Q14 (2 marks) What are the four main types of resources managed by a typical operating system? IRQ, I/O address, DMA, memory address. Q15 (2 marks) What is the purpose of using a batch file? The purpose of a batch file is to execute line by line frequently used commands that the user types and saves. Q16 (6 marks) Write a short batch file according to the pseudo-code below: Clear the dos screen Turn off the displaying of the commands Allow the user to choose two menu items: one to display his name, another to exit the batch file. Note: The batch file will not end until the user enters the exit option. (hint: create a loop) The batch file must be able to display any user name (hint: use replaceable parameters) Remember to be polite and add an exit message when exiting your batch file. off :start echo hit n key to display name echo hit x key to exit choice /c: nx If errorlevel 2 goto end Echo %1 Goto start :end echo Goodbye! Q17 (2 marks) How would you make a copy of a diskette onto another diskette without using the hard drive as a temporary storage area? Diskcopy a:\ 2

4 Q18 (4 marks) Describe what the following batch file is doing? :START = label SHIFT = move 1 parameter over to the left IF NOT %0 = = GOTO END = = if parameter list is not empty, go to end ECHO %0 = display parameter 0 REM IF NOT EXIST GOTO END = it does nothing, this is remark statement GOTO START = jump statement :END = label ECHO Later gator! = display message Q19 (3 marks) Assume you created the following files on your hard drive according to the following dates: File1.txt Sept. 5, 2003 File2.txt Sept. 7, 2003 File5.txt Sept. 11, 2003 File4.txt Sept. 19, 2003 File8.txt Sept. 28, 2003 File6.txt Oct. 8, 2003 File9.txt Oct. 22, 2003 File7.txt Nov. 2, 2003 a. What would be modified to what files if you made a full backup on Sept. 16, 2003? Turns off archive attribute for file1.txt, file2.txt and file5.txt. b. Assume you made a full backup on Sept. 16, 2003 and an incremental backup on Sept. 22, Which files would be backup if you made another incremental backup on Oct. 12, 2003? File8.txt, and file6.txt c. Assume you made a differential backup on Sept.25, What files would be backup if you made another differential backup on Oct. 28, 2003? All files but file7.txt Q20 (3 marks) AUTOEXEC.BAT contains the following C:\DOS\SMARTDRV C+ 4 /N a. Describe what this instruction performs. C+ -> enables read and write caching for drive c 4 -> 4 kilobytes /n -> write cached data to disk when system is idle. b. What instruction can we include in CONFIG.SYS that will basically perform the same function as SMARTDRV mentioned above? Buffer = 1,8 3

5 Q21 (2 marks) Describe the computer bootup sequence. 1. POST ROM BIOS start-up program surveys hardware resources and assigns & meets resource needs. 2. ROM BIOS searches and loads ODS 3. OS configures system and continues loading 4. User executes software application. 4

Basic DOS Commands MCQ

Basic DOS Commands MCQ 1. An entire path name, consisting of several sub-directory names can contain upto A) 13 character B) 36 character C) 63 character D) 53 character 2. In which year the first operating system was developed

More information

Disk Operating System

Disk Operating System Disk Operating System DOS stands for Disk Operating System. DOS controls the computer s hardware and provides an environment for programs to run. This system program must always be present when working

More information

INDEX OF COMMANDS. ATTRIB [+r] [x:]{file} [-r] 92, 180. BACKUP x:[{file}] y:[/d][/m][/s] BASIC [[x:]{file}] BASICA [[x:]{file}] CD [[x:]\{name}]

INDEX OF COMMANDS. ATTRIB [+r] [x:]{file} [-r] 92, 180. BACKUP x:[{file}] y:[/d][/m][/s] BASIC [[x:]{file}] BASICA [[x:]{file}] CD [[x:]\{name}] INDEX OF COMMANDS In this index of commands, anything between square brackets indicates an alternative or a facultative addition to the command in question; "x:" and "y:" mean the designation of a drive;

More information

Lab - Common Windows CLI Commands

Lab - Common Windows CLI Commands Introduction In this lab, you will use CLI commands to manage files and folders in Windows. Recommended Equipment A computer running Windows Step 1: Access the Windows command prompt. a. Log on to a computer

More information

Index of Names, Concepts and Symbols

Index of Names, Concepts and Symbols Index of Names, Concepts and Symbols Active drive - 17, 82 Active line - 136 Address - 41 Advanced Disk BASIC - 58 Alternate mode - 69 ALT key - 16, 68, 80, 100, 104 ANSI - 65, 99 ANSI.SYS - 99 Apple II

More information

COMPUTER SCIENCE SECTION A

COMPUTER SCIENCE SECTION A Total No. of Printed Pages 16 X/15/CSc 2 0 1 5 COMPUTER SCIENCE ( CANDIDATES WITH PRACTICAL/INTERNAL ASSESSMENT ) Full Marks : 80 Pass Marks : 24 ( CANDIDATES WITHOUT PRACTICAL/INTERNAL ASSESSMENT ) Full

More information

8.1 Software/Hardware Required: Core 2 duo/i3/i5/i7-64bit processor Operating System ubuntu/fedora 64bit OS Assembler: NASM Editor Used gedit

8.1 Software/Hardware Required: Core 2 duo/i3/i5/i7-64bit processor Operating System ubuntu/fedora 64bit OS Assembler: NASM Editor Used gedit Att (2) Perm(5) Oral(3) Total(10) Sign with Date Date: Assignment No.8 Aim: Write X86 Menu driven Assembly Language Program (ALP) to implement OS (DOS) commands TYPE, COPY and DELETE using file operations.

More information

IntroductIon to dos. 2.1 IntroductIon. 2.2 SettIng up dos

IntroductIon to dos. 2.1 IntroductIon. 2.2 SettIng up dos 2 IntroductIon to dos 2.1 IntroductIon DISK OPERATING SYSTEM (DOS) is a system software, which is closely associated with the computer hardware and provides the interface between the user and resources

More information

1.Explain with the diagram IVT of 80X86. Ans-

1.Explain with the diagram IVT of 80X86. Ans- 1.Explain with the diagram IVT of 80X86 In 8086 1 kb from 00000 to 003ff are reserved for interrupt routine as shown in figure known as interrupt vector. It supports 256 interrupt procedures containing

More information

Advanced Batch Files. Ch 11 1

Advanced Batch Files. Ch 11 1 Advanced Batch Files Ch 11 1 Overview Quick review of batch file commands learned in earlier chapters. Ch 11 2 Overview Advanced features of these commands will be explained and used. Ch 11 3 Overview

More information

COMPUTER SCIENCE SECTION A

COMPUTER SCIENCE SECTION A Total No. of Printed Pages 16 X/14/CSc 2 0 1 4 COMPUTER SCIENCE ( CANDIDATES WITH PRACTICAL/INTERNAL ASSESSMENT ) Full Marks : 80 Pass Marks : 24 ( CANDIDATES WITHOUT PRACTICAL/INTERNAL ASSESSMENT ) Full

More information

COURSE OUTLINE. Division of Business and Technology NET 239. WAN Data Communications. Credits: 3 Class Hours: 2 Lab Hours: 2

COURSE OUTLINE. Division of Business and Technology NET 239. WAN Data Communications. Credits: 3 Class Hours: 2 Lab Hours: 2 COURSE OUTLINE Division of Business and Technology NET 239 WAN Data Communications Approved Catalog Description Covers the technology and terminology required to use routing and switching technologies

More information

An Introduction to DOS

An Introduction to DOS An Introduction to DOS Contents 1. Introduction........................................................................................ 1 2. The file system......................................................................................

More information

Lecture 2 DOS & Windows file commands by: lecturer Raya N.Ismail

Lecture 2 DOS & Windows file commands by: lecturer Raya N.Ismail Lecture 2 DOS & Windows file commands by: lecturer Raya N.Ismail What is a File A group of organized data (records) which are assembled for one particular purpose and considered as one unit Stored in permanent

More information

BATCH FILE PROGRAMMING

BATCH FILE PROGRAMMING BATCH FILE PROGRAMMING Chapter 1.- Introduction Chapter 2.- The DOS Command Structure Chapter 3.- The Batch Processor Chapter 4.- Special Batch Structures Chapter 5.- The Multiple Batch Files Chapter 6.-

More information

Washtenaw Community College Comprehensive Report. CST 118 Microsoft Command Line Fundamentals Effective Term: Winter 2017

Washtenaw Community College Comprehensive Report. CST 118 Microsoft Command Line Fundamentals Effective Term: Winter 2017 Washtenaw Community College Comprehensive Report CST 118 Microsoft Command Line Fundamentals Effective Term: Winter 2017 Course Cover Division: Business and Computer Technologies Department: Computer Instruction

More information

TULSIDAS CHELMELLA CHAITANYA REDDY

TULSIDAS CHELMELLA CHAITANYA REDDY IBM PC 5150 By TULSIDAS CHELMELLA CHAITANYA REDDY Spring 2017 1 CONTENTS 1. Introduction 3 2. System Hardware/Software 4 3. System Commands 5 4. Basic Programming 7 5. Installation of Floppy Drives 10

More information

Programming Fundamentals

Programming Fundamentals Programming Fundamentals Computers are really very dumb machines -- they only do what they are told to do. Most computers perform their operations on a very primitive level. The basic operations of a computer

More information

IDE Plus 2.0. IDE Interface. User s manual

IDE Plus 2.0. IDE Interface. User s manual ATARI XL/XE IDE Plus 2.0 IDE Interface User s manual (preliminary) revised 29/10/2011 Copyright (c) 1995-2011 for the original design by Jacek Żuk Copyright (c) 1995-2011 for the software and the manual

More information

Long-term Information Storage Must store large amounts of data Information stored must survive the termination of the process using it Multiple proces

Long-term Information Storage Must store large amounts of data Information stored must survive the termination of the process using it Multiple proces File systems 1 Long-term Information Storage Must store large amounts of data Information stored must survive the termination of the process using it Multiple processes must be able to access the information

More information

Figure 1.0 ULTRA 22C Board Layout JP1 JP5. Table 1.0 Default Jumper Settings

Figure 1.0 ULTRA 22C Board Layout JP1 JP5. Table 1.0 Default Jumper Settings UltraStor ULTRA 22C Quick Setup Memory Expansion Board Connector Figure 1.0 ULTRA 22C Board Layout J4 :::::::::::::::::::::::::::::: : : :::::::::: :::::::::: ::::::::::::::::: 2 P6 1 JP3 1 J2 1 J1 1 J3

More information

What is software? Functional view. Functional view. System requirements of a software. Versions Free version: This is the free version

What is software? Functional view. Functional view. System requirements of a software. Versions Free version: This is the free version What is software? Session 04 Introduction to Software set of instructions that is written by human which runs on computer in order to do a useful task or tasks Types System Software Application Software

More information

Session 04 Introduction to Software

Session 04 Introduction to Software Session 04 Introduction to Software What is software? set of instructions that is written by human which runs on computer in order to do a useful task or tasks Types System Software Application Software

More information

SPECTRUM DOS BY BOB COLIN

SPECTRUM DOS BY BOB COLIN SPECTRUM DOS 1.0 1984 BY BOB COLIN SPECTRUM DOS 1.0 IS SOLD AS-IS WITHOUT WARRENTY EXCEPT TO REPLACE DEFECTIVE MEDIA WITHIN 30 DAYS. ANY UNAUTHORIZED COPYING DISTRIBUTION OR SALE IS PROHIBITED _*_*_* S

More information

PCM-3110/3111 PC/104 PCMCIA module

PCM-3110/3111 PC/104 PCMCIA module PCM-3110/3111 PC/104 PCMCIA module The PCM-3110 is a PCMCIA driver in the PC/104 form factor. The PCM-3111 is a second PCMCIA socket when used in conjunction with the PCM-3110. The PCM-3110 is always designated

More information

Crystal Reports. Overview. Contents. Crystal Reports 6.0 Installation guide

Crystal Reports. Overview. Contents. Crystal Reports 6.0 Installation guide Overview Contents This document outlines general installation issues for Crystal Reports 6.0 followed by specific install related issues that have been tested for a Local, Partial, and Full Network Install.

More information

INDEX. activity, 311 -, 311 +, 311 /S, 311 A, 311 activity, 318 H, 311 activity, 318 R, 311 S, 311 attributes of files, 310

INDEX. activity, 311 -, 311 +, 311 /S, 311 A, 311 activity, 318 H, 311 activity, 318 R, 311 S, 311 attributes of files, 310 @ECHO, 512, 514 %environmentalvariablename%, 581 %SystemRoot%, 506 *, 47 [ ], 195 >>, 445 >, 76, 441

More information

Network+ LAB Name. Lab 1a: MS Win 2000/2003/2008 Server Installation

Network+ LAB Name. Lab 1a: MS Win 2000/2003/2008 Server Installation Network+ LAB Name 1a: MS Win 2000/2003/2008 Server Installation This Win Server lab exercise shows students how to install a Win server host. Students (in pairs) install the Server NOS (from a CD) onto

More information

Digital HiNote VP 500 Series

Digital HiNote VP 500 Series Introduction Digital HiNote VP 500 Series User s Guide Addendum Part Number: ER-PD1WF-AA. A01 This addendum supersedes material covered in the Digital HiNote VP 500 Series User s Guide supplied with your

More information

Hong Kong Polytechnic University Department of Electronic and Information Engineering. Experiment On DOS File system

Hong Kong Polytechnic University Department of Electronic and Information Engineering. Experiment On DOS File system DOSFS/CC/v1 Hong Kong Polytechnic University Department of Electronic and Information Engineering Experiment On DOS File system Objectives : To study how an OS manages its file system in a floppy disk.

More information

CHAPTER 2 BASIC OPERATING SYSTEM CONCEPT MANAGEMENT

CHAPTER 2 BASIC OPERATING SYSTEM CONCEPT MANAGEMENT CHAPTER 2 BASIC OPERATING SYSTEM CONCEPT MANAGEMENT Types of User Interface USER INTERFACE Command Interface Menu Interface Graphical User Interface Voice actuated Interface Web- form Interface User interface

More information

Internal Commands COPY and TYPE

Internal Commands COPY and TYPE Internal Commands COPY and TYPE Ch 5 1 Overview Will review file-naming rules. Ch 5 2 Overview Will learn some internal commands that can be used to manage and manipulate files. Ch 5 3 Overview The value

More information

- Remarks (1) and (2) about the FCB format in version 2 of MSX-DOS have been added.

- Remarks (1) and (2) about the FCB format in version 2 of MSX-DOS have been added. MSX2 TECHNICAL HANDBOOK ----------------------- Edited by: ASCII Systems Division Published by: ASCII Coprporation - JAPAN First edition: March 1987 Text files typed by: Nestor Soriano (Konami Man) - SPAIN

More information

How to install the software of ZNS8022

How to install the software of ZNS8022 How to install the software of ZNS8022 1. Please connect ZNS8022 to your PC after finished assembly. 2. Insert Installation CD to your CD-ROM drive and initiate the auto-run program. The wizard will run

More information

There is a general need for long-term and shared data storage: Files meet these requirements The file manager or file system within the OS

There is a general need for long-term and shared data storage: Files meet these requirements The file manager or file system within the OS Why a file system? Why a file system There is a general need for long-term and shared data storage: need to store large amount of information persistent storage (outlives process and system reboots) concurrent

More information

Conventions in this tutorial

Conventions in this tutorial This document provides an exercise using Digi JumpStart for Windows Embedded CE 6.0. This document shows how to develop, run, and debug a simple application on your target hardware platform. This tutorial

More information

Datalight ROM-DOS. Version 7.1. User s Guide

Datalight ROM-DOS. Version 7.1. User s Guide Datalight ROM-DOS Version 7.1 User s Guide Printed: April 2002 Datalight ROM-DOS User s Guide Copyright 1993-2002 by Datalight, Inc. All Rights Reserved Datalight, Inc. assumes no liability for the use

More information

DOS INT 21h - DOS Function Codes

DOS INT 21h - DOS Function Codes Back To Home DOS INT 21h - DOS Function Codes The follow abridged list of DOS interrupts has been extracted from a large list compiled by Ralf Brown. These are available on any Simtel mirror (e.g. sunsite.anu.edu.au)

More information

Disk Operating System

Disk Operating System In the name of Allah Islamic University of Gaza Faculty of Engineering Computer Engineering Department Introduction To Computer Lab Lab # 1 Disk Operating System El-masry 2013 Objective To be familiar

More information

8 MANAGING SHARED FOLDERS & DATA

8 MANAGING SHARED FOLDERS & DATA MANAGING SHARED FOLDERS & DATA STORAGE.1 Introduction to Windows XP File Structure.1.1 File.1.2 Folder.1.3 Drives.2 Windows XP files and folders Sharing.2.1 Simple File Sharing.2.2 Levels of access to

More information

HP Server Novell NetWare Installation Guide

HP Server Novell NetWare Installation Guide HP Server Novell NetWare Installation Guide Including 6.5 August 25, 2003 Objective The intent of this document is to provide you with key information required for completing the installation of NetWare

More information

1... is not part of the status bar. a. page number b. line c. column d. section *e. drop cap. 2. Convert to base 2

1... is not part of the status bar. a. page number b. line c. column d. section *e. drop cap. 2. Convert to base 2 1... is not part of the status bar a. page number b. line c. column d. section *e. drop cap 2. Convert 10610 to base 2 a. 01010112 b. 1101012 c. 1010102 d. 011010102 *e. 010110102 3. Hierarchical model,

More information

CompTIA A+ OS Technologies. Download Full Version :

CompTIA A+ OS Technologies. Download Full Version : CompTIA 220-302 A+ OS Technologies Download Full Version : https://killexams.com/pass4sure/exam-detail/220-302 QUESTION: 352 You are a technician at Company. You have just installed Windows 98 on a new

More information

User s Manual. Rev July 29,

User s Manual. Rev July 29, User s Manual Rev. 3.3.0.75 July 29, 2009 www.comsol.com.au Contents 1. Introduction...2 1.1 System Requirements... 2 1.2 Multilingual Support... 2 1.3 Disk Partitioning... 2 1.4 Note... 3 2. Icon Descriptions...4

More information

Practical 7. Windows DOS Commands

Practical 7. Windows DOS Commands Practical 7 Windows DOS Commands Diskcomp: This command is clear from its name DISKCOMP i.e. comparison of disks. Compares the contents of a floppy disk in the source drive to the contents of a floppy

More information

LabCON-V Version 4.x Software Installation Instructions

LabCON-V Version 4.x Software Installation Instructions LabCON-V Version 4.x Software Installation Instructions T-EIOW.8035A 1 of 10 Revision: 004 1.0 Description This document is intended to be used as a guide to update the LabCON computer system with the

More information

Interrupt Services. Which Way is Best? Characteristics. Direct in, out. BIOS Average Average DOS Most Least

Interrupt Services. Which Way is Best? Characteristics. Direct in, out. BIOS Average Average DOS Most Least Interrupt Services Application Programs/OS Shell (command.com) int 10h, and others int 21h, and others (IO.SYS) DOS Services (msdos.sys) BIOS (EEPROM) Hardware (x86, Chipset and Peripherals) BIOS - Basic

More information

CAM350. Product Installation Guide V7.6

CAM350. Product Installation Guide V7.6 CAM350 Product Installation Guide V7.6 CAM350 Installation The software and auxiliary files are provided on CD ROM. Each CAM350 bundle and optional modules are part of the same executable code, and is

More information

Windows Me Navigating

Windows Me Navigating LAB PROCEDURE 11 Windows Me Navigating OBJECTIVES 1. Explore the Start menu. 2. Start an application. 3. Multi-task between applications. 4. Moving folders and files around. 5. Use Control Panel settings.

More information

step by step installation by André "Ratte" Pfeiffer 2006

step by step installation by André Ratte Pfeiffer 2006 step by step installation by André "Ratte" Pfeiffer 2006 amiratte@gmx.de BE WARNED! USING THIS GUIDE, YOU WILL LOSE ALL DATAS ON YOUR HDD! First check your BIOS settings, floppy drive and CD-ROM must be

More information

Ms Dos Commands List With Examples Ppt

Ms Dos Commands List With Examples Ppt Ms Dos Commands List With Examples Ppt MS-DOS Prompt The prompt in MS-DOS displays your current directory Example: copy a:/*.txt c:/ will copy all text files to drive c:/ Example 2: copy files in the current

More information

Segmentation with Paging. Review. Segmentation with Page (MULTICS) Segmentation with Page (MULTICS) Segmentation with Page (MULTICS)

Segmentation with Paging. Review. Segmentation with Page (MULTICS) Segmentation with Page (MULTICS) Segmentation with Page (MULTICS) Review Segmentation Segmentation Implementation Advantage of Segmentation Protection Sharing Segmentation with Paging Segmentation with Paging Segmentation with Paging Reason for the segmentation with

More information

Older Operating Systems

Older Operating Systems Older Operating Systems Class Notes # 16 Microsoft Windows December 11, 2003 Windows 3.X Windows 3.X is not really an operating system, but also does not act like a normal application. Windows 3.X provides

More information

A+ OS Technologies Study Guide

A+ OS Technologies Study Guide A+ OS Technologies Study Guide Copyright 2005 by PrepLogic, Inc. Product ID: 001552 Production Date: May 23, 2006 All rights reserved. No part of this document shall be stored in a retrieval system or

More information

User Guide. Version Number 1.1

User Guide. Version Number 1.1 User Guide Version Number 1.1 Copyright 2002, LSOFT TECHNOLOGIES INC. All rights reserved. No part of this documentation may be reproduced in any form or by any means or used to make any derivative work

More information

ASTi DACS Zip Drive Installation & Cold Start Procedure Document: DOC-01-DACS-ZD-1

ASTi DACS Zip Drive Installation & Cold Start Procedure Document: DOC-01-DACS-ZD-1 ASTi DACS Zip Drive Installation & Cold Start Procedure Advanced Simulation Technology inc. 441-A Carlisle Drive, Herndon, Virginia, 20170 USA Revision 0 (March 2001) ASTi Copyright ASTi 2001. DACS Zip

More information

CS609 Final Term Solved MCQs with References Without Repetitions 14/02/2013

CS609 Final Term Solved MCQs with References Without Repetitions 14/02/2013 1 CS609 Final Term Solved MCQs with References Without Repetitions 14/02/2013 In BPB, root directory is saved in. (BIOS parameter block) Cluster#0 Cluster#1 (Ref) Cluster#2 Cluster#3 In NTFS, total sizes

More information

Loading 4A DOS or COMMAND DOS into a RAM device or Super Cart is quite easy.

Loading 4A DOS or COMMAND DOS into a RAM device or Super Cart is quite easy. This program is assumed to be ABANDONWARE This manual re-created, edited and enhanced in July of 2013 LOADING INSTRUCTIONS Loading 4A DOS or COMMAND DOS into a RAM device or Super Cart is quite easy. Choose

More information

AMD RAID Installation Guide

AMD RAID Installation Guide AMD RAID Installation Guide 1. AMD BIOS RAID Installation Guide... 2 1.1 Introduction to RAID... 2 1.2 RAID Configurations Precautions... 4 1.3 Legacy RAID ROM Configuration (for AMD X370, B350, and A320

More information

NEC Versa 500D/550D Windows 98 Upgrade Information

NEC Versa 500D/550D Windows 98 Upgrade Information NEC Versa 500D/550D Windows 98 Upgrade Information Follow the instructions provided in this document to upgrade your NEC Versa 500D/550D system to Microsoft Windows 98. Please read these notes in their

More information

HELP Use the help command to list all the following supported commands:

HELP Use the help command to list all the following supported commands: Available commands within Windows Recovery Console The following commands are available within the Windows Recovery Console. The commands are not case-sensitive. HELP Use the help command to list all the

More information

Guide to SATA Hard Disks Installation and RAID Configuration

Guide to SATA Hard Disks Installation and RAID Configuration Guide to SATA Hard Disks Installation and RAID Configuration 1. Guide to SATA Hard Disks Installation...2 1.1 Serial ATA (SATA) Hard Disks Installation...2 2. Guide to RAID Configurations...3 2.1 Introduction

More information

SRI LANKA INSTITUTE OF ADVANCED TECHNOLOGICAL EDUCATION

SRI LANKA INSTITUTE OF ADVANCED TECHNOLOGICAL EDUCATION [All Rights Reserved] SLIATE SLIATE SRI LANKA INSTITUTE OF ADVANCED TECHNOLOGICAL EDUCATION (Established in the Ministry of Higher Education, vide in Act No. 29 of 1995) Higher National Diploma in Accountancy

More information

engineering mannesmann Rexroth MTC200/ISP200 Installation 18VRS Commissioning Manual SYSTEM200 Rexroth Indramat DOK-CONTRL-INS*BOF*V18-AW01-EN-P

engineering mannesmann Rexroth MTC200/ISP200 Installation 18VRS Commissioning Manual SYSTEM200 Rexroth Indramat DOK-CONTRL-INS*BOF*V18-AW01-EN-P engineering mannesmann Rexroth MTC200/ISP200 Installation 18VRS Commissioning Manual SYSTEM200 Rexroth Indramat About this Documentation Installation 18VRS Title Type of document Installation 18VRS Commissioning

More information

AUDIO Creative Labs ViBRA 16C Series USER'S MANUAL. Drivers Installation

AUDIO Creative Labs ViBRA 16C Series USER'S MANUAL. Drivers Installation R AUDIO Creative Labs ViBRA 16C Series USER'S MANUAL Drivers Installation User's Notice No part of this product, including the product and software may be reproduced, transmitted, transcribed, stored in

More information

Magic Card User Manual

Magic Card User Manual Table of Contents Magic Card User Manual Magic Card Introduction 2 What is Magic card? 2 Magic Card Features 2 Working Modes 3 Magic card editions 3 Installation 4 System Requirements 4 Pre-installation

More information

HDD Setting OBJECTIVES RESOURCES DISCUSSION LAB PROCEDURE 4

HDD Setting OBJECTIVES RESOURCES DISCUSSION LAB PROCEDURE 4 LAB PROCEDURE 4 HDD Setting OBJECTIVES 1. Auto-detect IDE drives in CMOS. 2. Use CMOS IDE modes. 3. Learn about CD-ROM setup considerations. Hardware RESOURCES 1. Marcraft 8000 Trainer 2. Windows Millennium

More information

INSTALLING THE PS3 XBOX READY SOFTWARE:

INSTALLING THE PS3 XBOX READY SOFTWARE: INSTALLING THE PS3 XBOX READY SOFTWARE: 1. Insert the Installation CD to CD-ROM drive and execute Ready_Setup.exe NOTE: If it is the first time for the target USB disk using under this software, the software

More information

File System: Interface and Implmentation

File System: Interface and Implmentation File System: Interface and Implmentation Two Parts Filesystem Interface Interface the user sees Organization of the files as seen by the user Operations defined on files Properties that can be read/modified

More information

Week 2. Exp 2 (a) (b): Introduction to LINUX OS, Installation of LINUX OS, Basic DOS commands

Week 2. Exp 2 (a) (b): Introduction to LINUX OS, Installation of LINUX OS, Basic DOS commands Week 2 Exp 2 (a) (b): Introduction to LINUX OS, Installation of LINUX OS, Basic DOS commands mkdir, cd, cls, del, copy, attrib, date, path, type, format, exit. Basic commands in LINUX - cat, ls, pwd,,

More information

4. Low level language with some high level features 9) What will happen if in a C program you assign a value to an array element whose subscript

4. Low level language with some high level features 9) What will happen if in a C program you assign a value to an array element whose subscript SET 9 1) Fastest component of a computer system is 1. Flash ROM 2. Cache memory 3. DDR RAM 4. CPU 2) Which tags are placed on animals, to track all of the animal speed 1. POS 2. RFID 3. PPS 4. GPS 3) user

More information

Reborn Card NET. User s Manual. Ver /01/20

Reborn Card NET. User s Manual. Ver /01/20 Reborn Card NET User s Manual Ver 1.1 2015/01/20 Table of Contents Notice Before Installation:... 2 System Requirements... 2 1. First Installation... 3 2. Hardware Setup... 3 3. Express Installation...

More information

EPSON. VGA Utilities Guide. This manual is printed on recycled paper and is l00% recyclable.

EPSON. VGA Utilities Guide. This manual is printed on recycled paper and is l00% recyclable. EPSON VGA Utilities Guide This manual is printed on recycled paper and is l00% recyclable. IMPORTANT NOTICE DISCLAIMER OF WARRANTY Epson America makes no representations or warranties, either express or

More information

Exam : Title. : A+ OS Technologies

Exam : Title. : A+ OS Technologies Exam : 220-302 Title : A+ OS Technologies QUESTION 1 Under Windows 2000 you consistently receive out of memory messages when running multiple applications. To avoid having to upgrade RAM immediately you?

More information

Magic Card NET. User s Manual

Magic Card NET. User s Manual Magic Card NET User s Manual Table of Contents Notice Before Installation:... 2 System Requirements... 3 1. First Installation... 4 2. Hardware Setup... 4 3. Express Installation... 6 4. How to setup FDISK...

More information

Digital Palette/ProPalette Mini Burn-In System

Digital Palette/ProPalette Mini Burn-In System Repair Manual Digital Palette/ProPalette Mini Burn-In System April 1998 Americas Business Center Technical Services 201 Burlington Road Bedford MA 01730 TEL: 1.781.386.5309 FAX: 1.781.386.5988 Table of

More information

Introduction to Linux

Introduction to Linux Introduction to Linux The command-line interface A command-line interface (CLI) is a type of interface, that is, a way to interact with a computer. Window systems, punched cards or a bunch of dials, buttons

More information

The QuickCalc BASIC User Interface

The QuickCalc BASIC User Interface The QuickCalc BASIC User Interface Running programs in the Windows Graphic User Interface (GUI) mode. The GUI mode is far superior to running in the CONSOLE mode. The most-used functions are on buttons,

More information

DOS ELEMENTS. Abstract:

DOS ELEMENTS. Abstract: DOS ELEMENTS Smita Srivastava 1, Shweta Kurda 2, Priya Dubey 3 Information Technology Dronacharya College of Engineering, Gurgaon Abstract: This paper evaluates several hardware platforms and operating

More information

Software Upgrade. Selecting a Cisco IOS Image. Upgrading the Cisco IOS image

Software Upgrade. Selecting a Cisco IOS Image. Upgrading the Cisco IOS image This chapter explains how to upgrade the Cisco IOS image installed on the router. Selecting a Cisco IOS Image, on page 1 Upgrading the Cisco IOS image, on page 1 Auto Upgrading the MCU, on page 4 Manually

More information

COMPUTER SCIENCE SECTION A

COMPUTER SCIENCE SECTION A Total No. of Printed Pages 16 X/13/CSc 0 1 3 COMPUTER SCIENCE ( CANDIDATES WITH PRACTICAL/INTERNAL ASSESSMENT ) Full Marks : 80 Pass Marks : 4 ( CANDIDATES WITHOUT PRACTICAL/INTERNAL ASSESSMENT ) Full

More information

Mac OS 8 Installation Instructions for Sonnet Presto and Presto Plus Processor Upgrade Cards

Mac OS 8 Installation Instructions for Sonnet Presto and Presto Plus Processor Upgrade Cards Mac OS 8 Installation Instructions for Sonnet Presto and Presto Plus Processor Upgrade Cards What You Need: Sonnet Presto or Presto Plus processor upgrade card. Sonnet Presto 8 Enabler Boot diskette. Macintosh

More information

File System Interface. ICS332 Operating Systems

File System Interface. ICS332 Operating Systems File System Interface ICS332 Operating Systems Files and Directories Features A file system implements the file abstraction for secondary storage It also implements the directory abstraction to organize

More information

Instructions for installing software to the hard drive; Instructions for running the software under Windows 95 and NT;

Instructions for installing software to the hard drive; Instructions for running the software under Windows 95 and NT; This addendum replaces Chapter 2 in your Interpex Soft- ware Manual. It is generic in nature, since it applies to all Interpex software. In it you will find: Instructions for installing software to the

More information

Funcom Multiplayer Online Games - FTP Site Statistics. Top 20 Directories Sorted by Disk Space

Funcom Multiplayer Online Games - FTP Site Statistics. Top 20 Directories Sorted by Disk Space Property Value FTP Server ftp.funcom.com Description Funcom Multiplayer Online Games Country United States Scan Date 13/Jul/2014 Total Dirs 186 Total Files 1,556 Total Data 67.25 GB Top 20 Directories

More information

Programming in Module. Near Call

Programming in Module. Near Call Programming in Module Main: sub1: call sub1 sub ax,ax sub1 sub1 proc near sub ax,ax endp sub1 sub1 proc Far sub ax,ax endp Near Call sub1 sub1 Main: call sub1 sub1: sub ax,ax proc near sub ax,ax endp SP

More information

For correct operation of the AutoLogon feature when using the Georgia SoftWorks SSH2/Telnet Client two steps must occur.

For correct operation of the AutoLogon feature when using the Georgia SoftWorks SSH2/Telnet Client two steps must occur. Automatic Logon Autologon This feature allows you to pre-configure a list of IP addresses that will be able to connect and log on without any User ID, Password or Domain prompting when using the Georgia

More information

Boot Sequence OBJECTIVES RESOURCES DISCUSSION PROCEDURE LAB PROCEDURE 2

Boot Sequence OBJECTIVES RESOURCES DISCUSSION PROCEDURE LAB PROCEDURE 2 LAB PROCEDURE 2 Boot Sequence OBJECTIVES 1. Show the boot sequence of Marcraft 8000 Trainer. 2. See the extended memory count. 3. Change settings in CMOS. 4. See the LED sequence. 5. Detect hard disk drives.

More information

Chapter 5 Input/Output

Chapter 5 Input/Output Chapter 5 Input/Output 5.1 Principles of I/O hardware 5.2 Principles of I/O software 5.3 I/O software layers 5.4 Disks 5.5 Clocks 5.6 Character-oriented terminals 5.7 Graphical user interfaces 5.8 Network

More information

ACM SIGSOFT SOFTWARE ENGINEERING NOTES vol 11 no 2 Apt 1988 Page 22

ACM SIGSOFT SOFTWARE ENGINEERING NOTES vol 11 no 2 Apt 1988 Page 22 ACM SIGSOFT SOFTWARE ENGINEERING NOTES vol 11 no 2 Apt 1988 Page 22 Applying Direct Manipulation Concepts: Direct Manipulation Disk Operating System (DMDOS) Osamu Iseki and Ben Shneiderman Human-Computer

More information

Typical File Extensions File Structure

Typical File Extensions File Structure CS 355 Operating Systems File Systems File Systems A file is a collection of data records grouped together for purpose of access control and modification A file system is software responsible for creating,

More information

Chapter Two. Lesson A. Objectives. Exploring the UNIX File System and File Security. Understanding Files and Directories

Chapter Two. Lesson A. Objectives. Exploring the UNIX File System and File Security. Understanding Files and Directories Chapter Two Exploring the UNIX File System and File Security Lesson A Understanding Files and Directories 2 Objectives Discuss and explain the UNIX file system Define a UNIX file system partition Use the

More information

Version 11. NOVASTOR CORPORATION NovaBACKUP

Version 11. NOVASTOR CORPORATION NovaBACKUP NOVASTOR CORPORATION NovaBACKUP Version 11 2009 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject to change without notice.

More information

VISUAL QUICKPRO GUIDE

VISUAL QUICKPRO GUIDE VISUAL QUICKPRO GUIDE Red Hat Linux 6 Harold Davis Peachpit Press Visual QuickPro Guide Red Hat Linux 6 Harold Davis Peachpit Press 1249 Eighth Street Berkeley, CA 94710 510/524-2178 800/283-9444 510/524-2221

More information

PCI Card. PCI IDE 100 RAID Card With 3 IEEE Installation Manual PCI1394RAID

PCI Card. PCI IDE 100 RAID Card With 3 IEEE Installation Manual PCI1394RAID PCI Card PCI IDE 100 RAID Card With 3 IEEE-1394 Installation Manual PCI1394RAID 1 General Description The StarTech.com PCI IDE RAID card with 3 IEEE-1394 provides an ideal interconnection for multimedia

More information

An Overview of C/C++ Programming Language and Programming Environment

An Overview of C/C++ Programming Language and Programming Environment 1 An Overview of C/C++ Programming Language and Programming Environment 1-1 An Overview of Programming Languages 1-2 1-2 Introduction to Operating Systems 1-5 1-3 MS-DOS and Network Operating System Commands

More information

Chapter 6 Using a Redundant Management Module

Chapter 6 Using a Redundant Management Module Chapter 6 Using a Redundant Management Module You can install a redundant management module in slot M1 (upper) or M2 (lower) of the ProCurve 9408sl. (By default, the system considers the module installed

More information

A1-R3: IT TOOLS & APPLICATIONS

A1-R3: IT TOOLS & APPLICATIONS A1-R3: IT TOOLS & APPLICATIONS NOTE: 1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and PART TWO contains FIVE questions. 2. PART ONE is to be answered in the TEAR-OFF ANSWER

More information

Super USB. User Manual. 2007, March

Super USB. User Manual. 2007, March Super USB User Manual 2007, March Windows98 Driver Install/Uninstall Driver Install: 1. Execute Win 98 UFD driver, then restart PC. 2. Plug Super USB into an available USB port. A new Removable Disk drive

More information

CTWP005: Write Abort Handling for Cactus Technologies Industrial-Grade Flash-Storage Products

CTWP005: Write Abort Handling for Cactus Technologies Industrial-Grade Flash-Storage Products CTWP005: Write Abort Handling for Cactus Technologies Industrial-Grade Flash-Storage Products Covered Products: -203,-303,-503 CF cards, -900S SATA products, -806,-808 SD cards, -300 USB products 1 Introduction

More information