This video explains the in class exercise and how you should approach the content for class today (Monday 11th October 2021).
© 2021 Vedesh Kungebeharry. All rights reserved.
This video explains the in class exercise and how you should approach the content for class today (Monday 11th October 2021).
© 2021 Vedesh Kungebeharry. All rights reserved.
Consider the following tasks below:
Task: a solution is required which prompts the user to enter a person’s name their gender and birth year. The solution should output a message stating the The person’s name, wheather they are an adult, teenager or child, as well as their gender.
E.g, If the user enters Khan Smith, male, 2000; the solution would output :
Khan Smith is an male adult who will be 21 years old this year.
or a similar message.
This solution was created in Flowgorithm (Download files here):

Start
// Here we initialize variables for first use....
personName = "Unknown"
sex = "Unknown"
currentYear = 2021
birthYear = -9999
// end initialization.
// Get the data from the user....
output "Please enter the person's name"
input personName
output "Please enter the person's Year of Birth"
input birthYear
output "Please enter the person's sex, either M for male, or F for Female"
input sex
// start to process data...
// Determine the sex form the entered character....
if sex = "M" then
sex = " is a male "
else
sex = " is a female "
end If
age = currentYear - birthYear
if age > 19 then
personType = " adult "
else
if age > 12 then
personType = " teenager "
else
personType = " child "
end If
end If
result = personName + sex + personType + "who will be " + age + " years in " + currentYear
output result
output "thanks for using my program!"
// © 2021 Vedesh Kungebeharry. All rights reserved.
End
© 2021 Vedesh Kungebeharry. All rights reserved.
See the following objective content and related videos.
These videos were chosen for each topic because they cover the subject matter in a relevant context. They definitely were not created specifically for the CSEC Syllabus, however , they do address the fundamental concepts in real world scenarios.
| 10. troubleshoot basic computer hardware problems; | Cable problems (for example, loose cables). Monitor problems (for example, improperly adjusted monitor controls). Printer problems (for example, changing printer cartridges). Battery problems (for example, loose or dead battery). | Optional : This video presents a comprehensive and structured troubleshooting procedure along with managing changes that may result from the problems that you are trying to solve: https://www.youtube.com/watch?v=3PDn-Zteckc Monitor: https://www.youtube.com/watch?v=mR-Ia1WA7RE Printer: https://www.youtube.com/watch?v=DD1Cgpv7aWc Common Hardware Problems (Booting problems, Power problems can be found within sections of this video) : https://www.youtube.com/watch?v=p4VxERfTHgU |
© 2021 Vedesh Kungebeharry. All rights reserved.
This video serves as a demonstration on how a flowchart can be used to solve a problem using a sequence of instructions. A brief counter example is demonstrated using a selection statement (rhombus) to provide contrast
© 2021 Vedesh Kungebeharry. All rights reserved.
These are some videos recorded on Thursday 23rd Sept 2021. (Posted 28th Sept 2021)
© 2021 Vedesh Kungebeharry. All rights reserved.
Download the files used in the video here:
https://drive.google.com/drive/folders/1jhqukng__ZWMfGsZ4tKBG9bmGpTxMNRb?usp=sharing
Use the file “00 Draft” to follow along.
© 2021 Vedesh Kungebeharry. All rights reserved.
See the image below :

Image: “01 21St Century ICT – Ergonomics-U.png”
Alternatively, there’s a video explaining how to access the content:
Visit https://21stcenturyict.com/21st-century-ict/ to order the app online.
Call :
TT: 868-373-9780
US: 305-874-0365
Locally, the app is also available in RIK Services Trinidad Book World . (http://rikservices.net/)
© 2021 Vedesh Kungebeharry. All rights reserved.
At this stage groupings of students are finalized; It is necessary to get our project started.
You will need to communicate the Idea/Scenario/context of your overall project to your teacher.
Write a few sentences describing the Idea/Scenario/context of your overall project. Describe the entity (Shop/business/company) as well as what activities occur with the entity.
At various parts of your SBA, you may be assisting in facilitating an event , single activity or solving a day to day problem. Be sure to list the various productivity tools and how you will assist your entity.
THIS TASK IS MEANT TO COMMUNICATE A BRIEF AND GENERAL IDEA TO YOUTR TEACHER. YOU ARE NOT EXPECTED TO START SOLVING THE PROBLEM IN THIS TASK, ONLY TO PROVIDE ENOUGH DETAIL THAT CAN BE EXPRESSED IN A 3-5 MINUITE CONVERSATION
An example template is shown below:
Description of entity:
Description of entity:
Our School’s Scout Group.
The Scouts meet weekly and plan activities. The scouts have items that they use for various events including camping, fund raising and volunteer seminars
© 2021 Vedesh Kungebeharry. All rights reserved.
See the video from class today:
© 2021 Vedesh Kungebeharry. All rights reserved.
© 2021 Vedesh Kungebeharry. All rights reserved.