PY-01-P1 Introduction to Programming Flashcards

1
Q

What is Machine Code?

A

It understands basic instructions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

are lists of instructions the computer performs in sequential order

A

Programs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

A program written in a high-level programming language

A

Source Code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

_____ is a high-level programming language. Easy to deploy and learn. Python’s design emphasizes code readability.

A

Python

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

____ is the original implementation of Python

A

Cpython

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

____ is an implementation of Python designed to run on the Java platform

A

Jython

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

is an implementation of Python that can be integrated in the .NET framework

A

IronPython

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Running the Python CLI interpreter in Windows is done using the___

A

CMD

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is IDE?

A

Integrated Development Environment. It is easier to use than CLI

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Python Data Types

A

String
Integer
Float
Boolean

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

____ renders an entire line as a comment

A

hashtag #

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

are used in the beginning and end of multiline comments

A

Three quotation marks (“””)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Standard Syntax Principles

A

Most programming languages are case-sensitive
Statements must be fully written
case-sensitive means that x is not the same as X, and John is not john

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Invisibile characters that make the code readable

A

Whitespace

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Python’s reserved words and instructions

A

Keywords

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

a mechanism that associates a block of code with a condition, loop or class

A

Identation