Single-choice and multiple-choice questions, drag & drop, gap fill | Python 3.x
Passing Score:
70%
Full Exam Price:
USD 59
Delivery Channel:
OpenEDG Testing Service
Exam Syllabus
Exam consists of five blocks. Each block tests your knowledge on a specific block.
Exam Block Number
Topic covered
Percentage of questions
Exam Block # 1
Basic Concepts
17%
Exam block #2
Data Types, Evaluations, and Basic I/O Operations
20%
Exam Block #3
Control Flow – loops and conditional blocks
20%
Exam block #4
Data Collection – lists, tuples, and dictionaries
23%
Exam block #5
Functions
20%
Exam Block #1: Basic concepts
You should know following concepts for this exam block
fundamental concepts: interpreting and the interpreter, compilation and the compiler, language elements, lexis, syntax and semantics, Python keywords, instructions, indenting
Exam block #4: Data Collection – lists, tuples, and dictionaries
You should know following concepts for this exam block
simple lists: constructing vectors, indexing and slicing, the len() function
lists in detail: indexing, slicing, basic methods (append(), insert(), index()) and functions (len(), sorted(), etc.), del instruction, iterating lists with the for loop, initializing, in and not in operators, list comprehension, copying and cloning
lists in lists: matrices and cubes
tuples: indexing, slicing, building, immutability
tuples vs. lists: similarities and differences, lists inside tuples and tuples inside lists
dictionaries: building, indexing, adding and removing keys, iterating through dictionaries as well as their keys and values, checking key existence, keys(), items() and values() methods
strings in detail: escaping using the \ character, quotes and apostrophes inside strings, multi-line strings, basic string functions.
Exam block #5: Functions
You should know following concepts for this exam block
defining and invoking your own functions and generators
return and yield keywords, returning results,
the None keyword,
recursion
parameters vs. arguments,
positional keyword and mixed argument passing,
default parameter values
converting generator objects into lists using the list() function
name scopes, name hiding (shadowing), the global keyword