pcep entry level python certification exam

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/12

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 1:51 AM on 4/30/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

13 Terms

1
New cards

what is a binary code

fundamental language of computers represented by “bits” that correspond to on or off. represented in data instructions such as 0 and 1.

2
New cards

order of arithmetic operations in python

pemdas (paranthesis, exponents, mulitplication/division, addition/subtration)

3
New cards

what is a python interpretor

the core program that translates and executes the code you write

4
New cards

what is a python compiler

an internal component that translates human-readable source code (py.files) into a lower-level format such as byte-code

5
New cards

what is a sequence of ascii characters

a set of 7-bit numerical codes

6
New cards

what is true about tuples?

  • tuples can use the + operator meaning concatenation

  • tuples are immutable and cannot be changed when formed

  • the phrase tuple() can be used to produce an empty tuple

7
New cards

items method

returns a tuple in a (key,value) pair

8
New cards

a code written in a high-level programming language is called

a source code

9
New cards

“for x in dictionary” automatically iterates overs

the keys of a dictionary

10
New cards

to access the values of a dictionary

.values()

11
New cards

input values in python are automatically

strings

12
New cards

to retrive and assign a value in a dictionary

ex: charge = pizza[“Margherita Pizza”]

13
New cards

0 for i in range(3) prints what

[0,0,0]