code computer-science

Programming for the Exam — Python Answers That Score

The programming half of the paper, taught at exam pitch. Pseudocode translated both ways, because the mark scheme is written in a notation nobody practises. Trace tables done column by column, including the ones with a loop and a condition inside it. Linear and binary search, bubble and insertion sort, what each costs and the comparison questions boards love. Validation against verification, and the boundary test data everybody forgets. Procedures against functions, and a systematic method for finding your own error with four minutes left.

  • trending_upIntermediate
  • schedule6h 38m
  • menu_book12 уроков
  • publicEnglish
  • workspace_premiumBasic
Programming for the Exam — Python Answers That Score

Брифинг

A learner sat down with me having written working Python for a year and having scored badly on every programming question he had ever attempted. Nothing was wrong with his code. The exam had never asked him for code. That is what this segment fixes. Exam boards mark pseudocode, not Python, and the notation is theirs — with ENDIF and ENDWHILE and an inclusive FOR i ← 1 TO 5 that means something quietly different from range(1, 5). Nobody practises the translation, everybody assumes their Python habits will carry, and the habits do not carry. So you will translate in both directions until it is dull. You will rule trace tables with an actual ruler and fill them a line at a time, including the rows where nothing changes — which is where the marks are and which is the first discipline to go under time pressure. You will trace a binary search on paper and count the comparisons, then answer the question boards keep asking: is it worth sorting a list of a thousand items so you can search it once? You will sort index cards with your hands before you write a sort in code. And you will learn to find a fault in your own program by halving it, systematically, rather than by reading it again harder — because a systematic method still works when you are frightened and reading harder does not. Every module ends with a timed drill marked the way an examiner marks it: what earns the mark, and the answer that looks right and earns nothing. Prerequisite: you can already write small Python programs — variables, if, loops, def, input(). This segment does not teach the language from zero. If it is still new, do Python From a White Sheet first; it is free and it is the exact sequence this one assumes. Written against the published topic lists for CAIE IGCSE 0478 and the UK GCSE Computer Science specifications, with notes for IB. The boards differ here more than anywhere — especially on pseudocode conventions, and on whether arrays are indexed from 0 or from 1 — and where they differ this segment names the difference and sends you to your own specification. Every question is original and modelled on the shape of exam questions; no past paper, mark scheme or specification text is reproduced, and Korra Academy is not affiliated with, or endorsed by, any exam board.

План курса · 4 модулей

lockОткрывается с доступом
  1. 01 Their Notation, and Your Table
    3 уроков·1h 35m

    The exam does not mark Python. Almost none of them do. You will sit a paper written in a notation that looks like BASIC assembled by a committee, and the mark scheme is written in it too. Two jobs,…

  2. 02 The Structures They Give Marks For
    3 уроков·1h 40m

    Three separate IF statements are not an ELSE IF chain, and reversing the order of the conditions breaks it a second way. Both are one-line bugs, both are favourite exam questions, and both run…

  3. 03 The Standard Algorithms
    3 уроков·1h 40m

    This module is done with your hands first. Numbered cards on a desk for the halving, a row of cards for the bubble pass, a hand of cards for the insertion. Every one of these algorithms was a…

  4. 04 Subprograms, Testing, and Your Own Errors
    3 уроков·1h 43m

    Python has one keyword, def, and the exam has two things with two keywords. The whole distinction is one question: does a value come back to the place that called it? Learners who only write Python…

Часто спрашивают

Что я изучу в «Programming for the Exam — Python Answers That Score»?
The programming half of the paper, taught at exam pitch. Pseudocode translated both ways, because the mark scheme is written in a notation nobody practises. Trace tables done column by column, including the ones with a loop and a condition inside it. Linear and binary search, bubble and insertion so
Нужен ли мне предыдущий опыт?
Перед началом «Programming for the Exam — Python Answers That Score» рекомендуются некоторые предыдущие знания.
Сколько времени занимает «Programming for the Exam — Python Answers That Score»?
«Programming for the Exam — Python Answers That Score» включает 4 модулей и 12 уроков. Вы учитесь в своём темпе.
Как мне получить доступ?
«Programming for the Exam — Python Answers That Score» входит в любую платную подписку.

Ещё в Программирование

Binary, Hex and Data Units
Beginner Binary, Hex and Data Units The topic that costs more marks than any other on the paper, taught by hand. Bits and bytes, binary and hex in all six directions, the 1000-versus-1024 trap, file sizes, transmission times, overflow, two's complement and character sets. Every module ends in a timed drill marked the way an examiner marks it.
First Program — Scratch for ages 5–9
Beginner First Program — Scratch for ages 5–9 Nine Scratch blocks, three sessions of about twenty-five minutes, and one small program a child of five to nine builds themselves. Written for the parent sitting beside them: what to click, what they will get stuck on, what to say when it goes wrong, and when to keep your hands off the mouse.
AI без шумихи
Beginner AI без шумихи Что модель действительно делает, когда отвечает вам, почему это выглядит как мышление, почему она придумывает цитаты и механика стоимости, которую почти никто не объясняет: чат отправляет всю беседу заново на каждый ход. Вы произведёте расчёты сами.
Python с чистого листа
Beginner Python с чистого листа Точная последовательность, которую уже прошли девять студентов: от пустого файла к программе, которая задаёт вопросы, проверяет ответы и отклоняет неправильный ввод. Без опыта в программировании. Без математики. Вы будете её ломать намеренно.
IGCSE и GCSE Computer Science — теория, которую действительно оценивают
Intermediate IGCSE и GCSE Computer Science — теория, которую действительно оценивают Теоретическая часть экзамена, которую преподают так, чтобы она помогла на экзамене. Иерархия памяти и что на самом деле происходит при загрузке. Компиляторы, интерпретаторы и ассемблеры, включая ответ, который звучит правильно, но не даёт баллов. Базы данных: от электронных таблиц до ключей и нормализации. DNS и полный путь от нажатия Enter до появления страницы. Системное ПО и раздел об этике и праве, который даёт самые лёгкие десять баллов в работе.
AI at Your Desk
Beginner AI at Your Desk You have an office job, you are losing hours a week, and you do not care how any of this works. Four tasks from your own week, each done twice and timed. A fifth you should not have handed over. You finish with real work done and a page of your own numbers you can show someone.