Program to Find Out Circumference and Area of a Circle in Python
Explanation of code line by line. See Also: Python Program to Check Whether a Number is Even or Odd
Program to Find Out Circumference and Area of a Circle in Python Read More »
Explanation of code line by line. See Also: Python Program to Check Whether a Number is Even or Odd
Program to Find Out Circumference and Area of a Circle in Python Read More »
Ultrasonic Sensor- Ultrasonic sensor is an electronic device which can calculate distance. It transmits ultrasonic waves and converts ultrasonic waves into electrical signal. Ultrasonic sensor can be used in various projects from making smart dustbin to obstacle avoiding robots. In this post, I will explain how to calculated distance using Ultrasonic sensor and Arduino Uno
Calculate Distance using Ultrasonic Sensor and Arduino Uno Microcontroller Read More »
Arduino Code- Description- See video:- See Also: Display Three Names at Delay of 10 Seconds using Arduino and LCD Glow an LED using Arduino Code Explanation Line by Line
Glow Two-LED Alternatively Using Arduino Read More »
Projects List of Events(Competitions) to be Participated Other Events Participation Records in Events (Competitions) Quizzes List of Participants ATL Achievements Google Group Tinkercad Class Link CodeComebat Class Link PostNetwork Group LinkedIn Group Thingspeak Channels
Glow an LED using Arduino Line-1-setup() function is used to configure Pins for INPUT, OUTPUT, signal rate etc. Line-2-Block of setup() function starts here. Line-3-It indicates pin no. 8 is used for OUTPUT. Line-4-Block of setup() function ends here. Line-5-Statements inside loop() function run forever. Line-6-Block of loop() function starts here. Line-7-digitalWrite(8, HIGH) statement will
Glow an LED using Arduino Code Explanation Line by Line Read More »
A function is called quadratic, if its domain and range is set of real numbers i.e f: R–>R and it is defined as f(x)=x2. See the video for detailed explanation See Also: Identity Function in Mathematics
Quadratic Function in Mathematics Read More »
A function is called identity function if its domain and range is set of real numbers i.e f:R–>R and is defined as f(x)=x. Further, in the below image you can see for every value of x , f(x) has the same value. In the graph, you can see a straight which passes through origin.
Identity Function in Mathematics Read More »
In this post, I am going make a Python’s program which will check whether a number is even or odd. But before making program, first you need to understand modulus operator %. The above code defined a variable num which refers to 4, and variable r refers remainder when 2 divides num, so r will
Python Program to Check Whether a Number is Even or Odd Read More »
a is refering to 5 which means wherever a is used its value would be 5 b is refering to 7 which means wherever b is used its value would be 7 c is refering to multiplication of a and b which is 35 print() is a standard output function, print(c) will send value of
Multiplication of Two Numbers in Python Read More »
a is refering to 5 which means wherever a is used its value would be 5 b is refering to 7 which means wherever b is used its value would be 7 c is refering to addition of a and b which is 12 print() is a standard output function, print(c) will send value of
Addition of Two Numbers in Python Read More »