Posts

JSS2 COMPUTER QUIZ

JSS 2 ICT Quiz - Complete Computer Systems Test JSS 2 ICT Quiz Complete Computer Systems Knowledge Test How to Use This Quiz: Select a topic from the navigation buttons Read each question carefully and try to answer it yourself Click the "Reveal Answer" button to check your understanding Use the navigation buttons to move between topics Challenge yourself with both basic and HOT (Higher Order Thinking) questions System Components Hardware Software People-ware Operating Systems Number Bases Conversion Storage Units Classification ...

UNITS OF STORAGE IN COMPUTER -JH2

Units of Storage in Computer — Student Guide (Interactive Q&A) STOR Units of Storage in Computer — Interactive Guide Bits, Bytes, KB, MB, GB... conversions, worked examples and clickable practice answers for students. Introduction A number system is a collection of symbols (digits) used to represent numbers, and a unit of storage tells us how much digital information can be held. Computers use bits and bytes to measure and store data. This guide covers the common storage units, how to convert between them, and many worked examples. Basic Units — Definitions Bit (b): Short for binary digit. The smallest unit of data; value is 0 or 1. Byte (B): 1 byte = 8 bits. Used to store a single character (letter, number, symbol). Kilobyte (KB): Usually 1 KB = 1024 bytes in computing contexts. Megabyte (MB): 1...

COMPUTER DATA CONVERSION SS2

Computer Data Conversion (SSS 2 Notes) | CMPNOTE Blog 💻 Computer Data Conversion (SSS 2) Source: CMPNOTE Blog Introduction Computers handle vast amounts of data every second. To truly understand how a computer operates, it’s important to know how data is stored, transferred, and processed internally. This topic introduces the key components and processes that make data handling and instruction execution possible in a computer system. Definition of Terms 1. Data Conversion Data conversion is the process of transforming computer data from one format to another. It ensures that information can be processed or transferred efficiently, such as converting text into binary or moving files between systems. 2. Registers Registers are tiny, high-speed storage units located within the Central Processing Unit (CPU). They temporarily hold instructions, data, or addresses during processing. Registers operate under the control of the Control Unit (CU) and interact with...

BASIC Programming III: One-Dimensional Array

💻 BASIC PROGRAMMING III: ONE-DIMENSIONAL ARRAY 📘 Introduction In programming, especially when using BASIC, we often need to store and process a group of related data values. Instead of creating many individual variables, we can use a structure called an array . Arrays make programs shorter, more efficient, and easier to manage. 🔹 What is an Array? An array is a collection of data items of the same type stored under one variable name. Each item in the array is called an element , and each element is identified by a unique number known as its index or subscript . Example: If we want to store the marks of 5 students, instead of using M1, M2, M3, M4, M5 , we can simply use one array variable M(5) . 🧩 Types of Arrays There are two main types of arrays: One-Dimensional Array: Stores data in a single line or list. Example: student scores, prices, names. Two-Dimensional Array: Stores data in rows and columns (like a table or spreadsheet). This lesson focuses o...

HIGH LEVEL LANGUAGES -HIGH SCHOOL

Definition of Terms: Program, Computer Language & Programming Language PL Definition of Terms: Program, Computer Language & Programming Language For SS1 Students — full coverage: generations of languages, examples, advantages & disadvantages, activities and practice. Introduction In the world of computing, every operation you see your computer perform — from simple arithmetic to designing a website — is guided by programs written in different computer languages . Understanding how these languages work is the foundation of programming and software development. This note explains what a program , computer language , and programming language are, and how they evolved from early machine code to modern high-level languages like Python and Java. Definition of a Program A program is a set of instructions written in a computer langu...

COMPUTER PROGRAM, LANGUAGE, AND PROGRAMMING

Program, Computer Language & Programming Language PL Program, Computer Language & Programming Language — Student Guide Clear definitions, types, examples, how programs work, flowcharts, pseudocode and practice questions with answers. What is a Program ? A program is a sequence of instructions written to perform a specific task on a computer. Think of it as a recipe: it lists steps (instructions) the computer follows to produce a result (like baking a cake). Example: A calculator app is a program that performs arithmetic when you press buttons. Key parts of a program Instructions/Statements: The individual steps the computer executes (e.g., read input, add numbers, display output). Variables: Storage containers in the program (names that hold values, like score or age ). Data types: Define what kind of data a...