Please enable JavaScript to use CodeHS

Standards Mapping

for PCEP-30-02 Exam

15

Standards in this Framework

15

Standards Mapped

100%

Mapped to Course

Standard Lessons
PCEP-30-02 1.1
Understand fundamental terms and definitions: interpreting and the interpreter, compilation and the compiler; lexis, syntax, and semantics.
  1. 1.8 Fundamental Terms and Definitions
PCEP-30-02 1.2
Understand Python’s logic and structure: keywords; instructions; indentation; comments.
  1. 1.1 Printing in Python
  2. 1.2 Variables and Types
  3. 1.7 Comments
  4. 1.8 Fundamental Terms and Definitions
PCEP-30-02 1.3
Introduce literals and variables into code and use different numeral systems: Boolean, integers, floating-point numbers; scientific notation; strings; binary, octal, decimal, and hexadecimal numeral systems; variables; naming conventions; implementing PEP-8 recommendations.
  1. 1.2 Variables and Types
  2. 1.5 Scientific Notation
  3. 1.9 Number Bases
  4. 2.1 Booleans
  5. 2.5 Floating Point Numbers and Rounding
PCEP-30-02 1.4
Choose operators and data types adequate to the problem: numeric operators: ** * / % // + –; string operators: * +; assignment and shortcut operators; unary and binary operators; priorities and binding; bitwise operators: ~ & ^ | << >>; Boolean operators: not, and, or; Boolean expressions; relational operators ( == != > >= < <= ); the accuracy of floating-point numbers; type casting;
  1. 1.10 Bitwise Operators
PCEP-30-02 1.5
Perform Input/Output console operations: the print() and input() functions; the sep= and end= keyword parameters; the int() and float() functions.
  1. 1.1 Printing in Python
  2. 1.3 User Input
  3. 2.5 Floating Point Numbers and Rounding
  4. 4.2 Functions and Parameters
PCEP-30-02 2.1
Make decisions and branch the flow with the if instruction: conditional statements: if, if-else, if-elif, if-elif-else; multiple conditional statements; nesting conditional statements
  1. 2.1 Booleans
  2. 2.2 If Statements
  3. 2.3 Comparison Operators
  4. 2.4 Logical Operators
PCEP-30-02 2.2
Perform different types of iterations: the pass instruction; building loops with while, for, range(), and in; iterating through sequences; expanding loops with while-else and for-else; nesting loops and conditional statements; controlling loop execution with break and continue
  1. 3.1 While Loops
  2. 3.2 For Loops
  3. 3.3 Break and Continue
  4. 3.5 Else Clauses on Loops
PCEP-30-02 3.1
Collect and process data using lists: constructing vectors; indexing and slicing; the len() function; list methods: append(), insert(), index(); functions: len(), sorted(); the del instruction; iterating through lists with the for loop; initializing loops; the in and not in operators; list comprehensions; copying and cloning; lists in lists: matrices and cubes
  1. 6.2 Lists
  2. 6.3 For Loops and Lists
  3. 6.4 List Methods
  4. 6.5 More List Methods
PCEP-30-02 3.2
Collect and process data using tuples: tuples: indexing, slicing, building, immutability; tuples vs. lists: similarities and differences; lists inside tuples and tuples inside lists.
  1. 6.1 Tuples
  2. 6.2 Lists
PCEP-30-02 3.3
Collect and process data using dictionaries: dictionaries: building, indexing, adding and removing keys; iterating through dictionaries and their keys and values; checking the existence of keys; methods: keys(), items(), and values().
  1. 7.4 Dictionaries
PCEP-30-02 3.4
Operate with strings: constructing strings; indexing, slicing, immutability; escaping using the \ character; escaping using the \ character; multi-line strings; basic string functions and methods.
  1. 1.6 String Operators
  2. 5.1 Indexing
  3. 5.2 Slicing
  4. 5.3 Immutability
  5. 5.4 Strings and For Loops
  6. 5.5 The in Keyword
  7. 5.6 String Methods
PCEP-30-02 4.1
Decompose the code using functions: defining and invoking user-defined functions and generators; the return keyword, returning results; the None keyword; recursion.
  1. 1.2 Variables and Types
  2. 4.1 Functions
  3. 4.2 Functions and Parameters
  4. 4.3 Namespaces in Functions
  5. 4.4 Functions and Return Values
  6. 4.5 Recursion
PCEP-30-02 4.2
Organize interaction between the function and its environment: parameters vs. arguments; positional, keyword, and mixed argument passing; default parameter values; name scopes, name hiding (shadowing), and the global keyword.
  1. 4.1 Functions
  2. 4.2 Functions and Parameters
  3. 4.3 Namespaces in Functions
  4. 4.4 Functions and Return Values
PCEP-30-02 4.3
Python Built-In Exceptions Hierarchy: BaseException, Exceptions, SystemExit, KeyboardInterrupt, abstract exceptions, ArithmeticError, LookupError, IndexError, KeyError, TypeError, ValueError
  1. 4.6 Introduction to Exceptions
  2. 4.7 Exception Propagation
  3. 7.4 Dictionaries
PCEP-30-02 4.4
Basics of Python Exception Handling: try-except / the try-except Exception; ordering the except branches; propagating exceptions through function boundaries; delegating responsibility for handling exceptions.
  1. 4.6 Introduction to Exceptions
  2. 4.7 Exception Propagation