lesson 2 Flashcards

1
Q

Python is a widely-used, _______, ______, ______ programming language with ________, used for
_______ programming.

A
  • Interpreted, Object Oriented, High Level
  • Dynamic Semantics
  • General Purpose
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

The Python Institute believes that __________

A

Python is the language of today
and tomorrow

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

Python was created by ________, in ____, and first released publicly on _______

A
  • Guido van Rossum
  • 1989
  • February 20, 1991.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

name of the Python programming language comes from an _____, called ______

A
  • old BBC television comedy sketch
  • Monty Python’s Flying Circus.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

In ____ ____, programming language designed to be used for __ in the ____ of _____

A
  • general purpose
  • writing software
  • widest variety
  • application domain
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

In _____, designed to ______ programming, high-level source code contains _____ that is later converted into ______, which can be recognized and run by a specific _____.

A
  • High-Level
  • simplify computer
  • easy-to-read syntax
  • low-level language
  • CPU
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

In _____, type of programming language for which most of its _____ _______ and _____, without previously compiling a program into machine- language instructions.

A
  • interpreted
  • implementations execute instructions
  • directly and freely
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

In _____, Python supports ______ Programming, It provides us with a ___ of ___ or ___ of Python code.

A
  • Interactive
  • interactive mode
  • quick way
  • running blocks
  • a single line
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

In ______, It allows us to develop ____ using an _____. In Python, we can easily ___ and ___ , classes and _____.

A
  • Object-Oriented
  • applications
  • Object-Oriented approach
  • create and use
  • objects
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

In Easy to Learn and Use, It is a ____ and ____ programming language.

A
  • developer-friendly
  • high-level
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

In Cross-Platform, Python can run equally on different plat forms such as ___, ____, ____, ____, etc. So, we can say that Python is a portable language.

A
  • Windows
  • Linux
  • Unix
  • Macintosh
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

In Integrated, It can be easily integrated with languages like ___, ___, ___, and more.

A
  • C
  • C++
  • JAVA
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Python has a ____ of execution. It is slower than ___, ___, ___ because it works with an _____, not the compiler.

A
  • slow speed
  • C, C++, and Java
  • interpreter
  • compiler
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Python language is seen as _____ for ____ development and ____ development.

A
  • less suitable
  • mobile, game
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Python’s data base access layer is _____ and _____ in comparison to popular technologies like ____ and ____.

A
  • primitive, underdeveloped
  • JDBC and ODBC
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Python has _____ consumption and is not used in web browsers because it is not secure.

A
  • high memory
17
Q

Python is a _____ language, so the data type of a variable can change anytime. A variable containing an integer number may hold a string in the future, which can lead to _____.

A
  • dynamically-typed
  • Runtime Errors