O Level Important Question for Python
हेलो दोस्तों आज की पोस्ट में आप सबको ओ लेवल पाइथन एग्जाम से रिलेटेड बहुत ही महत्वपूर्ण क्वेश्चन और आंसर डाले जा रहे हैं जो आपके एग्जाम में आ सकते हैं इन्हें जल्दी से आप पढ़ लीजिए यह डेफिनेटली आपके एग्जाम में आएंगे और अपना अनुभव हमारे साथ जरूर शेयर करिएगा
Q. Make a flow chart to input any number and find its factorial and print.
Q :Explain the role of linker and loader in compilation
Linker एक system software है जो binary language में प्राप्त code को machine पर चलने लायक machine code में बदल देता है। details
अब linker के इस काम के बाद आगे का काम loader का होता है। linker के द्वारा generate किये गए machine code को memory में load करने का काम loader का ही होता है।
loader, प्रोग्राम के virtual address को फिजिकल address में बदल देता है, जिसके परिणामस्वरूप फ़ाइल व फोल्डर तैयार हो जाते है। details
Q :What is a NumPy array. How they are different from lists?
NumPy को Array के साथ काम करने के लिए बनाया गया है इसको यूज़ करने के लिए ndarray ने का प्रयोग किया जाता है
import numpy as np
arr = np.array([1, 2, 3, 4, 5])
print(arr)
print(type(arr))
Difference between numpy vs list
A common beginner question is what is the real difference here. The answer is performance. Numpy data structures perform better in:
- Size - Numpy data structures take up less space
- Performance - they have a need for speed and are faster than lists
- Functionality - SciPy and NumPy have optimized functions such as linear algebra operations built in
List
print(thislist)