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 From a White Sheet
Beginner Python From a White Sheet 정확히 아홉 명의 학생이 이미 걸어간 경로입니다. 빈 파일에서 시작해 질문을 하고, 답을 검사하고, 잘못된 입력을 거부하는 프로그램까지. 프로그래밍 사전 경험 없음. 수학 필요 없음. 의도적으로 반복해서 부술 것입니다.
IGCSE and GCSE Computer Science — 실제로 채점되는 이론
Intermediate IGCSE and GCSE Computer Science — 실제로 채점되는 이론 시험장에서도 살아남는 이론 반쪽. 메모리 계층 구조와 부팅 시 실제로 일어나는 일. 컴파일러, 인터프리터, 어셈블러, 그리고 그럴듯해 보이지만 점수를 얻지 못하는 답. 스프레드시트에서 시작해서 키와 정규화까지의 데이터베이스. Enter를 누르는 순간부터 페이지가 표시될 때까지의 전체 DNS 경로. 시스템 소프트웨어, 그리고 시험지에서 가장 쉬운 10점인 윤리 및 법률 섹션.
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.