Tuesday, October 29, 2019

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(); 
            
        }
    }
}




Thursday, October 24, 2019

Password in C Using Turbo C

A simple password  program in C written using Turbo C by my friend and fellow software engineer Sir Ernel Fadriquilan.

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 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
 
 
//PASSWORD
#include<stdio.h>
#include<conio.h>
#include<string.h>
#include<dos.h>
char pswd[3],c;
int numchar=1;
void texter(char *s)
{
int i;
for(i=0;i<=strlen(s);i++)
{
printf("%c",s[i]);
delay(500);
}
}

void main()
{
clrscr();
while (numchar<=3)
{
c=getch();printf("*");
pswd[numchar]=c;
numchar++;
}
printf("\n");
texter("ernel");
gotoxy(5,5);texter("finals");
getch();
}

Number Design in C

A simple number design program in C written using Turbo C by my friend and fellow software engineer Sir Ernel Fadriquilan.

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 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


//Number Design
#include<stdio.h>
#include<conio.h>
#include<dos.h>
void main()
{
int a,b,num,w,e;
clrscr();
gotoxy(31,1);printf("Number please:");scanf("%d",&num);
for(a=2;a<=79;a++)
{
gotoxy(a,2);printf("%d",num);
delay(15);
}

for(b=2;b<=23;b++)
{
gotoxy(79,b);printf("%d",num);
delay(15);
}

for(a=79;a>=2;a--)
{
gotoxy(a,23);printf("%d",num);
delay(15);
}

for(b=23;b>=2;b--)
{
gotoxy(2,b);printf("%d",num);
delay(15);
}

w=num;
for(e=w;e>=0;e--)
{
textcolor(MAGENTA+BLINK);
gotoxy(40,12);cprintf("%d",e);
delay(1000);
}
}

Wednesday, October 23, 2019

Bigger Between Two Numbers in C++ Using Ternary Operator

I wrote this program that will ask the user to give two numbers and then the program will check which of the two number has a bigger value using Ternary operator and display the results on the screen using C++.

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 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

bigger.cpp

// bigger.cpp
// Author : Jake Rodriguez Pomperada
// Date   : October 23, 2019

#include <iostream>

using namespace std;

int bigger(int a,int b);


int main()
{
int num1=0, num2=0;
cout <<"\n\n";
cout <<"\tBigger Between Two Numbers in C++";
cout <<"\n\n";
    cout<<"\tEnter first number :"; 
    cin>>num1;
    cout<<"\tEnter second number :"; 
    cin>>num2;
    cout <<"\n";
    bigger(num1,num2);
    cout <<"\n\n";
    cout <<"\tEnd of Program";
}


int bigger(int a, int b)
{
int big=0;
 
big = a > b ? a : b;
if(a>b)
    {
    big = a;
cout<<"\tFirst number "<<big<<" is the largest";
    }
    else if (b>a)
    {
    big = b;
cout<<"\tSecond number "<<big<<" is the largest";
    }
    
    if (a==b) {
    cout <<"\tBoth numbers as equal to one another.";
}
    
}