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
إظهار المزيد732
المشتركون
لا توجد بيانات24 ساعات
-17 أيام
-130 أيام
أرشيف المشاركات
Practical & Theory (M.C.Q)
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
Note-O Level Pdf यहां पर मिलेगा
☝️☝️☝️☝️
जिसका भी प्रोग्राम में कोई भी गलती आ रही है
आप उसका Screen shot Or Video हमें WhatsApp करें - 7068236218
Note- जिसका भी Practical Exam है आप सभी कोशिश करें कि ज्यादा से ज्यादा आप प्रोग्राम खुद बनाकर अभ्यास करें क्योंकि आप वहां पर वहीं प्रश्न कर पायेंगे जिसका आपने अभ्यास किया है
कोशिश करें कि एक ही प्रश्न को बार-बार करने का प्रयास करें ✍
Procedure for Downloading CCC Certificate to M1-R5/M1-R5.1/A1-
R5/A1-R5.1 qualifiers
For downloading the certificate candidates should select the
option, ‘Regular Certificate’ and prefix, ‘CCC’ before their O/A Level
Registration Number and submit in the field of the Roll No. (For e.g.
Candidate having registration number 66666 should use CCC66666 against
Roll No). For Exam Year and Exam Month field, candidate should select their
respective M1-R5/M1-R5.1/A1-R5/A1-R5.1 module's Exam Year and Exam
Month respectively.
Note- Girls Group में केवल Girls ही जुड़े नहीं आपको
Group में जुड़ने का परमिशन नहीं दिया जाएगा 👆
Follow the O Level Previous Paper Group channel on WhatsApp: https://whatsapp.com/channel/0029VaCCbBZ1NCrSlCNxfB34
Q(3)
Write down an Arduino program to interface a temperature
monitoring system in a public environment which will display
information on 16*2 LCD “Fever” if temp is greater than 99.6
degrees and “No fever” if the temp.is below 99.6 degrees. (Use
of DHT11, Ultrasonic motion sensor is permissible).
Solution
#include <LiquidCrystal_I2C.h>
#include <DHT.h>
#define I2C_ADDR 0x27
#define LCD_COLUMNS 16
#define LCD_ROWS 2
LiquidCrystal_I2C lcd(I2C_ADDR, LCD_COLUMNS,
LCD_ROWS);
#define DHTPIN 2
#define DHTTYPE DHT11
DHT dht(DHTPIN, DHTTYPE);
#define TRIG_PIN 3
#define ECHO_PIN 4
void setup() {
lcd.begin(LCD_COLUMNS, LCD_ROWS);
lcd.backlight();
dht.begin();
pinMode(TRIG_PIN, OUTPUT);
pinMode(ECHO_PIN, INPUT);
Serial.begin(9600);
void loop() {
digitalWrite(TRIG_PIN, LOW);
delayMicroseconds(2);
digitalWrite(TRIG_PIN, HIGH);
delayMicroseconds(10);
digitalWrite(TRIG_PIN, LOW);
long duration = pulseIn(ECHO_PIN, HIGH);
float distance = duration * 0.034 / 2;
float tempC = dht.readTemperature();
float tempF = dht.readTemperature(true);
if (isnan(tempC) || isnan(tempF)) {
lcd.setCursor(0, 0);
lcd.print("Sensor error");
return;
}
String status = (tempF > 99.6) ? "Fever" : "No fever";
lcd.setCursor(0, 0);
lcd.print("Temp: ");
lcd.print(tempF);
lcd.print(" F");
lcd.setCursor(0, 1);
lcd.print("Status: ");
lcd.print(status);
Serial.print("Distance: ");
Serial.print(distance);
Serial.print(" cm, Temp: ");
Serial.print(tempF);
Serial.print(" F, Status: ");
Serial.println(status);
delay(1000);
}
Q(2)
Write a program to measure the Air quality Index of a given
area using MQ135 gas sensor and to display the information
on LCD according to the following conditions:
Solution
#include <LiquidCrystal_I2C.h>
#define I2C_ADDR 0x27
#define LCD_COLUMNS 16
#define LCD_ROWS 2
LiquidCrystal_I2C lcd(I2C_ADDR, LCD_COLUMNS,
LCD_ROWS);
#define MQ135_PIN A0
int calculateAQI(float ppm) {
if (ppm <= 50) return 50;
if (ppm <= 100) return 100;
if (ppm <= 150) return 150;
if (ppm <= 200) return 200;
if (ppm <= 300) return 300;
if (ppm <= 400) return 400;
return 500;
}
void setup() {
lcd.begin(LCD_COLUMNS, LCD_ROWS);
lcd.backlight();
lcd.setCursor(0, 0);
lcd.print("Air Quality:");
Serial.begin(9600);
}
void loop() {
int analogValue = analogRead(MQ135_PIN);
float voltage = analogValue * (5.0 / 1023.0);
float ppm = (voltage - 0.1) * 1000;
int aqi = calculateAQI(ppm);
lcd.setCursor(0, 1);
lcd.print("AQI: ");
lcd.print(aqi);
lcd.print(" ");
Serial.print("Analog Value: ");
Serial.print(analogValue);
Serial.print(" Voltage: ");
Serial.print(voltage);
Serial.print(" PPM: ");
Serial.print(ppm);
Serial.print(" AQI: ");
Serial.println(aqi);
delay(1000);
}
Q(1) M4R5
Arduino code to blink an LED
Solution
void setup() {
pinMode(13, OUTPUT);
}
void loop() {
digitalWrite(13, HIGH);
delay(1000);
digitalWrite(13, LOW);
delay(1000);
}
متاح الآن! بحث تيليغرام 2025 — أهم رؤى العام 
