Skip to content

Commit 19527a7

Browse files
author
Amogh Singhal
authored
Update Python_Programming_Quiz.md
1 parent 7eaca19 commit 19527a7

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

Python_Programming_Quiz.md

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,23 @@ Methods | Description |
8282
`find()` | Searches the string for a specified value and returns the position of where it was found |
8383

8484
#### 5. Although Python is riding the hype wave pretty well since its high usage in fields of AI , what are some of the pitfalls of Python as a language? <br>
85-
1. __Speed__ Python is __slower__ than C or C++. But of course, Python is a high-level language, unlike C or C++ it's not closer to hardware.
85+
1. __Speed:__ Python is __slower__ than C or C++. But of course, Python is a high-level language, unlike C or C++ it's not closer to hardware.
8686

87-
2. __Mobile Development__ Python is not a very good language for __mobile development__ . It is seen as a weak language for mobile computing.
87+
2. __Mobile Development:__ Python is not a very good language for __mobile development__ . It is seen as a weak language for mobile computing.
8888

89-
3. __Memory Consumption__ Python is not a good choice for __memory intensive__ tasks. Due to the flexibility of the data-types, Python's memory consumption is also __high__.
89+
3. __Memory Consumption:__ Python is not a good choice for __memory intensive__ tasks. Due to the flexibility of the data-types, Python's memory consumption is also __high__.
9090

91-
4. __Database Access__ Python has limitations with __database access__ . As compared to the popular technologies like JDBC and ODBC, the Python's database access layer is found to be bit underdeveloped and primitive .
91+
4. __Database Access:__ Python has limitations with __database access__ . As compared to the popular technologies like JDBC and ODBC, the Python's database access layer is found to be bit underdeveloped and primitive .
9292

93-
5. __Runtime Errors__ Python programmers cited several issues with the __design__ of the language. Because the language is __dynamically typed__ , it requires more testing and has errors that only show up at __runtime__ .
93+
5. __Runtime Errors:__ Python programmers cited several issues with the __design__ of the language. Because the language is __dynamically typed__ , it requires more testing and has errors that only show up at __runtime__ .
94+
95+
#### 6. What are the benefits of Python ? <br>
96+
- Beginner's Language :
97+
- Simple and Easy to Learn
98+
- Interpreted Language
99+
- Cross-platform language
100+
- Free and Open Source
101+
- Object-Oriented language
102+
- Extensive Libraries
103+
- Integration with other languages
104+
- Databases Connectivity interfaces to all commercial databases

0 commit comments

Comments
 (0)