This page includes soft copies of textbooks for JHS. The soft copies provided here are for educational purposes only and therefore meant to serve as a guide for the teacher.
Click on the links below to download.
Basic 7 Integrated Science textbook
Basic 7 Social Studies textbook
Basic 7 Golden Maths Complete Textbook
Check this out: Textbooks for Primary
Basic 7 Creative Arts and Design textbook
Click on the links below to join our social media platforms so you don’t miss out on important lesson notes and other documents:
Whatsapp Group For Lesson Notes and GES Docs
Telegram Group For Lesson notes and GES docs
Credit to all respective authors






if == " main ": if len(sys.argv) != 4: print("Usage: python make_xdelta_patch.py <old_file> <new_file> <patch_file>") sys.exit(1) create_patch(sys.argv[1], sys.argv[2], sys.argv[3])
The most common graphical interface for applying patches.
print(f"Patch applied: output_file") print(f"New file size: len(new_data) bytes (expected new_len)")
for op in patch_ops: if op[0] == 'COPY': f_patch.write(b'\x01') # opcode COPY f_patch.write(op[1].to_bytes(8, 'little')) # position f_patch.write(op[2].to_bytes(4, 'little')) # length else: # ADD f_patch.write(b'\x02') # opcode ADD f_patch.write(bytes([op[1]])) # single byte