ar
Feedback
O Level Previous paper

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

إظهار المزيد
731
المشتركون
+124 ساعات
-47 أيام
+230 أيام
أرشيف المشاركات
Q(1) Write a Program To Interface Button and LED, so that LED blink /glow when button is Pressed Q(2) Write a Program To Blink default Light Emitting Diode (LED) on Arduino board with the delay of 2 Sec Q(3) // Multiple LED blinking With delay of 1 sec int led1= 13; int led2 = 12; int led = 11; int led = 10; 👉Satya Sir 👉https://t.me/O_levelpaper #M4R5 8 Feb 2025

Q(1) Write a Program To Find Out Sum Of Digits of any Given Number Ex-154= total Sum =10 Q(2) Write a Program to Accept a String Form the User and Convert it into Tuple Solution 👉s="Python Practical Question " tup=tuple (S. Split ( )) Print (tup) Q(3) Write a Program to Print This Pattern 1 12 123 1234 12345 n=int (input ("Enter number of Rows : ")) for i in range (1,n+1): for j in range (1,i+1): print (j,end =" ") Print () Q(4) Write a Program To Create a Function that takes two lists of names as a Parameter and return true if they at one Name Common def value _list (list1,list2): result = False for x in list1: for y in list2: If x==y: result =True retrun result print (value _list( [1,2,3,4,5,6],[7,8,9] )) print (value _list( [1,2,3,4,5,6],[7,8,9] )) 👉Satya Sir 👉https://t.me/O_levelpaper 8 Feb 2025 #M3R5

Python Q(1) Print the Current date and Time in a format was ( year_month_Day Hour:minute) Q(2) dictionary with Roll no and Perecent of 10 Students Write a Program To Print Only Those Roll No. Form the dict Where Perecent is greater then 50 Q(3) Write a Program to Calculator Factorial of Number using Recursion

👆

Q(1) Create a Simple Form, fields are Name, Email, Address, Phone, Age Q(2)Create two Colums Using Frame Set and Insert Two Image is it Q(3)Write Html Code To Insert Two Images and Write a slogan Which Should Blinks #M2R5

رسالة صوتية00:36

इसको गलत मत करिएगा ❌

This is heading 1

This is heading 2

This is heading 3

This is heading 4

This is heading 5
This is heading 6

O Level Practical Exam 2025

photo content

<!DOCTYPE html> <html> <body> <h1>Form with radio buttons</h1> <form action="/action_page.php" method="get">   <input type="radio" id="html" name="fav_language" value="HTML">   <label for="html">HTML</label><br>   <input type="radio" id="css" name="fav_language" value="CSS" checked="checked">   <label for="css">CSS</label><br>   <input type="radio" id="javascript" name="fav_language" value="JavaScript">   <label for="javascript">JavaScript</label><br><br> <input type="submit" value="Submit"> </form> </body> </html>

photo content

<!DOCTYPE html> <html> <body> <h1>Form with checkboxes</h1> <form action="/action_page.php" method="get"> <input type="checkbox" name="vehicle1" value="Bike"> <label for="vehicle1"> I have a bike</label><br> <input type="checkbox" name="vehicle2" value="Car"> <label for="vehicle2"> I have a car</label><br> <input type="checkbox" name="vehicle3" value="Boat" checked> <label for="vehicle3"> I have a boat</label><br><br> <input type="submit" value="Submit"> </form> </body> </html>

photo content

<!DOCTYPE html> <html> <head> <style> fieldset { background-color: #eeeeee; } legend { background-color: gray; color: white; padding: 5px 10px; } input { margin: 5px; } </style> </head> <body> <h1>The fieldset element + CSS</h1> <form action="/action_page.php"> <fieldset> <legend>Personalia:</legend> <label for="fname">First name:</label> <input type="text" id="fname" name="fname"><br><br> <label for="lname">Last name:</label> <input type="text" id="lname" name="lname"><br><br> <label for="email">Email:</label> <input type="email" id="email" name="email"><br><br> <label for="birthday">Birthday:</label> <input type="date" id="birthday" name="birthday"><br><br> <input type="submit" value="Submit"> </fieldset> </form> </body> </html>

Output ☝️☝️
Output ☝️☝️

This is an inline span Hello World element inside a paragraph.

The SPAN element is an inline element

A Description List

Coffee
- black hot drink
Milk
- white cold drink
Output 👉 A Description List Coffee - black hot drink Milk - white cold drink