Lab Assessment

profileNobody
hit1642018.docx

Section A

Short Answer Questions

Total Number of Marks for this Section 45

Answer any Nine (9) out of Eleven (11) questions.

This section should be answered in the space provided on this exam booklet only.

Marks for each question are indicated. Suggested Time allocation for Section A: 180 mins.

Question 1 (5 Marks)

Match the hardware components on the left to their functions on the right.

___ 1. Power supply

A.

Without it, your CPU will quickly burn itself out.

B.

Primary method of non-volatile storage in all desktop

___ 2. Motherboard

computer systems.

C.

Some performance users may consider using this instead of

___3. CPU/Processor

a hard drive for non-volatile storage

D.

Used to connect to the outside world (like the web)

___4. Heatsink

E.

Hardware necessary to communicate wirelessly with other

devices in a network

___5. Memory/RAM

F.

It is used to communicate with a wide variety of peripheral

devices

___6. Video card

G.

Used to connect computer to monitor device

H.

Backbone of the system. Determined the type of

___7. Case

components that can be used with the system and the

number of internal peripherals the system can support.

___8. Network card

I.

The CPU needs it to store the code to tell it how to properly

process data. It is lost when power goes out.

___9. Sound card

J.

Holds the whole system together. All the other parts of the

computer reside within it.

___10. Hard drive

K.

Converts power coming out of the wall into a form that the

PC can use.

L.

The brain of the computer system. This will be the primary

factor in how fast the system is.

M. Optical drives are the component used to install most of

the software on a computer system.

N.

Hardware necessary to communicate wirelessly with other

devices in a network

O.

Most motherboards build this in. Used for input and output

of audio

Semester 1, 2018

FINAL EXAMINATION

HIT164 – Computing Fundamentals

Page 3 of 8

THIS EXAMINATION PAPER AND SUPPLIED MATERIALS ARE NOT PERMITTED TO BE REMOVED FROM ANY EXAMINATION VENUE IN ANY CIRCUMSTANCE. THIS EXAMINATION IS PRINTED DOUBLE-SIDED.

Question 2 (5 Marks)

Complete this table using Base-2, Base-10 and Base-16

Base-10

Base-2

Base-16

51

66

FF

10011001

204

Question 3 (5 Marks)

List 3 tasks you can do to improve the performance of your computer and explain briefly the function of each task.

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

Question 4 (5 Marks)

List the four types of general-purpose applications, describe what each application is used for, and give an example of each.

_________________________________________________________________________________

Semester 1, 2018

FINAL EXAMINATION

HIT164 – Computing Fundamentals

Page 4 of 8

THIS EXAMINATION PAPER AND SUPPLIED MATERIALS ARE NOT PERMITTED TO BE REMOVED FROM ANY EXAMINATION VENUE IN ANY CIRCUMSTANCE. THIS EXAMINATION IS PRINTED DOUBLE-SIDED.

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

Question 5 (5 Marks)

Name and describe the four most common types of computer-based information systems.

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

Question 6 (5 Marks)

There is a lot of information of the Web. List and discuss the four elements to consider when evaluating the content and accuracy of information on the web.

_________________________________________________________________________________

Semester 1, 2018

FINAL EXAMINATION

HIT164 – Computing Fundamentals

Page 5 of 8

THIS EXAMINATION PAPER AND SUPPLIED MATERIALS ARE NOT PERMITTED TO BE REMOVED FROM ANY EXAMINATION VENUE IN ANY CIRCUMSTANCE. THIS EXAMINATION IS PRINTED DOUBLE-SIDED.

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

Question 7 (5 Marks)

Complete the output for the following Truth Table representing a XOR gate.

Input A

Input B

Output

1

1

1

0

0

1

0

0

Question 8 (5 Marks)

Explain how intranets and extranets are useful in supporting communication in an organization

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

Semester 1, 2018

FINAL EXAMINATION

HIT164 – Computing Fundamentals

Page 6 of 8

THIS EXAMINATION PAPER AND SUPPLIED MATERIALS ARE NOT PERMITTED TO BE REMOVED FROM ANY EXAMINATION VENUE IN ANY CIRCUMSTANCE. THIS EXAMINATION IS PRINTED DOUBLE-SIDED.

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

Question 9 (5 Marks)

Describe the three most common types of malware, including viruses, worms, and Trojan horses.

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

Question 10 (5 Marks)

Explain cookies. Discuss your opinion whether it is ethical to use cookies for personalization and targeted marketing purposes?

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

Semester 1, 2018

FINAL EXAMINATION

HIT164 – Computing Fundamentals

Page 7 of 8

THIS EXAMINATION PAPER AND SUPPLIED MATERIALS ARE NOT PERMITTED TO BE REMOVED FROM ANY EXAMINATION VENUE IN ANY CIRCUMSTANCE. THIS EXAMINATION IS PRINTED DOUBLE-SIDED.

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

_________________________________________________________________________________

Question 11 (5 Marks)

Draw a picture of the results of this HTML and CSS code

<html>

<head>

<style>

table, th, td {

border: 1px solid black;

border-collapse: collapse;

}

th, td {

padding: 5px;

text-align: left;

}

</style>

</head>

<body>

<h2>Contact List</h2>

<p>Provide a table for contacts.</p>

<table style="width:100%">

<tr>

<th>Name:</th>

<td>Bill Gates</td>

</tr>

<tr>

<th rowspan="2">Telephone:</th>

<td>55577854</td>

</tr>

<tr>

<td>55577855</td>

</tr>

</table>

</body>

</html>