Skip to content
April 2, 2023

Prajwal Rai Blog

  • Home
  • MY BLOG
    • IT
    • Others
  • C-Program
  • Plus 2
    • Class 11
    • Class 12
  • QBasic
    • QBasic-Basics
    • Patterns in QBasic
    • Numeric Pattern
    • Modular Program
    • Program Design Tools
    • QBasic Projects
  • Web Design
    • HTML AND CSS
    • JavaScript
  • PHP
  • Fundamental
  • About me
Main Menu

Tag: area of circle using javascript

JavaScript

Area of Circle using JavaScript

February 19, 2023February 19, 2023 - by Prajwal Rai - Leave a Comment

<html> <body> <script> function area(radius) { var area; area=Math.PI*radius*radius; return area; } </script> <form> enter the radius: <input type="text" name="radius"> <br> <br> Area <input type="text" name="result"> <input type="button" value="calculate" onclick="result.value=area(radius.value)"> …

Area of Circle using JavaScript Read More
JavaScript

Add any two numbers using JavaScript

February 19, 2023February 19, 2023 - by Prajwal Rai - Leave a Comment

<html> <body> <p>Enter the First Number: <input id="first"></p> <p>Enter the Second Number: <input id="second"></p> <button onclick="add()">Add</button> <p>Sum = <input id="answer1"></p> <script> function add() { var a, b, sum; a = …

Add any two numbers using JavaScript Read More

Recent Posts

  • Find the sum of 10 integer numbers using defined function in C program
  • Write a program in PHP to select the id, first name and last name column from the customer table and display it.
  • Generate Multiplication using PHP
  • Write a program in C to enter ā€˜N’ of data using file handling (user choice)
  • Write a program in C to copy file using file handling

Archives

  • March 2023
  • February 2023
  • September 2021
  • May 2021
  • April 2021
  • March 2021
  • August 2020
  • January 2020
  • December 2019
  • April 2019
  • March 2019
  • February 2019
  • January 2019
  • December 2018
  • August 2018
  • July 2018
  • June 2018
  • May 2018
  • April 2018
  • March 2018
  • October 2015
  • September 2015
Copyright © 2023 Prajwal Rai Blog.
Maintained by Prajwal Rai