Tuesday, November 5, 2019

Do While Loop Statement in PHP

I wrote this program to demonstrate how to declare and use do-while loop statement using PHP 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 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, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook address is https://www.facebook.com/profile.php?id=100009212511791

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

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

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/

If you like my video tutorials kindly click the like button and subscribe for more video tutorials on my channel.

Thank you very much for your help and support.

Sample Program Output

Program Listing

index.php

<?php
 /* do while loop in php
    Author: Jake Rodriguez Pomperada
    Date  : November 5, 2019   9:27 AM  Tuesday
    Email : jakerpomperada@gmail.com

 */

 $c=10;

 do {
   echo "<br>Counting at ".$c;
 $c--;
 }while ($c>=1);

 ?>






How To Improve Your Computer Programming Skills

Monday, November 4, 2019

Convert Days Into Years,Weeks and Days in PERL

I wrote a program using Perl as my programming language that will ask the user to give number of days and then the program will convert specified days into years, weeks and days.

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, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook Page is https://www.facebook.com/profile.php?...

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

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

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/



Thank you very much for your help and support.


Sample Program Output



Program Listing

# years_weeks_days.pl
# Author : Jake Rodriguez Pomperada, MAED-IT
# Date   : November 4, 2019   Monday
# Email  : jakerpomperada@gmail.com
do {
system("cls");
print "\n\n";
print "\tConvert Days Into Years,Weeks and Days in PERL";
print "\n\n";
print "\tHow many days?  : ";
chomp($days =<>);

# Converts days to years, weeks and days
$years = (int($days) / 365); 
$weeks = (int($days) % 365)/7;
$days =  int($days) - ((int($years)*365) + (int($weeks)*7));

$display_years  = int($years);
$display_weeks  = int($weeks);
$display_days   = int($days);

print "\n";
print "\tDISPLAY RESULTS";
print "\n\n";
print "\tYears : $display_years\n";
print "\tWeeks : $display_weeks\n";
print "\tDays  : $display_days\n";

print "\n";
print "\tDo you want to continue Y/N? : ";
chomp($reply =<>);
} while (uc $reply eq 'Y');
print "\n";
print "\tEnd of Program";
print "\n\n";


Addition of Three Numbers in PERL

I wrote a very simple program that will ask the user three numbers and then the program will compute the sum of three numbers and display the results on the screen using PERL.


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, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook Page is https://www.facebook.com/profile.php?...

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

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

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/


Thank you very much for your help and support.

Sample Program Output


Program Listing

# addition.pl

# Author : Jake Rodriguez Pomperada, MAED-IT
# Date   : November 4, 2019   Monday
# Email  : jakerpomperada@gmail.com
do {
system("cls");
print "\n\n";
print "\tAddition of Three Numbers in PERL";
print "\n\n";
print "\tEnter First Value  : ";
chomp($a =<>);
print "\tEnter Second Value : ";
chomp($b =<>);
print "\tEnter Third Value  : ";
chomp($b =<>);
$sum = ($a+$b+$c);
print "\n";
print "\tThe sum of $a,$b and $c is $sum.";
print "\n\n";
print "\tDo you want to continue Y/N? : ";
chomp($reply =<>);
} while (uc $reply eq 'Y');
print "\n";
print "\tEnd of Program";
print "\n\n";


Product of Two Numbers in PERL

A simple program that I wrote that will ask the user to give two numbers and then the program will compute the product of two numbers 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 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, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook Page is https://www.facebook.com/profile.php?...

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

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

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/


Thank you very much for your help and support.



Sample Program Output


Program Listing

product.pl

# product.pl # Author : Jake Rodriguez Pomperada, MAED-IT # Date : November 4, 2019 Monday # Email : jakerpomperada@gmail.com do { system("cls"); print "\n\n"; print "\tProduct of Two Numbers in PERL"; print "\n\n"; print "\tEnter First Value : "; chomp($a =<>); print "\tEnter Second Value : "; chomp($b =<>); $product = ($a * $b); print "\n"; print "\tThe product of $a and $b is $product."; print "\n\n"; print "\tDo you want to continue Y/N? : "; chomp($reply =<>); } while (uc $reply eq 'Y'); print "\n"; print "\tEnd of Program"; print "\n\n";

Sunday, November 3, 2019

Change Color in JQuery

