O Level Previous paper
Открыть в Telegram
https://youtube.com/@Satya806 सभी लोग इस Channel को Subscribe कर लो https://t.me/O_levelpaper Telegram group Quiz 👉https://t.me/o_levelsatya #M4-R5_Paper #M2R5 #O_Level #M3R5_Notes #M1R5Video #PaidClass_O_Level #O_Level_Notes #Satya_Sir
Больше751
Подписчики
Нет данных24 часа
+177 дней
+1630 день
Архив постов
Q(2)Write the problem to find the power of a number Using Recursion
☝️☝️☝️☝️☝️
# Q1 write a python program to multiply two number by repeated addition.
num1=int(input("enter the first number: "))
num2=int(input("enter the second number: "))
product=0
for i in range (1,num2+1):
product=product+num1
print("the multiply is :", product)
#write a program to sort python dictionaries by key or value
myDict = {'ravi': 10, 'rajnish': 9,
'sanjeev': 15, 'yash': 2, 'suraj': 32}
myKeys = list(myDict.keys())
myKeys.sort()
sorted_dict = {i: myDict[i] for i in myKeys}
#write the python program to find the power of a numnber using recursion
def power(base,exp):
if(exp==1):
return(base)
if(exp!=1):
return(base*power(base,exp-1))
base=int(input("Enter base: "))
exp=int(input("Enter exponential value: "))
print("Result:",power(base,exp))
यह प्रश्न नहीं आ रहे हो तो यहां से देख कर समझ लेना बाकी आता है तो मत देखना 🙏
Practical Exam से संबंधित
Questions यहां मिलेगा
यहां पर Join 👉हो जाओ🫵
M3-R5 👉https://t.me/Satya_O
M2-R5 👉https://t.me/Satya_olevel
M1-R5 👉https://t.me/Satya_O_level
M4-R5 👉https://t.me/OlevelSatyasir
O Level से संबंधित आप यहां Message
भी कर सकते हैं
☝️☝️☝️☝️
M4-R5 Viva Questions
1-Ardunio
📕📕📕📕📕📕
Arduino एक खुला स्रोत (ओपन-सोर्स) इलेक्ट्रॉनिक प्लेटफ़ॉर्म या बोर्ड है, जिसका उपयोग इलेक्ट्रॉनिक्स परियोजनाओं (projects) के निर्माण के लिए किया जाता है और जो आसानी से उपयोग होने वाले हार्डवेयर और सॉफ्टवेयर पर आधारित है।
2- Arduino digital pin में कितने नंबर होते हैं-14
👇👇👇👇👇👇
A0-A13
3-Arduino analog pin में कितने नंबर होते -6
👇👇👇👇👇
A0,A1,A2,A3,A4,A5
2-LED Full Form= light emitting Diode
3-sesior -
🤔🤔🤔🤔🤔🤔🤔
A sensor is a device that produces an output signal for the purpose of sensing a physical phenomenon
(सेंसर एक इनपुट डिवाइस हैं जो बाहर भौतिकता से कोई गतिविधि को ग्रहण करता हैं और आउटपुट(सिग्नल) देता हैं.)
4- iot-
🫣🫣🫣🫣🫣🫣🫣🫣
इंटरनेट ऑफ थिंग्स (IoT) (Internet of Things) वायरलेस नेटवर्क के माध्यम से डिजिटल उपकरणों, लोगों, मशीनों, उपकरणों और अन्य वस्तुओं को एक दूसरे से जोड़ने का काम करता है
5-type of sensor in iot
🤩🤩🤩🤩🤩🤩🤩
pressure, temperature, humidity, moisture, gas sensors, sound sensors
6-cloud
😇😇😇😇😇😇😇
An IoT cloud is a massive network that supports IoT devices and applications
(Cloud Computing एक ऐसी टेक्नोलॉजी है जिसमें data और program को इंटरनेट में स्टोर और एक्सेस किया जाता है.)
7-तीन Sensor Device का नाम बताएं
🧐🧐🧐🧐🧐🧐🧐
1-Temperature Sensors
2-Proximity Sensors
3-Light Detector Sensor
4-Smoke Detector Sensor
8-IPV4 and IPV6
✡✡✡IPV6✡✡
IPv6 का पूरा नाम internet protocol version 6 है. यह internet protocol (IP) का सबसे नया version है तथा इसमें IPv4 से ज्यादा बेहतर तथा advanced विशेषताएं (features) है. इसे IETF (internet engineering task force) ने 1998 में विकसित किया था.
IPv6 का साइज़ 128 bits का होता है और यह भविष्य में IPv4 की जगह कार्य करेगा. इस समय यह IPv4 के साथ मिलकर कार्य करता है. IPv6 का example नीचे दिया गया है.
उदाहरण – 2001:0db8:0000:0000:0000:ff00:0042:7879
✡✡✡IPV4✡✡✡✡
IPv4 का पूरा नाम internet protocol version 4 है, यह इन्टरनेट प्रोटोकॉल का चौथा version है. यह एक connection less प्रोटोकॉल है जिसका प्रयोग packet switched layer नेटवर्क्स (जैसे:- ethernet) में किया जाता है. इसे 1981 में विकसित किया गया था.
इसका प्रयोग नेटवर्क में data packets को होस्ट डिवाइस से डेस्टिनेशन डिवाइस तक deliver करने में किया जाता है. इसके अलावा इसका इस्तेमाल एक network में devices को identify करने के लिए किया जाता है.
IPv4 में IP address 32 बिट्स का होता है. इसे 8 bits के 4 blocks में विभाजित (divide) किया जाता है. नीचे IPv4 का उदाहरण दिया गया है.
Example – 166.93.28.10
9-MQTT-Message Queuing Telemetry
Transport
10-Simplex(ex-keyboard),
half -duplex(ex-वाकि-टाकि ( walkie talkie)
,Full-duplex(ex-
📱 Mobile phone)
M4-R5 Viva Questions
https://t.me/o_levelsatya
☝️☝️☝️☝️☝️☝️☝️☝️
कल मेरी एक बात याद रखना
आपका Program Run करने
पर Error आ रहा है
आपने उसी Program को Copy
पर लिख दिया
और साथ में उसका Output
भी लिखना बहुत जरूरी है
Note-Output हमेशा सही लिखना
क्योंकि Examiner आपके
Output पर पहले जाता है बाद
में आपकी Program देखता है
अभी 5min के अन्दर Video Upload हो जायेगा
M3-R5 Practical Questions/Viva-questions Python किस प्रकार Questions
पुछा जा सकता है Exam में
जाकर देख लेना 🙏
Q1. Write a program using javascript sum and multification input given by user in web page
Q2 . Create a html form
Name, email id, password, phone no and using form validation in email id, phone no, password,.
What is form validation define the web page.
Q3. Which type of border style properties create pragraph using every border style properties.
M2 practical (Amit Yadav)
Case-3
यह एक String का Program है use to Counter
इसमें एक बार str को Print करता हूं फिर देख
Output कुछ और आ रहा है
Case-2
यह एक String का Program है use to Counter
इसमें एक बार Counter को Print करता हूं फिर देख
Output कुछ और आ रहा है
Уже доступно! Исследование Telegram 2025 — ключевые инсайты года 
