True/False
- The compatibility of your computer dictates the type of software you can use and the
peripheral devices that will work with your computer.
- T
- F
- Command-line interfaces require the user to know the correct syntax of all commands.
- T
- F
- When you purchase copyrighted software you become the owner of the copyright.
- T
- F
- Experienced users avoid formatting disks because of the danger of formatting the wrong
disk and losing important information.
- T
- F
- Running application software directly from the multiple distribution disks each time you
want to use that application is the best practice because it saves storage space on your
hard drive.
- T
- F
- Files containing instructions that the computer carries out are categorized as programs
or executable files.
- T
- F
- The amount of data you can store and the speed of data access depends on your storage
device and the storage medium.
- T
- F
- Pits stamped into a CD-ROM represent bytes of data.
- T
- F
- When you save a modified version of a file using the same name, the old version of the
file is erased and only the new version is saved on the disk.
- T
- F
The data bus contains address lines and data lines.
- T
- F
Shared programs require less disk space because only one
copy of the program is stored on the file server, instead of one copy on each workstation.
- T
- F
Sharing a program on a network means you can legally give
copies of the program disk to other computer users.
- T
- F
When two users edit a file on the network at the same time,
most network software will save two copies of the edited file.
- T
- F
It's easy to see that a computer system for sale at $1095 is
a better deal that a computer system for sale at $1895.
- T
- F
If you store a document on your local hard disk, other uers
can generally access that document from any workstation on the network.
- T
- F
Multiple Choice
- What device has a keyboard and screen used for input and
output but not for processing.
- microcomputer
- terminal
- minicomputer
- mainframe computer
A(n) ______________ is a set of instructions that tells a
computer how to perform a particular task.
- computer program
- output device
- control unit
- input device
Hardware refers to the:
- numbers and/or graphics which may describe people, events, things, and ideas
- program instructions
- electric, electronic, and mechanical devices used for processing data
- data
A ______________ is a peripheral device that is used to
transfer data from one computer to another over the telephone lines.
- scanner
- modem
- plotter
- telephone
Which one of the following statements is FALSE about
peripheral devices?
- Peripheral devices are usually built into the main board of the computer.
- Peripheral devices usually require specially designed software to instruct the computer
how to use them.
- Peripheral devices allow you to exand and modify your basic computer system.
- Some common examples of peripheral devices are scanners, sound cards, projectors, and
modems.
How many bytes are in a kilobyte?
- 100
- 1024
- 1 million
- 1 billion
A legal form of protection that grants certain exclusive
rights to the author or owner of a computer program is referred to as a:
- copy protection
- copyright
- shrink wrapping
- public domain
Which one of the following is NOT an operating system?
- OS/2
- WordPerfect for Windows word processor
- UNIX
- DOS
"John Fitz, 01345, Manager, 3/4/97" is:
- a data file
- information
- a batch file
- data
Instructions that tell a computer how to perform a specific
task can be stored in:
- the reference manual that accompanies the computer
- an executable file
- the keyboard
- a text file
Which one of the following is a valid DOS filename?
- COST/BEN.XLS
- TAXFORM.040
- ANNUALRPT.DOC
- SAM'S Let.DOC
When you purchase software and you open the sealed plastic
covering the disks of CD-ROM, you are automatically bound by the software license
agreement. This type of agreement is called a:
- copyright
- shrink-wrap license
- concurrent-use license
- site license
How many bytes are used to represent one character?
- 1
- 2
- 4
- 8
Data stored in RAM:
- is being processed by the computer
- is waiting to be processed
- is there for long-term storage
- contains the programs that start up the computer
The details of the boot process might vary slightly from one
computer to another, depending upon the instructions contained in:
- RAM
- ROM
- BIOS
- CMOS
Short Answer, Programming, etc.
- For this program, show the output the computer would print.
A = 3.2 - 2.0 ^ 3.0 - 2.0 * (3.0 + 4.8) + 12.0 / 2.0 ^ 2.0
PRINT A
- Write a BASIC statement for this arithmetic expression.
2x2 + 7x + 1
- What does it mean to "run" a program in QBASIC?
- A "syntax error" is:
- the computer can't write to the floppy disk
- the BASIC interpreter does not understand part of the code
- there is not enough memory to run your program
- A "delimiter" in a PRINT statment is
___________________________
- How would you change the following program so that it runs
correctly? (There are 3 errors.)
CSL
REM NFL Game
LET Cowboys = 21
LET Niners = 0
PRINT The score of today's football game is:"
PRINT "Cowboys", Cowboys
PRINT "Niners, Niners
- What output would be produed by running the following
program?
CLS
REM I love the NBA!
PRINT "Spurs", "Rockets";
PRINT "Mavericks"
PRINT "Bulls"; "Lakers"
- Write a program that will: STORE each character's name and
age in separate variables; and use the variables to PRINT the names and ages of all the
characters.
Wilma is 36, Pebbles is 3 and Fred is 38 years old.
LET CANADATEMP.C="17"
LET CANADATEMP.F=((9/5) * CANADATEMP.C) + "32"
What errors would the computer notice at execution and how would you correct them?
- Write a short (but complete) QBASIC program which asks the
user to enter a number to be divided (the dividend) and a number to divide the divide by
(the divisor). After you have the two numbers, print out (to the printer) the dividend and
the divisor and the result of the division (the quotient). Use the appropriate labels both
in prompting and printing.
- What is the output of the following program?
REM Program to print the average of 3 numbers
CLS
Test1 = 80
Test2 = 90
Test3 = 100
Avg = (Test1 + Test2 + Test3) / 3
PRINT Avg
- How does one use the author search in Eureka (be specific)?
- What shape is used to represent each of the following in a
flow chart?
- START & END
- PROCESSING steps (assignment statements)
- INPUT & OUTPUT steps
- Draw a flow chart based on the following pseudocode:
Begins the program
Input 1st test score
Input 2nd test score
Input 3rd test score
Calculate the average of three test scores
Print the average
End the program
- Code the program from the pseudocode and flowchart in the
above problem.
- Given this portion of a program:
INPUT "PLEASE ENTER A NUMBER", NUM
IF NUM >= 0 THEN
PRINT "THIS IS NOT A NEGATIVE NUMBER"
IF NUM = 0 THEN
PRINT "THIS NUMBER IS ZERO"
END IF
END IF
IF NUM <0 THEN PRINT "THIS IS A NEGATIVE NUMBER"
END IF
- 23
- 0
- What is shareware?
|