New Ideas YT
8.14K subscribers
462 photos
4 videos
99 files
1.77K links
This channel provides O level and CCC study material (pdf). Also visit our Website www.examjila.com | www.primegyan.com Youtube channel :- www.youtube.com/Newideasyt
Download Telegram
examjila-com-.jpg
419 KB
this is web design
Q. Python Program to Display Calendar
import calendar
yr=2024
mnth=7
print(calendar.month(yr,mnth))

Q. Python Program to Generate a Random Number
import random
print(random.randint(1,100))

Q. Python Program to Find ASCII Value of Character
char=input("Enter any character")
print(ord(char))

Q.Python Program to Find the Sum of Natural Numbers
num=int(input("Enter Last Value"))
if num<0:
print("Enter postive number")
else:
sum=0
while num>0:
sum=sum+num
num=num-1
print("the sum is =",su
void setup()
{
Serial.begin(9600);
}
void loop()
{
Serial.print(”Hello World");
delay(1000);
}
void setup()
{
pinMode(11, OUTPUT); //Set the Pin as an Output
}
void loop()
{
digitalWrite(11, HIGH); // Turn on the LED
delay(1000); // Wait for one second
digitalWrite(11, LOW); // Turn off the LED
delay(1000); // Wait for one second
}