Tuesday, October 29, 2019

Area of the Circle Solver in PERL

I wrote this program that will ask the user to give a value of a radius and then the program will compute the area of the circle using PERL as my programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.


My website is http://www.jakerpomperada.com

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.



Sample Program Output


Program Listing


# area_circle.pl
# area of the circle solver

$PI = 3.14159265358979323846;

print "\n\n";
print "\tArea of the Circle Solver in PERL";
print "\n\n";
print "\tEnter Radius Value : ";
chomp($radius =<>);

$area = $PI * $radius * $radius;
$display = sprintf("%2.2f", $area); 

print "\n\n";
print "\tThe area of the circle area $display.";
print "\n\n";
print "\tEnd of Program";
print "\n\n";

Addition of Three Numbers in PERL

Addition of Three Numbers in PERL

I wrote a program that will ask the user to give three numbers and then the program will compute the sum of three numbers and display the results on the screen using PERL as my programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.


My website is http://www.jakerpomperada.com

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.



Sample Program Output


Program Listing

addition.pl


# addition.pl
# Author : Jake Rodriguez Pomperada,MAED-IT
# Date    : October 30, 2019

print "\n";
print "\tAddition of Three Numbers in PERL";
print "\n";
print "\tEnter First Value : ";
chomp ($a = <>);
print "\tEnter First Value : ";
chomp ($a = <>);
print "\tEnter Second Value : ";
chomp ($b = <>);
print "\tEnter Third Value : ";
chomp ($c = <>);


$total_sum = ($a + $b + $c);

print "\n";
print "\tTe sum of $a, $b and $c is $total_sum.";
print "\n";
print "\tEnd of the Program";



Hello World Program in PERL

Hello World in PERL

I wrote a program that will display a hello world message on the screen using PERL as my programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.


My website is http://www.jakerpomperada.com

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.



Sample Program Output


Program Listing

hello.pl

# hello.pl
# hello world program in perl

print "Hello World.\n";
print "\n\n";
print "Welcome To Perl Programming";


Monday, October 28, 2019

Registration and Login Using PHP PDO and MySQL

A simple registration and login system are written in PHP PDO and MySQL.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.


My website is http://www.jakerpomperada.com

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.









Sample Program Output





Saturday, October 26, 2019

Addition of Two Numbers in JavaScript

Addition of Two Numbers in JavaScript

I wrote this simple program using JavaScript as my programming language to ask the user to give two numbers and then the program will compute the sum of the two numbers and display the results on the screen.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.


My website is http://www.jakerpomperada.com

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.





Program Listing

index.php


<html>
  <head>
  <title>Addition of Two Numbers in JavaScript</title>
  </head>
  <body>
   <hr>
   <h2 align="center">Addition of Two Numbers in JavaScript</h2>
   <hr>
   <br>
   <script type="text/javascript">
   
    a = parseInt(prompt("Enter First Value"));
    b = parseInt(prompt("Enter Second Value"));

    sum = (a+b);

    document.write("<h3> The First Value is " + a + ".</h3>") 
    document.write("<h3> The Second Value is " + b + ".</h3><br>") 
    document.write("<h3>The sum of "+ a + " and "
                + b + " is " + sum + ".</h3>");

   </script>

Hello World Program in JavaScript

I just wrote a program using JavaScript to display a hello world message on the screen.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.


My website is http://www.jakerpomperada.com

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.



Sample Program Output


Program Listing

index.htm

<html>
  <head>
  <title>My First JavaScript Program </title>
  <head>
 <body>
   <h2 align="center">My First JavaScript Program</h2>
 <script type="text/JavaScript">
    document.write("<h1 align='center'>Hello World in JavaScript !!!</h1>");
  </script>
 </body>
 </html>



Friday, October 25, 2019

Leap Year Checker in C#

Leap Year Checker in C#

I wrote this program to ask the user to give a year and then the program will determine whether the given year is a leap year or not a leap year using C# as my programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.


My website is http://www.jakerpomperada.com

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.



Sample Program Output

Program Listing

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {

            Console.Write("\n\n");
            Console.Write("\tLeap Year Checker in C#");
            Console.Write("\n\n");
            Console.Write("\tWhat is the year? ");
            int year = int.Parse(Console.ReadLine());

            if (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0))
            {
                Console.Write("\n\n");
                Console.Write("\tThe given year {0} is a LEAP YEAR." ,year);
            }
            else
            {
                Console.Write("\n\n");
                Console.Write("\tThe given year {0} is a NOT LEAP YEAR." ,year);
 
            }
            Console.Write("\n\n");

            Console.Write("\tEnd of Program");
            Console.ReadLine();
        }
    }

}

