wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Software Design and Development Quick Quiz 2

Total questions: 10

Worksheet time: 20mins

Name
Class
Date
1.

1. Claiming source code written by somebody else is your own work is an example of which of the following?

a)

Copyright infringement

b)

Reverse engineering

c)

Plagiarism

d)

Software piracy

2.

What is the value of a and b after the following statements execute?

a=10

b=a/5

a=a*b

b=a/b

a=a/b

a)

a=10, b=10

b)

a=20, b=10

c)

a=10, b=2

d)

a=2, b=10

3.

Which system modelling tool best describes the hierarchy of subroutines and the sequence in which they are executed?

a)

Dataflow diagram

b)

System flowcharts

c)

IPO diagrams

d)

Structure charts

4.

An existing software application is purchased and customised to suit the specific needs of an organisation. Which term best describes the resulting software application?

a)

CASE tool

b)

Open source

c)

COTS package

d)

RAD application

5.

During execution of machine code instructions where is the address of the next instruction held?

a)

Accumulator

b)

Control unit

c)

Program counter

d)

RAM

6.

A recently written compiled application is running until the message "arithmetic overflow" is displayed and execution stops. Which of the following is most likely?

a)

The program has encountered a syntax error which incorrectly caused a large computation to fail.

b)

A logic error has caused a numeric variable to exceed its range and hence a run time error has been generated which in turn halts execution.

c)

The system has likely run out of RAM during a large or complex calculation. This has caused a run time error which means execution cannot continue.

d)

The user has likely entered a number outside the bounds of the variable's data type. As the variable is unable to store this value the system has generated a runtime error.

7.

Which sorting strategy compares adjoining items and swaps them if they are out of order?

a)

Bubble

b)

Insertion

c)

Selection

d)

All sorts

8.

A computerised testing application is being developed. For one type of question the user must select all the correct answers from a total of 5 possible answers.

Which screen element would be best to use for this type of question?

a)

Checkboxes

b)

Radio Buttons

c)

Command buttions

d)

List box

9.

A program halts whilst executing with a syntax error message. What type of translator is being used?

a)

Compiler

b)

Assembler

c)

Interpreter

d)

Virtual machine

10.

What is shown on context diagrams?

a)

The movement of data between processes.

b)

The movement of data into and information out of a system.

c)

The order in which processes occur in a system.

d)

The nature of data structures used by processes within the system.