Module 2 Basic Competencies
Module 2 Basic Competencies
.NET TECHNOLOGY
MODULE 2: BASIC COMPETENCIES
COMPUTER PROGRAMMING
1. Read texts carefully so that you can easily comprehend what you are
reading.
2. Answer questions with all honesty. Success does not come from copying
from others. It is made possible by trying hard on your own so that you
can learn even from your mistakes.
3. Review your answers. It is safe to go back and think about what you have
written. This can help you lessen if not avoid errors.
4. Follow instructions given and ask if there is something that you did not
understand.
5. Do the tasks given and do not delay in submitting requirements. This can
help you avoid having a pile of unfinished activities.
6. Feel free to communicate with your teacher. There is no harm in asking
for clarification so that you will not be lost in the discussion.
7. Remember to review every time you are done answering the activities.
8. Have fun as you learn. This course is very important. When you’re having
fun, you can easily learn the lessons.
Icons of this Module
What I Need to This part contains learning objectives that
Know are set for you to learn as you go along
the module.
1
What is It These are discussions of the activities
as a way to deepen your discovery
and understanding of the concept.
Introduction to Mensuration
What I Know
2. 1011
- 1000
2
3. 1111
x 0111
4. 1010102 ÷ 102 =
What’s In
In the field of computing though, such act will not require us to use specific
measuring tools. What we have instead are virtual measurements to refer to different
measurable specifications of various computer components and converting between
the different number systems used in computing. Knowing these measures and
number systems will help us better understand and appreciate how a computer does
its work.
What’s New
1. A 2. W 3. T 4. Z
Key Terminologies
Bit – short for binary digit; refers to the smallest unit of information the
computer support
Binary - considered as the computer machine language
Decimal – the most common number system that has a base or radix of 10
Octal - a result of simplifying the representation of characters in
programming
Hexadecimal – has a base or radix of 16
3
What Is It
NUMBER SYSTEMS
Number systems are also called numeral system. Number system is any
notation that represents numerals or numbers. Some are as follows:
Decimal
This is the most common number system we have ever known and the basis
of how we count, as we know it. Decimal number system has a base or radix of 10.
This means that the numbers are notated with one digit starting a sequence from 1
to 9, ending the sequence with a 0 prefixed with another digit, and start another
sequence from 1 to 9. The symbols used are the numbers 0-9.
Example:
1 11 21 91 991 9991
2 12 22 92 992 9992
3 13 23 93 993 9993
4 14 24 94 994 9994
5 15 25 … 95 … 995 … 9995
6 16 26 96 996 9996
7 17 27 97 997 9997
8 18 28 98 998 9998
9 19 29 99 999 9999
10 20 30 100 1000 10000
Binary
This is considered as the computer machine language. It means that on the
machine level, this is the only recognizable data to the computer. The binary simulates
the toggle switches that a computer uses to perform its calculations. It has a base or
radix of 2. In terms of counting, this means that a digit is added in sequence for every
two counts using only the symbols 0 and 1.
Example:
Binary Decimal
Binary Decimal Binary Decimal
1100 12
0 0 110 6
1101 13
1 1 111 7
1110 14
10 2 1000 8
1111 15
11 3 1001 9
10000 16
100 4 1010 10
101 5 1011 11
Octal
The octal number system is a result of simplifying the representation of
characters in programming in a computer. As computing became more and more
advanced, as well as convenient for users, programmers needed to find a way to
simplify the way data are represented so that it is still understood by the computer. Of
course, they cannot deviate from the binary system since it is the very principle in
which the computer performs its tasks. So they thought of grouping the binary bits
into groups of three (3) called octets. Thus 23 is equal to 8, deriving the name octal.
This number system uses, as the name suggests, 8 as its radix or base represented by
the symbols 0-7.
4
Example
Octal Decimal
Octal Decimal Octal Decimal
14 12
0 0 6 6
15 13
1 1 7 7
16 14
2 2 10 8
17 15
3 3 11 9
20 16
4 4 12 10
5 5 13 11
Hexadecimal
This number system is a spin off from the octal system. Due to significant
developments in the way computers are being used, the instructions and character
representations fed into it have grown as well. Again, not having the option to deviate
from its binary root, the hexadecimal system was introduced. The hexadecimal system
has a base or radix of 16. It is represented by 0-9 and A-F.
Example
Dec 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Hex 0 1 2 3 4 5 6 7 8 9 A B C D E F
Dec 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Hex 10 11 12 13 14 15 16 17 18 19 1A 1B 1C 1D 1E 1F
ASCII TABLE
As the computer evolved to an all-around computing device, the need to input
and represent different characters must be made. Thus, a system has to be introduced
to translate characters to binary digits. The idea was to assign a specific decimal
number for each character (numbers, letters, punctuations, and other special
characters) converting it into string of bits. This string of bits is now what we call a
byte, consisting of 8 binary digits that could represents a total of 255 characters.
These 255 characters are now mapped in an American Standard Code for Information
Interchange (ASCII) Code Table. The table below shows a portion of the ASCII Table
representing each capital letters of the alphabet. Take note that there is a separate set
of code for lower case letters. A full set of the ASCII table can be easily found in the
internet.
5
Character ASCII Binary Character ASCII Binary
A 97 1100001 n 110 1101110
B 98 1100010 o 111 1101111
C 99 1100011 p 112 1110000
D 100 1100100 q 113 1110001
E 101 1100101 r 114 1110010
F 102 1100110 s 115 1110011
G 103 1100111 t 116 1110100
H 104 1101000 u 117 1110101
I 105 1101001 v 118 1110110
J 106 1101010 w 119 1110111
K 107 1101011 x 120 1111000
L 108 1101100 y 121 1111001
M 109 1101101 z 122 1111010
BINARY ARITHMETIC
Just like any number system, binary numbers can be operated mathematically
to be able to perform the computer’s more essential function – to compute or calculate.
Take a look at how the four basic mathematical operations are done using the binary
number system.
Addition
The basic rule:
0+0=0
0+1=1
1+0=1
1 + 1 = 0 (carry 1 to the next significant digit)
Example
1010
+ 0101
1111
To check:
To check:
1111 = (1 x 23) + (1 x 22) + (1 x 21) + (1 x 20) = (8 + 4 + 2 + 1) = 15(Decimal)
- 1001 = (1 x 23) + (0 x 22) + (0 x 21) + (1 x 20) = (8 + 0 + 0 + 1)= - 9(Decimal)
0110 = (0 x 23) + (1 x 22) + (1 x 21) + (0 x 20) = (0 + 4 + 2 + 0)= 6(Decimal)
To check:
1001 = (1 x 23) + (0 x 22) + (0 x 21) + (1 x 20) = (8 + 0 + 0 + 1) = 9 (Decimal)
- 0100 = (0 x 23) + (1 x 22) + (0 x 21) + (0 x 20) = (0 + 4 + 0 + 0)= - 4(Decimal)
0101 = (0 x 23) + (1 x 22) + (0 x 21) + (1 x 20) = (0 + 4 + 0 + 1)= 5(Decimal)
Multiplication
The basic rule:
0x0=1
0x1=0
1x0=0
1x1=1
Example:
0110
x 0010
0000
+ 0110
0000 Apply the basic rule in addition here if necessary
0000
0001100
7
To check:
0110 = (0 x 23) + (1 x 22) + (1 x 21) + (0 x 20) = (0 + 4 + 2 + 0) = 6(Decimal)
x 0010 = (0 x 23) + (0 x 22) + (1 x 21) + (0 x 20) = (0 + 0 + 2 + 0)=x 2(Decimal)
1100 = (1 x 23) + (1 x 22) + (0 x 21) + (0 x 20) = (8 + 4 + 0 + 0) 12(Decimal)
Division
Division in binary is similar to the long method of division in decimal numbers.
Examine the example below:
101012 Checking:
102 1010102
- 10 1010102 = 4210;
01 102 = 210;
- 0 42 ÷ 2 = 2110
10 Answer:
- 10 101012 = (1 x 24) + (0 x 23) + (1 x 22) + (0 x 21) + (1 x 20)
1 = 16 + 0 + 4 + 0 + 1
- 0 = 21
10
- 10
0
Decimal conversion
Converting from a decimal number to any number system used in computing is
easy enough. As a general rule, you may consider the following steps:
1. Divide the decimal number by the base or radix of the number system you want
to convert to.
2. Write down the remainder of the division operation.
3. Repeat steps (1) and (2) for each quotient you get until you cannot divide the
quotient by the radix any further.
4. Write down the remainder for each division operation in sequence from bottom
to top to get the converted number.
Example: Convert the decimal number 250 to binary, octal, and hexadecimal numbers
respectively.
Binary Octal Decimal
250 ÷ 2 = 125 remainder 0 250 ÷ 8 = 31 remainder 2 250 ÷ 16 = 15 remainder 10
125 ÷ 2 = 62 remainder 1 31 ÷ 8 = 3 remainder 7 15 ÷ 16 = 0 remainder 16
62 ÷ 2 = 31 remainder 0 3÷8=0 remainder 3
31 ÷ 2 = 15 remainder 1
15 ÷ 2 = 7 remainder 1 Using the hexadecimal
7÷2=3 remainder 1 symbols for 15 and 10 we
3÷2=1 remainder 1 have “F” and “A”,
1÷2=0 remainder 1 respectively.
8
Binary Conversion
A. Binary to Decimal
To convert a binary number to decimal number, multiply each value of
the binary bit by the powers of two (2x), where x is the ordinal bit number - 1.
Then, add them altogether.
Example:
11012 = (1 x 23) + (1 x 22) + (0 x 21) + (1 x 20)
= (1 x 8) + (1 x 4) + (0 x 2) + (1 x 1)
=8+4+0+1
= 1310
B. Binary to Octal
The following are the steps in converting binary to octal:
1. Arrange the given binary bits in groups of 3 starting from the least significant
digit (right-most digit).
2. Convert each group to its octal equivalent by using the formula:
f(a,b,c) = (a*4) + (b*2) + c
3. Write down the octal equivalent in succeeding order.
Example:
1100011011002 = 110 001 101 100 = 61548
= 1: (1 x 4) + (1 x 2) + 0 = 4 + 2 + 0 = 6
= 2: (0 x 4) + (0 x 2) + 1 = 0 + 0 + 1 = 1
= 3: (1 x 4) + (0 x 2) + 1 = 4 + 0 + 1 = 5
= 4: (1 x 4) + (0 x 2) + 0 = 4 + 0 + 0 = 4
C. Binary to Hexadecimal
Converting from binary to hexadecimal is like converting from binary to
octal. The only difference is that instead of grouping the binary string in sets of
3, you will need to group them in sets of 4 to get a single hexadecimal value for
each set. Use the table below as reference for the corresponding hexadecimal
value.
Dec 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Bin 0000 0001 0010 0011 0100 0101 0110 0111 1000 1001 1010 1011 1100 1101 1110 1111
Hex 0 1 2 3 5 5 6 7 8 9 A B C D E F
Steps:
1. Arrange the given binary bits in groups of 4 starting from the least significant
digit (right-most digit). Use leading “0” on the most significant digit (left-most
digit) if necessary to complete the grouping.
2. Convert each group to its hexadecimal equivalent by using the formula:
f(a,b,c,d) = (a*8) + (b*4) + (c*2) + d
3. Write down the hexadecimal equivalent in succeeding order.
Example:
1101001110111002
= 1: (0 x 8) + (1 x 4) + (1 x 2) + 0 = 0 + 4 + 2 + 0 = 6
= 2: (1 x 8) + (0 x 4) + (0 x 2) + 1 = 8 + 0 + 0 + 1 = 9
= 3: (1 x 8) + (1 x 4) + (0 x 2) + 1 = 8 + 4 + 0 + 1 =13(D)
= 4: (1 x 8) + (1 x 4) + (0 x 2) + 0 = 8 + 4 + 0 + 0 =12(C)
9
Octal Conversion
A. Octal to Decimal
Octal to decimal conversion is no different from binary to decimal
conversion. Only this time, instead of using the powers of (2), you use the power
of (8).
Example:
70418 = (7 x 83) + (0 x 82) + (4 x 81) + (1 x 80)
= (7 x 512) + (0 x 64) + (4 x 8) + (1 x 1)
= 3584 + 0 + 32 + 1
= 361710
B. Octal to Binary
The long method to convert an octal number to binary number is to convert
it to a decimal number and then convert the resulting decimal number to binary.
Using our previous example, we already know that 70418 is equal to
361710. So, we already have the first step done for us. To complete the process,
we will now convert 361710 to binary. Using the process explained, we will get.
3617 ÷ 2 = 1808 remainder 1
1808 ÷ 2 = 904 remainder 0
904 ÷ 2 = 452 remainder 0 This means that 70418
452 ÷ 2 = 226 remainder 0 is equal to
226 ÷ 2 = 113 remainder 0
1110001000012
113 ÷ 2 = 56 remainder 1
56 ÷ 2 = 28 remainder 0
28 ÷ 2 = 14 remainder 0
14 ÷ 2 = 7 remainder 0
7÷2=3 remainder 1
3÷2=1 remainder 1
1÷2=0 remainder 1
1110001000012 = 70418
C. Octal to Hexadecimal
As explained above in octal to binary conversion, octal to hexadecimal
conversion uses the same process as in converting the octal value to its decimal
value. Then from the decimal value, instead of using 2 as the divisor, we will use
16 which is the base or radix, for the hexadecimal number system. Again picking
up from the example above, if 70418 is equal to 361710 then we will have:
3617 ÷ 16 = 226 remainder 1
226 ÷ 16 = 14 remainder 2
14 ÷ 16 = 0 remainder 14 (E in Hexadecimal)
Writing down the remainders from the bottom to top, we get E2116
Hexadecimal Conversion
A. Hexadecimal to Decimal
To convert from hexadecimal to decimal number, we multiply each
hexadecimal bit with the powers of the base number, in this case, 16. However,
please note and remember that the hexadecimal number system uses alphabet
10
characters as well to represent the decimal numbers from 10 to 12. Use the table
below as reference.
Dec 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Bin 0000 0001 0010 0011 0100 0101 0110 0111 1000 1001 1010 1011 1100 1101 1110 1111
Hex 0 1 2 3 5 5 6 7 8 9 A B C D E F
Example:
F4C216 Referring to the table, we have F16 = 1510 and C16 = 1210. So, we will
substitute the decimal values to the letters in our hexadecimal number notation.
F4C216 = (15 x 163) + (4 x 162) + (12 x 161) + (2 x 160)
= (15 x 4096) + (4 x 256) + (12 x 16) + (2 x 1)
= 61440 + 1024 + 192 + 2
= 6265810
B. Hexadecimal to Binary
To convert from hexadecimal to binary, we will just use the short method
of converting each hexadecimal bit to binary strings, this time in groups of 4.
You may refer to the table above as well, to get the binary equivalent of each
hexadecimal digit. Thus,
F4C216 = 1111 0100 1100 0010 (then just put them altogether)
F4C216 = 11110100110000102
C. Hexadecimal to Octal
Converting hexadecimal to octal can be easily done in 3 simple steps:
1. Get the binary conversion of the hexadecimal number to be converted.
2. Put the binary conversion of each hexadecimal number altogether in one
binary string.
3. Regroup the binary string into groups of 3. Again, you may use leading “0”.
4. Get the octal value of each binary group and put them together.
Taking from our example above:
F4C216 = 11110100110000102 (group this by 3 starting right-most digit)
= 001 111 010 011 000 0102
= 1 7 2 3 0 2
= 1723028
11
Basic Conversion of Bytes
Unit ~ Equivalent (SI) Actual Size (Binary)
Byte 8 bits
Kilobyte ~1,000 B 1024 B
210 = 1,024 B
Megabyte ~1,000 KB 1024 KB
~1,000,000 B 220 = 1,048,576 B
Gigayte ~1,000 MB 1024 MB
~1,000,000 KB 230 = 1,073,741,824 B
~1,000,000,000 B
Terabyte ~1,000 GB 1024 GB
~1,000,000 MB 240 = 1,099,511,627,776 B
~1,000,000,000 KB
~1,000,000,000,000 B
To better appreciate the given conversion table, look at the example below that
would require a little calculation using the values given.
Example:
How many 1.5MB picture files will fit in a DVD? We know that a regular
DVD’s capacity is about 4.7 GB. Taking from the table above that 1GB is
~1,000MB, then we can arrive at the equation:
X = (4.7 * 1000) / 1.5
X = 4700/1.5
X = 3133.33 (~3133 files)
Actual size will be computed like this:
X =(4.7 * 1024)/1.5
X = 4,812.80/1.5
X = 3208.53 (3209 files)
What’s More
Directions: Read each item carefully and choose the letter of the correct answer.
1. What is binary equivalent of 108 ?
A. 1000 B. 1100 C. 1001 D. 1010
2. What is the decimal equivalent of 1102 ?
A. 8 B. 6 C. 7 D. 9
3. What is the octal equivalent of 1416 ?
A. 13 B. 14 C. 15 D. 16
4. What is the hexadecimal equivalent of 1810 ?
A. 10 B. 11 C. 12 D. 13
What I Can Do
Self-Evaluation
Evaluate your current skills against the criteria listed below. Check the option
that you think is most appropriate to you.
Very Good – excellently demonstrates understanding, able to explain the
concept in wider context of the subject, perfectly performs tasks,
and produces excellent work
Good – competently demonstrates understanding, has sufficient understanding
of concepts, can describe the received information in own words,
easily accomplish tasks, and produces good quality work
Fair – some understanding is demonstrated, meets minimum knowledge
requirement to perform tasks, and can produce output by
following examples
Weak – understanding is not clearly demonstrated, having difficulty performing
tasks, insufficient knowledge and skills to produce output
What I Know
Directions: Match the risk or hazard in Column A with the cause in Column B.
Write the letter of the correct answer on your answer sheet.
A B
1. tripping A. electrical faults ranging from equipment
2. slipping failure, overloading of convenience outlets
3. ergonomic injuries and extension cords, frayed cable, exposed
4. eye strain wiring
5. fire B. loose overhead fixtures; tossing tools and
objects between co-workers
C. wires running down near or through the
walkways or aisle
D. staring at the computer screen for long
periods of time
E. painful condition of hands, hips, or back
due to poor posture
F. spills on the floor leaving it wet and
presence of small objects like pen caps
or paper clips that are left scattered
What’s In
14
maintenance of the worker in an occupational environment adapted to his/her
physiological ability. (Rules and Regulations Implementing Executive Order No. 307)
What’s New
Key Terminologies
Occupational Health and Safety (OHS) – the promotion and maintenance of
the highest degree of physical, mental, and social well-being of workers in all
occupations
Ergonomics – refers to any method or product feature designed to optimize
overall human well-being and performance especially at work
Hazard – source of potential injury or threat
Risk – the possibility that something bad or unpleasant thing will happen
What Is It
IDENTIFYING HAZARDS
Slips, Trip, and Fall
This kind of hazard may perhaps be the most common of all, whether you are
working in an office, in a construction site, or in other heavy industry job site. Common
15
causes contribution to this hazard, especially tripping, are wires running down near or
through the walkways or aisle ; drawers that are not kept completely closed or simply
left open without regard ; frayed or buckled carpet ; and obstructions left unattended
along the walkways. Slipping is commonly caused by spills on the floor leaving it wet
and the presence of small objects like pen caps or paper clips that are left scattered.
Generally, this kind of hazard could cause minor to major injuries to a person
minor to major damage to properties. The key to controlling or avoiding this kind of
hazard is by doing the practice of good housekeeping. Housekeeping as defined by
Merriam, is ‘the routine tasks that must be done in order for the system to function
effeciently.’ When you say routine, it is being done regularly on a continuous basis. In
layman’s term it is the practice of tidying up or putting everything clean and in proper
oder. It makes sense because once the workplace is all tidied up and in order, then
there should be no reason for you to slip, trip, or fall. This will lessen the chance for
this kind of hazard to occur in your environment. Other ways of controlling it is by
carefully planning the layout of the workplace and by simply mindful and considerate
of the welfare of others.
Fire
This kind of hazard is most dreaded because of its potential to cause heavy to
catastrophic damage or even total loss of properties and lives. This is also the reason
why fire safety is a strict requirement in the building code. Every workplace is required
to have a full fire safety inspection and must keep and ensure that the required fire
safety equipment (usually fire extinguisher) is in good working condition. Common
cause of fire in the office is generally electrical faults. This could range from equipment
failure, overloading of convenience outlets and extension cords, frayed cable, or
exposed wiring to poor maintenance. Other causes are storage of highly combustible
materials or human error.
Because of its catastrophic potential, ways of controlling this kind of hazard is
highly standardized and involves not only private individual effort but rather one that
is a concern by the public, as a whole, and enforcement by the government. Thus, the
Fire Code of the Philippines was created.
Ergonomic injuries
This kind of hazard is often ignored but perhaps the one that causes long-term
injuries if not addressed. It is quite difficult to detect since it does not manifest
instantly, unlike accidents. The risks involved in this kind of hazard develops over time.
For instance, while you are conveniently seated inside the office the whole day doing
your work, it can cause ergonomic injuries to your hips and back due to poor posture.
On the other hand, if your job requires you to do repetitive movements to specific region
of your body like wrists, back, or hips, this causes repeated trauma which could be
negligible while doing the actual work and may gradually and increasingly worsens
over time until it manifests in a discomforting or worse, painful manner.
16
Proper Workstation Ergonomics
The workstation you are using can present a number of risks if not corrected.
Correcting or controlling this kind of hazard generally involves the use of ergonomically
adjustable office furnishings and equipment such as chairs, tables, computer monitor,
keyboard, or simple copyholder for documents while you are typing. While these things
may seemingly show some sort of hype for novelties and conveniences, they do
minimize the risks of long-term injuries that may not be life-threatening but definitely
discomforting. Remember that safety is not only concerned about reducing the risk of
accidents in the workplace but more so to protect the welfare of the workers. A
workplace that may not have all the convenience but free from discomfort is still a
happy workplace.
Eyestrain
This is one of the most common risks that one may acquire not only in the
workplace but also at home. No matter what industry you work in, you use your eyes
to look at what you are doing. Most, if not all, office workers stare at computer screen
for long periods of time doing their daily tasks. Even when you stare at the screens of
your tablets and phones, you are still at risk of developing eyestrain. Eyestrain causes
17
your eyes to get dry and irritated and worse, you might have trouble focusing at work.
While this kind of hazard could be inevitable, there are still some things and practices
that you can do to minimize it, especially in the workplace. The following are some
practices to avoid eyestrain:
1. Reduce glare on monitors
a. Lower light levels
b. Use and close blinds on windows
2. Adjust monitor position slightly below eye level at appropriate angle
3. Take 5-10 minute breaks for every hour spent staring at the monitor, focusing
your eyes at varying distances
4. Increase the computer’s font size
Over-crowding is also another cause of poor IAQ. It affects the humidity and
temperature of the room. Nowadays, over-crowding does not only pertain to people
itself. Virtually, each person in the office is assigned to at least one computer to do
his/her tasks. These computers give off heat, among other, that also affects IAQ.
Copiers and laser printers give off ozone gas that contributes to IAQ hazards.
Like any other hazards in the office, good housekeeping and maintenance is
perhaps one of the most important and simplest way of controlling it. IAQ is all about
cleanliness and hygiene. Other ways of controlling it are through the use of various
equipment and appliances like air conditioners, heaters (for cold places), and other
ventilating machines. Moreover, an IAQ policy can be set-up for everyone to follow.
Since there are different kinds of hazards, controlling them requires different
systems. These include the following:
Engineering Controls. It involves controlling the hazard right at its source.
Whenever applicable and feasible, the equipment and facility used to perform
the job is customized, fabricated, or manufactured in such a way that it removes,
isolates, or minimizes the risks involved. In an office environment, the use of
ergonomic office equipment that can be adjusted not only for convenience but
also to reduce physical stress while performing the work is part of an engineering
control.
Safe Work Practices. This perhaps is the most cost effective and practical
system that can be implemented in an office environment. It involves
establishing certain rules and regulations regarding carrying out all task in a
safe manner. This may also require training and educating workers to enforce
the practice.
Administrative Controls. This type of control goes hand in hand with safe work
practices. Though seemingly the same, administrative control may refer to
additional measures or organizational policies that aim to reduce hazards and
risks throughout the organization.
18
Personal Protective Equipment (PPE). While use of PPE may not be necessary
when working in an office environment, it might be noteworthy to know what
PPE is and what kind of PPE applies to specific tasks in the office. Most common
PPE that could be found in the workplace, whether in an office environment or
heavy industry like construction site, are safety glass, helmets, gloves, and
safety shoes or rubber boots.
Systems to Track Hazard Correction. This refers to a well-defined system of
identifying, tracking, and documenting hazards and the corrections made to
reduce, if not to completely eliminate it. This could be in the form of a simple
form document, a spreadsheet, or a database. In large organizations, such
systems are mostly in place and maintained. In smaller organizations, however,
it is more simple to implement, but often neglected.
Preventive Maintenance Systems. A good and reliable preventive maintenance
program should be in place to ensure that hazard controls currently
implemented are always functioning well. This involves strict, regular monitoring
and replacements (where applicable) of controls that are in place even before it
needs repair. A common example of good maintenance practice is the regular
monitoring and replacement of fire extinguishers in the office. Again, such
practice is highly recommended to be well documented for tracking and
reference purposes.
Emergency Preparation. An emergency is a situation where a threat to life or
property is present. This is mostly an unsuspecting or unexpected event such
as an accident or an event brought by natural calamity or disaster like typhoons
and quakes. The key to reduce or minimize the loss or damage to life or property
is by preparing for it. This requires detailed risk assessment and careful
planning. Essential part of this preparation is on keeping communication lines
open to appropriate parties involved in emergency response and relief. In an
office environment, a well-planned and coordinated evacuation plan should also
be included in the preparation. Conducting or participating in fire and quake
drills is also highly recommended.
Medical Programs. This is an important part of health and safety system. Such
program can either be in-house, like in large organizations, or through certain
arrangements with local medical facility. Other than medical treatment, in case
of emergencies, medical programs control and promote the general health of the
workers in an organization. Something which is clearly an OHS concern A
company’s HMO program, though may not be complete, is a good start for a good
medical program.
19
safety committee. In small organizations, keeping track and maintaining records of an
employee’s Annual Physical Examination (APE) is a good place to start.
EMERGENCY ASSISTANCE
As you have already known, every emergency situation is unexpected. You can
only do so much in terms of preventing it but once it happens there is no better way of
handling it than to be prepared for it. One of the best practices in maintaining safety
in the workplace is keeping the communication line open and knowing where and how
to get emergency assistance for such eventuality. Whether at home, school, or work
you are constantly reminded and given information about emergency number that you
most often ignore until such time that you need it. Keeping such information in mind
may spell the difference between life and death. It is better to keep in mind your local
Emergency Response Team (ERT) hotline. In most cases these are hotline numbers for
police, fire department, and ambulance services that are commonly posted around your
community. If you cannot find such posting around your community, it is better to go
to your nearest local government unit and ask for the information.
Knowing how to contact your local ERT is just one part of ensuring emergency
preparedness. Knowing exactly where and how to get to key emergency facilities like
medical clinic or hospitals is another part of it. Identifying the best as well as alternative
routes to get there would be best as well.
What’s More
ACTIVITY :
Directions: How many of Safety Standards can you find? Describe and explain
each.
`
20
“Safety is everybody’s concern.” It starts with one’s self. Risks and
hazards are present in the workplace no matter how convenient it
looks, as in an office. Hazards that are present in the office can be
identified as those causing slip, trips, and fall; fire, ergonomic
injuries; eyestrain; and indoor air quality. These hazards can be
controlled through the use of different systems or a combination of
them. The systems that can be used to control hazards are engineering controls; safe
work practices; administrative controls use; use of PPE; systems to track hazard
correction; preventive maintenance systems; emergency preparation; and medical
programs.
Directions: Read each item carefully and identify what controlling hazard is
described. Write your answer on you answer sheet.
1. It is a well-defined system of identifying tracking, and documenting hazards
and the corrections made to reduce, if not to completely eliminate it.
2. Helmets, gloves, and safety shoes or rubber boots
3. Conducting or participating in fire and quake drills
4. Use of ergonomic seats and tables or other office equipment that can be
adjusted to reduce physical stress while performing the work
5. Programs that control and promote the general health of the workers in an
organization
6. Additional measures or organizational policies that aim to reduce hazards and
risks organizational wide
7. Establishing certain rules and regulations regarding carrying out all task in
a safe manner
8. Strict, regular monitoring, and replacements of controls that are in place even
before it needs repair
What I Can Do
Self-Evaluation
Evaluate your current skills against the criteria listed below. Check the option
that you think is most appropriate to you.
Very Good – excellently demonstrates understanding, able to explain the
concept in wider context of the subject, perfectly performs tasks,
and produces excellent work
Good – competently demonstrates understanding, has sufficient understanding
of concepts, can describe the received information in own words,
easily accomplish tasks, and produces good quality work
21
Fair – some understanding is demonstrated, meets minimum knowledge
requirement to perform tasks, and can produce output by
following examples
Weak – understanding is not clearly demonstrated, having difficulty performing
tasks, insufficient knowledge and skills to produce output
References:
Computer Programming Vol. 1 Innovative Training Works, pp. 22-55
22