Centimeter To Feet Converter in C#

Centimeter To Feet Converter in C#

I write this program to ask the user to give a value in centimeter and then the program will convert centimeter into feet equivalent using C# programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.


My website is http://www.jakerpomperada.com

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.



Sample Program Output

Program Listing

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.Write("\n\n");
            Console.Write("\tCentimeter To Feet Converter in C#");
            Console.Write("\n\n");
            Console.Write("\tEnter Value in Centimeter : ");
            int centimeter = Convert.ToInt32(Console.ReadLine());

            double feet = (0.0328 * centimeter);

            Console.Write("\n\n");
            Console.Write("\tThe Feet Equivalent is "+ feet +".");
            Console.Write("\n\n");
            Console.Write("\tEnd of Program");
            Console.ReadKey();

        }
    }
}




Basic Math Operations Using C#

Basic Arithmetic Operations in C#

I wrote this program to ask the user to give two numbers and then the program will add, subtract, multiply and divide the two values given by the user using C# as my programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.


My website is http://www.jakerpomperada.com

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.



Sample Program Output

Program Listing

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            int num1 = 0, num2 = 0, sum = 0;
            int subtract = 0, multiply = 0, divide = 0;

            Console.Write("\n\n");
            Console.Write("\tBasic Arithmetic Operations in C#");
            Console.Write("\n\n");
            Console.Write("\tEnter First Value  : ");
            num1 = Convert.ToInt32(Console.ReadLine());
            Console.Write("\tEnter Second Value : ");
            num2 = Convert.ToInt32(Console.ReadLine());

            sum = (num1 + num2);
            subtract = (num1 - num2);
            multiply = (num1 * num2);
            divide = (num1 / num2);

            Console.Write("\n\n");
            Console.Write("\tDISPLAY RESULTS");
            Console.Write("\n");
            Console.Write("\n\tThe sum of " + num1 + " and " + num2 +
                           " is " + sum + ".");
            Console.Write("\n\tThe difference of " + num1 + " and " + num2 +
                           " is " + subtract + ".");
            Console.Write("\n\tThe product of " + num1 + " and " + num2 +
                           " is " + multiply + ".");
            Console.Write("\n\tThe quotient of " + num1 + " and " + num2 +
                           " is " + divide + ".");

            Console.Write("\n\n");
            Console.Write("\tEnd of Program");
            Console.ReadKey();
                

        }
    }
}




Addition of Two Numbers Using C#

Addition of Two Numbers Using C#

I  wrote this program to ask the user to give two numbers and then the program will compute the sum of two numbers and display the results on the screen using C# as my programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.


My website is http://www.jakerpomperada.com

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.




Sample Program Output


Program Listing

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
            {
                int num1 = 0, num2 = 0, sum = 0;
                Console.WriteLine("\n\n");
                Console.WriteLine("\tAddition of Two Numbers in C#");
                Console.WriteLine("\n");
                Console.Write("\tEnter First Value : ");
                num1 = Convert.ToInt32(Console.ReadLine()); ;
                Console.Write("\tEnter Second Value : ");
                num2 = Convert.ToInt32(Console.ReadLine()); ;

                sum = (num1 + num2);

                Console.WriteLine("\n");
                Console.Write("\tThe sum of " + num1 + " and " + num2
                    + " is " + sum + ".");
                Console.WriteLine("\n");
                Console.WriteLine("\tEnd of Program");
                Console.ReadKey();
               


        }
    }
}


 

Hello World Program in C#

Hello World Program Using C#

I wrote this program to display a message on the screen hello world using C# as my programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.



My website is http://www.jakerpomperada.com

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.
 



 Sample Program Output

Program Listing

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
            {
            // hello_world.cs
            // Author : Jake Rodriguez Pomperada,MAED-IT
            // October 25, 2019    Friday   5:19 AM

                Console.Write("\n\n");
                Console.Write("\tHello World");
                Console.Write("\n\n");
                Console.Write("\tWelcome To C# Programming");
                Console.ReadKey(); 
            
        }
    }
}