This program will change the color using JQuery javascript framework.


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, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook Page is https://www.facebook.com/profile.php?...

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

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

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/


Thank you very much for your help and support.



Program Listing

<html>
<head>
<script src="jquery-1.11.3.js"></script>
<script type="text/JavaScript">
function changeColor ( ) {
$ ("#divTest").css ("background-color", "red");
}
</script>
</head>
<body>
<div id="divTest" onclick="changeColor( )" style="cursor: pointer; width: 300px; Height:20px; background-color: #cccccc;">
Click here to change background color.
</div>
</body>
</html>



 

Hello World in JQuery

A simple program that I wrote using JQuery to display a message hello world 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 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, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook Page is https://www.facebook.com/profile.php?...

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

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

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/


Thank you very much for your help and support.



Program Listing

 <html>
<head>
<title>jQuery Hello World</title>
<script src = "jquery-1.11.3.js"> </script>
<script type="text/javascript">
$(document).ready(function () {
$("#divID").html("Hello World !");
});
</script>
</head>
<body>
<div id="divID">
</div>
</body>
</html>

Saturday, November 2, 2019

Hello World in R

I wrote this simple hello world program using R 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 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, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook Page is https://www.facebook.com/profile.php?...

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

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

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/


Thank you very much for your help and support.


Sample Program Output



Program Listing

# My first program in R Programming
myString <- "Hello, World! in R Programming"

print ( myString)

Friday, November 1, 2019

Product and Difference of Two Numbers in C

Product and Difference of Two Numbers in C

I wrote this program to ask the user to give two numbers and then the program will compute the product and difference of the two numbers given by the user using the 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 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, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook Page is https://www.facebook.com/profile.php?...

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

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

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/


Thank you very much for your help and support.



Sample Program Output


Program Listing

/* prod_diff.c
   Author : Jake Rodriguez Pomperada,MAED-IT
   Date   : November 1, 2019   9:48 AM Friday
*/

#include <stdio.h>   


int main()
{
int product=0,difference=0;
int a=0,b=0;
printf("\n\n");
printf("\tProduct and Difference of Two Numbers in C");
printf("\n\n");
printf("\tGive Two Numbers : ");
scanf("%d%d",&a,&b);
product = (a*b);
difference = (a-b);
printf("\n\n");
printf("\tThe product of %d and %d is %d.",a,b,product);
printf("\n");
printf("\tThe difference between %d and %d is %d.",a,b,difference);
printf("\n\n");
printf("\tEnd of Program");
}   



Factorial Program in C Using While Loop

Factorial Program in C Using While Loop

I wrote this program that will ask the user to give a number and then the program will compute the factorial value of the given number using while loop statement 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 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, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook Page is https://www.facebook.com/profile.php?...

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

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

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/


Thank you very much for your help and support.


Sample Program Output


Program Listing

/* factorial.c
   Author : Jake Rodriguez Pomperada,MAED-IT
   Date   : November 1, 2019   9:38 AM Friday
*/

#include <stdio.h>

int main()
{
int n=0,nsave=0,factorial=0;
printf("\n");
printf("\tFactorial Program in C Using While Loop");
printf("\n\n");
printf("\tGive a Number : ");
scanf("%d",&n);
nsave = n;
factorial = 1;
while (n>1) {
factorial *= n--;
}
printf("\n");
printf("\tFactorial of %d = %d",nsave,factorial);
printf("\n\n");
printf("\tEnd of Program");
}



Addition of Two Numbers in C Language

Addition of Two Numbers in C Language

I wrote this program that will ask the user to give two numbers and then the program will compute the sum of two numbers using C 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 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, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook Page is https://www.facebook.com/profile.php?...

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

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

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/



Thank you very much for your help and support.



Sample Program Output



Program Listing

/* addition.c */
/* Author : Jake Rodriguez Pomperada,MAED-IT */
/* November 1, 2019    9:26 AM   Friday */

#include <stdio.h>

int main()
{
int sum=0,a=0,b=0;
printf("\n\n");
printf("\tAddition of Two Numbers in C");
printf("\n\n");
printf("\tEnter First Value : ");
scanf("%d",&a);
printf("\tEnter Second Value : ");
scanf("%d",&b);
sum = (a+b);
printf("\n\n");
    printf("\tThe sum of %d and %d is %d."
        ,a,b,sum);
printf("\n\n");
printf("\tEnd of the Program");
}