Location via proxy:
[ UP ]
[Report a bug]
[Manage cookies]
No cookies
No scripts
No ads
No referrer
Show this form
Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
315 views
Pascal Programming
Uploaded by
Trevor G. Samaroo
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save Pascal Programming For Later
Download
Save
Save Pascal Programming For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
315 views
Pascal Programming
Uploaded by
Trevor G. Samaroo
Copyright
© © All Rights Reserved
Available Formats
Download as PDF or read online on Scribd
Download now
Download
Save Pascal Programming For Later
Carousel Previous
Carousel Next
Save
Save Pascal Programming For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 9
Search
Fullscreen
Cire) ‘The programming language Pascal is used to teach introductory computer programming in many schools. This is because Pascal promotes a systematic, well-organised and logical approach to learning programming. ‘This chapter shows the practical aspeets of implementing the programs introduced in Chapter 10. If this is your first programming language, you will need a few basics to get started. Think of a programming language as a recipe for buking a cake or instructions on building a bench. Pascal is one programming language, just as English is one spoken and written language. Your mobile phone has « keypad that you use to type the number or text message. Then you click send and your call is made, or message sent, without the knowledge of how it is done. However, if you type a wrong digit when you are dialling a number, you will not he able to contact the correct person. Similarly, a computer uses an aplication called a compiler to produee a result by translating the instructions in a program you write into a form the computer ean interpret: Ifyou type the wrong instructions, che compiler eannot produce any results. Instead it produees syntax errors or suntime errors. Finding a Pascal compiler ‘There are a number of Pascal compilers available. In this chapter, Ezy Pascal is used. You should search online for ‘Ezy Pascal Free Download’ from Dolphin Bay Software. PROGRAMMING WITH PASCAL Writing your first program When you start Ezy Pascal, the Pascal editor will appear (Fig 11.1). The upper green area is to show the result of your programs, while the lower blue area is, used for typing the program code. Agni EeyPascalopennasceen In your Pascal editor type the shore Pascal program shown below: In the first fine, be sure to type your name in place of ‘type your name here’ and today’s date in place of type today’s date here’ {Name: type your name here} {vitle: my first simple program written in Pascal} {Purpose: To output one Line} {Date: type today’s date here} Program Sentence; Begin Writeln(/Hello to everyone’); End.‘The word Program tells the Pascal compiler that this is the first line of eode that contains the name of the program. In this example, the name of the program is Sentence. ‘The main section of a program starts at the word “Begin! and finishes at ‘End’. Within this section, the specific instructions that need to be executed by: the compiler are included to solve our programming problem, Mette ve creer oe tat Yer Opens hn Bea , ig 1.2 yong Pascal codeintothe editor Notice the first four lines of code. These are comments and are ignored by the Pascal compiler. You should always sta:t your programs with the following ‘comments: + your name the tide of the program a brief deseription of the purpose of the program the date the program was created. Saving the program ‘You should save every program you type. To save the program, click File, Save. Browse to where you want to save your program (such as the Documents folder or 11.1 Introduction te Pascal a memory stick). Then type the name ‘Sentence’ as the name of the program. If the name of the program will be two or more words, chen remove the spaces between the words. So, for example, One Sentence! will become ‘OneSentence’, Pascal will add the defuult extension .pas to dhe progratn. You will see the name of the program above the EzyPascal menu (Fig 11.3). BB Ezy Pascal Free Version Sentence.pas £9 11.3 Your program is ghren aname ard shawmat the rapor the xy arco sceen Compiling the program ‘The Pascal compiler needs to convert the Pascal program fiom the statements you typed in the editor into machine language so that the central processing unit can execute the program correctly.’The compiler first checks your program to ensure that no typing or syntax esrors were made, Select Run, Compile or click the Compile icon on the menu. If you typed everything correctly, the compiler will output a message ‘Compile successful’ at the hottom of the screen (Pig 11.4), Otherwise an error message will be displayed (also at the bottom of the screen) and a possible Iocation of the error will be highlighted ona line of code. Modified Compile successful al Fai Comping ineprowarn shows amestzaect he bottom ofthese tnatthere weno giaxerors In Figure 11.5, the compiler has highlighted the line immediately below the error. The orange arrow shows where the error is located: the semicolon was omitted at the end of the line.11 Prograrmming with Paseat Running the program Once you have no compilation errors, you can execute (run) the program to see if it produces the correct output. From the Run menu, select the Run option or elick the Run icon, The program will execute in a program as shown in Figure 11.6. Fig 51 The compiler Pas highghted the re medal belo the ero ‘When compiling and removing errors, if you make multiple corrections, and more errors appear, then you may not know which correction caused the additional errors. Therefore, it is best to make cortections in this order: 1 Identify and correct each error individually. 2 Save the program. 3 Compile the progeam again. Figs Pour of theprogrom nae Serence You should continue to compile the progeam until there are no errors and the ‘Compilation successful? message is shown. Questions 1 State which of the following are valid names for a 2. List three steps to follow when compiling a Pascal program: program. a Add numbers b 10Lines © ForLoop dd ThreeChoices fe maxValues:Congratulations! Now that you have completed your first Pascal prograts, you should compile and execute it Table 11.1 Stricture of fascal program amples) Program header Program name; Program Sample; For€zxy Pascal or Program Sample input, output); Forsome other compilers Declerations Const Const pi=3.14; Var Mark Count: integer; Test reat Grade: char, Title='Hello; Procedures and functions Begin Begin Statements Read(Mark); Wiiteln( ThankYou} 1 (Miark> 30) Then Grade =P Else Grade =F Forcount = 1t0 5 Do. Begin Tests= Mari* count; \Writeln(‘The test outputs; test; End; While Mark > 30.0 Begin Wiiteln(This is @ sample while loop); Wiiteln(More statements can ge here’) End Repeat Wiiteln(this is a sample Repeat loop’ Witeln(More statements can go here!) Until Mark > 36; End, End, Structure of a Pa eee to sce your results, Table 11.1 shows the basic structure of Pascal program, ‘All Pascal progrems must have a Program heading, The first ‘word, Program, is compulsory. ‘Const is short for constant: You assign a value to aconstant when you create it, Var is short for variable, Before you can use a variable you musttfrst declare it. These exemples declare Mark and Count as integer, Test as real and Grade as character. Variable types include integer, real, character and literal (string), Denotes the start of one or more programming statements ‘These include: ‘nour, output, ‘conditional (F-THEN-ELSE) assignment. Forloop Begin (ofa compound statement) ‘compound statements have two or mare consecutive statements Ends (of a compound statement) While loon Cen include compound statements enclosed in Begin and End Repeat loop ‘Coninclude compound statements thet may not need Begin and End End. (with a full stop) indicates the very last line or end of the program,11 Progamming with Pascal Punctuation ‘The semicolon is used to separate declarations and nd sauce most statements, Many Pascal programs are writwen co Else Writeln(‘this is within the follow a structure, such as those in. previous examples. line’, Newline); However, declarations and statements, the following Pascal Ifa semicolon is placed ce the semicolon separates the indivicnal ith the End, this would cause program will also compile and run: a syntax error for the II™THEN-ELSE statement. Program Sentence; Begin Writeln( ‘Hello ‘The Last line of every Pascal program’s code must be to everyone’); End. End.’ The full stop denotes the end of the program. Comments in { } can however be written after this last ‘The keywords ‘Begin’ and ‘End’ act as brackets for multiple statements, so there is no semicolon after begin but usually after End wo show the endof thesttement. Statements in Pascal There are some oceasions when no semicolon is used statement. Statements give insttuctions to the computer. A simple statement is a single instruction while « compound statement comprises two or more statements that after End, a3 in the following example: If (line >80) are within ‘Begin’ and End? keywords. A compound Then Begin {perform the following two statement is useful if you need to perform some statements} instructions in sequence or repetitively before moving on to the next set of statements. Various types of statements are explained in Table 11.2. Writeln( ‘This is over the line’); Newline := Newline — line; Table 11.2 Vypes of statements Input statement Read: The cursor stays next to the text entered Read and Readin reads datafrom keyboard, and Radin; ‘The cursor movesto the next line after the text is ‘waits forthe Enter key on the Keyboard to be pressed entered Assignmentstatement Mark == 30; ‘= lscalled the assignment operator Places data in a variable ‘The variable is on thellet ofthe assignment operator The valueis on the right of the assignment operator: The semicolon (3 ends the statement Here, Mark is assigned the value 30 Output statement write; The cursor remains at the same place on the sereen ‘Shows the output on the monitor screen writeln ‘The cursor goes tothe start of the next line Writer; Outputs 30 Wilteln (Mark); Outputs 30 | (jis the cursor) Write(Score of\Merk]; Outputs Score ot 30 | Wiiteln(Score of{Mark); Qutputs Score of 20 | (isthe cursor) ‘Compound statement Begin Begin (ofa compound statement) Mark:5 Mark 75; Twoor more consecutive statements Writeln(Mark); End; (of a compound statement) End;
You might also like
CSE 1201 - Programming Course - Outline
PDF
No ratings yet
CSE 1201 - Programming Course - Outline
4 pages
CXC It May - June 2012
PDF
No ratings yet
CXC It May - June 2012
12 pages
Csec Past Papers With Solutions: Informationtechnology Paper 1 2 0 1 2 - 2 0 1 8
PDF
0% (6)
Csec Past Papers With Solutions: Informationtechnology Paper 1 2 0 1 2 - 2 0 1 8
1 page
CAPE Computer Science Unit 1 Module 2 - Problem Solving With Computers January 7, 2022
PDF
No ratings yet
CAPE Computer Science Unit 1 Module 2 - Problem Solving With Computers January 7, 2022
8 pages
Grade 10 Information Technology
PDF
No ratings yet
Grade 10 Information Technology
11 pages
F5 Exam P2 Questions
PDF
100% (3)
F5 Exam P2 Questions
5 pages
Sugar Cane Process Chemistry Project
PDF
67% (3)
Sugar Cane Process Chemistry Project
12 pages
CSEC IT Workshop Part 2 - A
PDF
0% (2)
CSEC IT Workshop Part 2 - A
20 pages
CAPE NOTES Unit 2 Module 1 Database Management-1
PDF
No ratings yet
CAPE NOTES Unit 2 Module 1 Database Management-1
15 pages
Pre Grade Computer Book 5 - 7 Introduction To Computers. Book Vol Ume - 1
PDF
No ratings yet
Pre Grade Computer Book 5 - 7 Introduction To Computers. Book Vol Ume - 1
21 pages
IGCSE Ch09 Databases Sec 4
PDF
No ratings yet
IGCSE Ch09 Databases Sec 4
37 pages
Information Technology Ans 2006 Paper 1
PDF
100% (7)
Information Technology Ans 2006 Paper 1
7 pages
Cape IT Unit 1 Mock Exam 2013 Paper 1 Module 1 and 2 SOLUTIONS
PDF
No ratings yet
Cape IT Unit 1 Mock Exam 2013 Paper 1 Module 1 and 2 SOLUTIONS
8 pages
CSEC It Theory Jun 20005
PDF
No ratings yet
CSEC It Theory Jun 20005
11 pages
Cape It Unit 1 Questions
PDF
No ratings yet
Cape It Unit 1 Questions
1 page
1.Q. What Is Operating System?
PDF
No ratings yet
1.Q. What Is Operating System?
15 pages
Cape It Unit 2 Notes Mod 2 So 13 HTML PDF
PDF
No ratings yet
Cape It Unit 2 Notes Mod 2 So 13 HTML PDF
26 pages
Algorithm Questions
PDF
No ratings yet
Algorithm Questions
5 pages
CXC Cape It U1 p2 2022
PDF
No ratings yet
CXC Cape It U1 p2 2022
24 pages
Karen Kinglocke EDPM SBA
PDF
No ratings yet
Karen Kinglocke EDPM SBA
16 pages
IT Unit1-Module-1-Content-9
PDF
No ratings yet
IT Unit1-Module-1-Content-9
20 pages
I Focus: Test Your Knowledge
PDF
No ratings yet
I Focus: Test Your Knowledge
2 pages
Cape Unit 1 - Module 1 - Obj 6
PDF
No ratings yet
Cape Unit 1 - Module 1 - Obj 6
20 pages
IT Notes For CSEC
PDF
No ratings yet
IT Notes For CSEC
31 pages
Info Tech Csec Glossary
PDF
No ratings yet
Info Tech Csec Glossary
7 pages
Cape Notes Unit1 Module 2 Content 2
PDF
No ratings yet
Cape Notes Unit1 Module 2 Content 2
17 pages
Notes On Computer PDF
PDF
No ratings yet
Notes On Computer PDF
19 pages
CSEC Multiple Choice 1
PDF
No ratings yet
CSEC Multiple Choice 1
10 pages
Edpm Study Guide
PDF
100% (1)
Edpm Study Guide
25 pages
CSEC IT Notes - Term 1 Week 9 - Problem Solving and Programming Lecture 2
PDF
No ratings yet
CSEC IT Notes - Term 1 Week 9 - Problem Solving and Programming Lecture 2
47 pages
Practice Information Technology
PDF
No ratings yet
Practice Information Technology
21 pages
Creating A Fillable Form On Word
PDF
No ratings yet
Creating A Fillable Form On Word
3 pages
Cape Notes Unit 2 Module 2 Reason For The Use of It
PDF
No ratings yet
Cape Notes Unit 2 Module 2 Reason For The Use of It
1 page
CSEC IT Notes - Term 2 Week 3 Trace Tables
PDF
No ratings yet
CSEC IT Notes - Term 2 Week 3 Trace Tables
22 pages
Form 4 IT
PDF
No ratings yet
Form 4 IT
5 pages
Info Tech School Based Assessment 2018
PDF
No ratings yet
Info Tech School Based Assessment 2018
6 pages
36 Csec EdpmCSEC EDPM
PDF
No ratings yet
36 Csec EdpmCSEC EDPM
1 page
Answers 3
PDF
No ratings yet
Answers 3
17 pages
Geography Sba
PDF
100% (1)
Geography Sba
25 pages
Types of Computers
PDF
No ratings yet
Types of Computers
7 pages
Ryan Cs Lessonplan4
PDF
No ratings yet
Ryan Cs Lessonplan4
5 pages
IT Annual Scheme Grade 7-11 2022-2023
PDF
No ratings yet
IT Annual Scheme Grade 7-11 2022-2023
51 pages
Question Quiz - 01
PDF
No ratings yet
Question Quiz - 01
3 pages
Cape+2016 It Mock
PDF
No ratings yet
Cape+2016 It Mock
7 pages
Describe How Data Are Stored and Manipulated Within The Computer
PDF
100% (1)
Describe How Data Are Stored and Manipulated Within The Computer
9 pages
IT SBA - Letterhead and Letter With Merged Fields 2017 Solutions
PDF
No ratings yet
IT SBA - Letterhead and Letter With Merged Fields 2017 Solutions
1 page
Application and System Software
PDF
No ratings yet
Application and System Software
32 pages
Distinguish Between Systems Programs and Application Programs
PDF
0% (1)
Distinguish Between Systems Programs and Application Programs
9 pages
Module 3 Note1
PDF
No ratings yet
Module 3 Note1
2 pages
CAPE IT Unit 2 May - June 2019 Paper 2
PDF
No ratings yet
CAPE IT Unit 2 May - June 2019 Paper 2
23 pages
Lesson 1 Intro & IPO 1
PDF
No ratings yet
Lesson 1 Intro & IPO 1
12 pages
Pascal Notes
PDF
No ratings yet
Pascal Notes
50 pages
Discovering Computers Fundamentals, 2011 Edition: Living in A Digital World
PDF
No ratings yet
Discovering Computers Fundamentals, 2011 Edition: Living in A Digital World
42 pages
I Focus: Test Your Knowledge
PDF
No ratings yet
I Focus: Test Your Knowledge
6 pages
The Importance of Computer in The 21st Century
PDF
No ratings yet
The Importance of Computer in The 21st Century
4 pages
Types of Application Software EDPM
PDF
No ratings yet
Types of Application Software EDPM
1 page
Problem Solving and Programming Content Handout
PDF
No ratings yet
Problem Solving and Programming Content Handout
17 pages
Cape It Ia
PDF
100% (1)
Cape It Ia
25 pages
Problem Solving Tech
PDF
No ratings yet
Problem Solving Tech
40 pages
IT P1 Booklet
PDF
No ratings yet
IT P1 Booklet
77 pages
473 - Introduction To Pascal Programming
PDF
No ratings yet
473 - Introduction To Pascal Programming
154 pages
Program Title (Input, Output) Begin: Program Statements Program Statement
PDF
No ratings yet
Program Title (Input, Output) Begin: Program Statements Program Statement
98 pages
Pascal (Introduction Update)
PDF
No ratings yet
Pascal (Introduction Update)
18 pages
Reinforcing Strategies: Learning Resource
PDF
No ratings yet
Reinforcing Strategies: Learning Resource
1 page
Particulate Theory of Matter
PDF
No ratings yet
Particulate Theory of Matter
7 pages
G10 Physics P2
PDF
No ratings yet
G10 Physics P2
13 pages
Repair & Upgrade: Learning Resource
PDF
No ratings yet
Repair & Upgrade: Learning Resource
1 page
States of Matter
PDF
No ratings yet
States of Matter
7 pages
Tensegrity: Learning Resource
PDF
No ratings yet
Tensegrity: Learning Resource
1 page
Disassembly & Recycling: Learning Resource
PDF
No ratings yet
Disassembly & Recycling: Learning Resource
1 page
Cover Page 2012 - 2018 PDF
PDF
No ratings yet
Cover Page 2012 - 2018 PDF
1 page
Durability: Learning Resource
PDF
No ratings yet
Durability: Learning Resource
1 page
Csec Past Papers With Solutions: Principles of Business Paper 1 2 0 0 2 - 2 0 0 8
PDF
0% (2)
Csec Past Papers With Solutions: Principles of Business Paper 1 2 0 0 2 - 2 0 0 8
1 page
Canadian School of Arts and Science Easter Term Exam - March 2020 Physics - Paper 2 (Total 100 Marks) Grade 11 2 Hours 30 Minutes
PDF
No ratings yet
Canadian School of Arts and Science Easter Term Exam - March 2020 Physics - Paper 2 (Total 100 Marks) Grade 11 2 Hours 30 Minutes
18 pages
Cover Page 2011 - 2017
PDF
No ratings yet
Cover Page 2011 - 2017
1 page
Canadian School of Arts and Science Easter Term Exam - March 2020 Mathematics - Paper 2 (Total 100 Marks) Grade 11 2 Hours 30 Minutes
PDF
No ratings yet
Canadian School of Arts and Science Easter Term Exam - March 2020 Mathematics - Paper 2 (Total 100 Marks) Grade 11 2 Hours 30 Minutes
20 pages
G11 Add Maths P2
PDF
No ratings yet
G11 Add Maths P2
18 pages
Old CSEC Geography MCQ Answers PDF
PDF
100% (1)
Old CSEC Geography MCQ Answers PDF
2 pages
Data Response: Population, Economy and Settlement 2013
PDF
No ratings yet
Data Response: Population, Economy and Settlement 2013
3 pages
CSEC Info Tech 1993-2003 Solutions
PDF
No ratings yet
CSEC Info Tech 1993-2003 Solutions
68 pages
Scrap Sba
PDF
No ratings yet
Scrap Sba
1 page
F5 P2 Climate - Vegetation
PDF
No ratings yet
F5 P2 Climate - Vegetation
5 pages
Eng B pp1 PDF
PDF
No ratings yet
Eng B pp1 PDF
114 pages
Calculus On Roller Coasters
PDF
No ratings yet
Calculus On Roller Coasters
7 pages
Physics: Completed Completed Completed Completed
PDF
No ratings yet
Physics: Completed Completed Completed Completed
3 pages
CXC CSEC Problem Solving
PDF
No ratings yet
CXC CSEC Problem Solving
69 pages
Subject MARKS (%) Term Term 1 2 3 1 2
PDF
No ratings yet
Subject MARKS (%) Term Term 1 2 3 1 2
1 page
Grade 10 Physics - Term 3
PDF
No ratings yet
Grade 10 Physics - Term 3
8 pages
Related titles
Click to expand Related Titles
Carousel Previous
Carousel Next
CSE 1201 - Programming Course - Outline
PDF
CSE 1201 - Programming Course - Outline
CXC It May - June 2012
PDF
CXC It May - June 2012
Csec Past Papers With Solutions: Informationtechnology Paper 1 2 0 1 2 - 2 0 1 8
PDF
Csec Past Papers With Solutions: Informationtechnology Paper 1 2 0 1 2 - 2 0 1 8
CAPE Computer Science Unit 1 Module 2 - Problem Solving With Computers January 7, 2022
PDF
CAPE Computer Science Unit 1 Module 2 - Problem Solving With Computers January 7, 2022
Grade 10 Information Technology
PDF
Grade 10 Information Technology
F5 Exam P2 Questions
PDF
F5 Exam P2 Questions
Sugar Cane Process Chemistry Project
PDF
Sugar Cane Process Chemistry Project
CSEC IT Workshop Part 2 - A
PDF
CSEC IT Workshop Part 2 - A
CAPE NOTES Unit 2 Module 1 Database Management-1
PDF
CAPE NOTES Unit 2 Module 1 Database Management-1
Pre Grade Computer Book 5 - 7 Introduction To Computers. Book Vol Ume - 1
PDF
Pre Grade Computer Book 5 - 7 Introduction To Computers. Book Vol Ume - 1
IGCSE Ch09 Databases Sec 4
PDF
IGCSE Ch09 Databases Sec 4
Information Technology Ans 2006 Paper 1
PDF
Information Technology Ans 2006 Paper 1
Cape IT Unit 1 Mock Exam 2013 Paper 1 Module 1 and 2 SOLUTIONS
PDF
Cape IT Unit 1 Mock Exam 2013 Paper 1 Module 1 and 2 SOLUTIONS
CSEC It Theory Jun 20005
PDF
CSEC It Theory Jun 20005
Cape It Unit 1 Questions
PDF
Cape It Unit 1 Questions
1.Q. What Is Operating System?
PDF
1.Q. What Is Operating System?
Cape It Unit 2 Notes Mod 2 So 13 HTML PDF
PDF
Cape It Unit 2 Notes Mod 2 So 13 HTML PDF
Algorithm Questions
PDF
Algorithm Questions
CXC Cape It U1 p2 2022
PDF
CXC Cape It U1 p2 2022
Karen Kinglocke EDPM SBA
PDF
Karen Kinglocke EDPM SBA
IT Unit1-Module-1-Content-9
PDF
IT Unit1-Module-1-Content-9
I Focus: Test Your Knowledge
PDF
I Focus: Test Your Knowledge
Cape Unit 1 - Module 1 - Obj 6
PDF
Cape Unit 1 - Module 1 - Obj 6
IT Notes For CSEC
PDF
IT Notes For CSEC
Info Tech Csec Glossary
PDF
Info Tech Csec Glossary
Cape Notes Unit1 Module 2 Content 2
PDF
Cape Notes Unit1 Module 2 Content 2
Notes On Computer PDF
PDF
Notes On Computer PDF
CSEC Multiple Choice 1
PDF
CSEC Multiple Choice 1
Edpm Study Guide
PDF
Edpm Study Guide
CSEC IT Notes - Term 1 Week 9 - Problem Solving and Programming Lecture 2
PDF
CSEC IT Notes - Term 1 Week 9 - Problem Solving and Programming Lecture 2
Practice Information Technology
PDF
Practice Information Technology
Creating A Fillable Form On Word
PDF
Creating A Fillable Form On Word
Cape Notes Unit 2 Module 2 Reason For The Use of It
PDF
Cape Notes Unit 2 Module 2 Reason For The Use of It
CSEC IT Notes - Term 2 Week 3 Trace Tables
PDF
CSEC IT Notes - Term 2 Week 3 Trace Tables
Form 4 IT
PDF
Form 4 IT
Info Tech School Based Assessment 2018
PDF
Info Tech School Based Assessment 2018
36 Csec EdpmCSEC EDPM
PDF
36 Csec EdpmCSEC EDPM
Answers 3
PDF
Answers 3
Geography Sba
PDF
Geography Sba
Types of Computers
PDF
Types of Computers
Ryan Cs Lessonplan4
PDF
Ryan Cs Lessonplan4
IT Annual Scheme Grade 7-11 2022-2023
PDF
IT Annual Scheme Grade 7-11 2022-2023
Question Quiz - 01
PDF
Question Quiz - 01
Cape+2016 It Mock
PDF
Cape+2016 It Mock
Describe How Data Are Stored and Manipulated Within The Computer
PDF
Describe How Data Are Stored and Manipulated Within The Computer
IT SBA - Letterhead and Letter With Merged Fields 2017 Solutions
PDF
IT SBA - Letterhead and Letter With Merged Fields 2017 Solutions
Application and System Software
PDF
Application and System Software
Distinguish Between Systems Programs and Application Programs
PDF
Distinguish Between Systems Programs and Application Programs
Module 3 Note1
PDF
Module 3 Note1
CAPE IT Unit 2 May - June 2019 Paper 2
PDF
CAPE IT Unit 2 May - June 2019 Paper 2
Lesson 1 Intro & IPO 1
PDF
Lesson 1 Intro & IPO 1
Pascal Notes
PDF
Pascal Notes
Discovering Computers Fundamentals, 2011 Edition: Living in A Digital World
PDF
Discovering Computers Fundamentals, 2011 Edition: Living in A Digital World
I Focus: Test Your Knowledge
PDF
I Focus: Test Your Knowledge
The Importance of Computer in The 21st Century
PDF
The Importance of Computer in The 21st Century
Types of Application Software EDPM
PDF
Types of Application Software EDPM
Problem Solving and Programming Content Handout
PDF
Problem Solving and Programming Content Handout
Cape It Ia
PDF
Cape It Ia
Problem Solving Tech
PDF
Problem Solving Tech
IT P1 Booklet
PDF
IT P1 Booklet
473 - Introduction To Pascal Programming
PDF
473 - Introduction To Pascal Programming
Program Title (Input, Output) Begin: Program Statements Program Statement
PDF
Program Title (Input, Output) Begin: Program Statements Program Statement
Pascal (Introduction Update)
PDF
Pascal (Introduction Update)
Reinforcing Strategies: Learning Resource
PDF
Reinforcing Strategies: Learning Resource
Particulate Theory of Matter
PDF
Particulate Theory of Matter
G10 Physics P2
PDF
G10 Physics P2
Repair & Upgrade: Learning Resource
PDF
Repair & Upgrade: Learning Resource
States of Matter
PDF
States of Matter
Tensegrity: Learning Resource
PDF
Tensegrity: Learning Resource
Disassembly & Recycling: Learning Resource
PDF
Disassembly & Recycling: Learning Resource
Cover Page 2012 - 2018 PDF
PDF
Cover Page 2012 - 2018 PDF
Durability: Learning Resource
PDF
Durability: Learning Resource
Csec Past Papers With Solutions: Principles of Business Paper 1 2 0 0 2 - 2 0 0 8
PDF
Csec Past Papers With Solutions: Principles of Business Paper 1 2 0 0 2 - 2 0 0 8
Canadian School of Arts and Science Easter Term Exam - March 2020 Physics - Paper 2 (Total 100 Marks) Grade 11 2 Hours 30 Minutes
PDF
Canadian School of Arts and Science Easter Term Exam - March 2020 Physics - Paper 2 (Total 100 Marks) Grade 11 2 Hours 30 Minutes
Cover Page 2011 - 2017
PDF
Cover Page 2011 - 2017
Canadian School of Arts and Science Easter Term Exam - March 2020 Mathematics - Paper 2 (Total 100 Marks) Grade 11 2 Hours 30 Minutes
PDF
Canadian School of Arts and Science Easter Term Exam - March 2020 Mathematics - Paper 2 (Total 100 Marks) Grade 11 2 Hours 30 Minutes
G11 Add Maths P2
PDF
G11 Add Maths P2
Old CSEC Geography MCQ Answers PDF
PDF
Old CSEC Geography MCQ Answers PDF
Data Response: Population, Economy and Settlement 2013
PDF
Data Response: Population, Economy and Settlement 2013
CSEC Info Tech 1993-2003 Solutions
PDF
CSEC Info Tech 1993-2003 Solutions
Scrap Sba
PDF
Scrap Sba
F5 P2 Climate - Vegetation
PDF
F5 P2 Climate - Vegetation
Eng B pp1 PDF
PDF
Eng B pp1 PDF
Calculus On Roller Coasters
PDF
Calculus On Roller Coasters
Physics: Completed Completed Completed Completed
PDF
Physics: Completed Completed Completed Completed
CXC CSEC Problem Solving
PDF
CXC CSEC Problem Solving
Subject MARKS (%) Term Term 1 2 3 1 2
PDF
Subject MARKS (%) Term Term 1 2 3 1 2
Grade 10 Physics - Term 3
PDF
Grade 10 Physics - Term 3