Thursday, July 4, 2019

Addition of Three Numbers Using ASP

A basic program to add the sum of two numbers using classic ASP (Active Server Pages) it uses VBScript as its native 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 I also accepting computer repair, networking and Arduino Project development at a very affordable price.

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

Sample Program Output


Program Listing

<!DOCTYPE html>
<html>
<body>
<!DOCTYPE html>
<html>
<body>
<%
dim a,b,sum
a=1
b = 2
sum = cint(a)+ cint(b)
response.write("<h2>Addition of Two Numbers Using ASP </h2>")
response.write("<h3>Created By Mr. Jake R. Pomperada </h3>")
response.write("<h3> The sum of " & a & " and " & b & " is " & sum & ".</h3>")
%>

</body>
</html>
</body>
</html>







Area of the Circle Version 1.0


Write a program using structure and function to compute the area of the circle in 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 I also accepting computer repair, networking and Arduino Project development at a very affordable price.

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




Sample Program Output


Program Listing

/*circle.c
 Author    : Mr. Jake Rodriguez Pomperada,BSCS,MAED-IT
 Date      : December 1, 2018  Saturday 9:01 PM
 Location  : Bacolod City, Negros Occidental
 Website   : http://www.jakerpomperada.com
 Emails    : jakerpomperada@jakerpomperada.com
             jakerpomperada@gmail.com
             jakerpomperada@yahoo.com
             jakerpomperada@aol.com
*/
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>

struct circle {
  char name[100];
  float radius;
  float area;
};

int main() {
    circle test;
    char reply;
    float area=0.00;
do {
    printf("\n\n");
    printf("\t\tArea of the Circle Version 1.0");
    printf("\n\n");
    printf("\tEnter the name of the Circle          : ");
    gets(test.name);
    printf("\n");
    printf("\tEnter the given Radius of the Circle  : ");
    scanf("%f",&test.radius);
    printf("\n");
    printf("\t\tSummary of Report");
    printf("\n");
    area = (3.14 * test.radius * test.radius);
    printf("\n\tName of the Circle         : %s ",test.name);
    printf("\n");
    printf("\n\tThe Area of the Circle is  : %.2f ",area);
    printf("\n\n");
    printf("\tDo You Want to Continue y/n? : ");
    scanf("%s",&reply);
    if (toupper(reply) == 'N') {
        printf("\n\n");
        printf("\t\t Thank You For Using This Software !!!");
        break;
    }
    } while (toupper(reply!='Y'));
    printf("\n\n");
    system("pause");
}






Addition of Two Numbers Using Structures in C

Design a program using structure and function to accept two numbers and then the program will display the total sum of the two numbers on the screen 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 I also accepting computer repair, networking and Arduino Project development at a very affordable price.

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




Sample Program Output


Program Listing

/*add.c
 Author    : Mr. Jake Rodriguez Pomperada,BSCS,MAED-IT
 Date      : December 1, 2018  Saturday 7:41 PM
 Location  : Bacolod City, Negros Occidental
 Website   : http://www.jakerpomperada.com
 Emails    : jakerpomperada@jakerpomperada.com
             jakerpomperada@gmail.com
             jakerpomperada@yahoo.com
             jakerpomperada@aol.com
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>

struct add {
  int value1,value2;
    int addition()
    {
        return(value1+value2);
    }
};

int main() {
    add math;
    char reply;
do {
    printf("\n\n");
    printf("\t\t");
    printf("\n\n");
    printf("\tEnter the first value  : ");
    scanf("%d",&math.value1);
    printf("\n");
    printf("\tEnter the second value : ");
    scanf("%d",&math.value2);
    printf("\n\n");
    printf("\tThe sum of %d and %d is %d."
,math.value1,math.value2, math.addition());
printf("\n\n");
    printf("\tDo you want to continue y/n? : ");
    scanf("%s",&reply);
    if (toupper(reply) == 'N') {
     printf("\n\n");
     printf("\tThank You For Using This Software !!!");
     break;
    }
    } while (toupper(reply!='Y'));
    printf("\n\n");
printf("\t\tEnd of Program");
printf("\n\n");
system("pause");
}










Clock in Visual Basic 6

A simple clock that I wrote using Microsoft Visual Basic 6.

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

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



Sample Program Output





Loan Calculator in Visual Basic 6

Here is a simple loan calculator that I wrote in Visual Basic 6 that will compute the interest rate of a loan of the customer.

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

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



Sample Program Output




Simple Calculator in Visual Basic 6

A simple calculator that I wrote using Microsoft Visual Basic 6 that I wrote more than 10 years ago.

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

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



Sample Program Output






Wednesday, July 3, 2019

Year Level Checker in Pascal

A simple year level check in pascal that I wrote to show to use if else statement in Pascal. The code is written using Free Pascal.

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

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





Sample Program Output


Program Listing

Program Year_Level_Checker;
Uses Crt;

Var

year_level : Integer;


Begin
  Clrscr;
  Write('Year Level Checker in Pascal');
  writeln;
  writeln;
  write('What is your year level? ');
  readln(year_level);
  writeln;
   if (year_level = 1) then
    begin
    writeln;
    write('You are belong to freshmen.');
   end
     else if (year_level = 1) then
     begin
    writeln;
    write('You are belong to Freshmen.');
   end
     else if (year_level = 2) then
    begin
    writeln;
    write('You are belong to Sophomore.');
   end
    else  if (year_level = 3) then
    begin
    writeln;
    write('You are belong to Juniors.');
   end
    else  if (year_level = 4) then
    begin
    writeln;
    write('You are belong to Seniors.');
   end
   else
    write('Invalid Year Level Try Again.');
   Readln;
End.



Call By Reference in C

Here is a simple code in C that will demonstrate how to call by reference. 

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

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


Sample Program Output


Program Listing


#include <stdio.h>

int cube (int &);

int main()
{
int a=5;
int b=a;
int display=0;
printf("\n\n");
printf("\tCall By Reference");
display = cube(a);
printf("\n\n");
printf("\tThe given value is %d. The result is %d.",b,display);
printf("\n\n");
printf("\tEnd of Program");
printf("\n\n");
}

int cube(int &b)
{
b = b * b * b;
return(b);
}




Call By Address / Pointer in C

A simple program that I wrote in C to show you how to call by Address and Pointers.

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

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



Sample Program Output


Program Listing

// call_by_address.c
// Author    : Mr. Jake Rodriguez Pomperada,BSCS,MAED-IT
// Date      : November 28, 2018  Wednesday   2:23 PM
// Location  : Bacolod City, Negros Occidental Philippines.
// Website   : http://www.jakerpomperada.com
// Email     : jakerpomperada@jakerpomperada.com and jakerpomperada@gmail.com

#include <stdio.h>
int cube (int *);
int main()
{
int a=10;
int b=a;
int display=0;
printf("\n\n");
printf("\tCall By Address/Pointer");
display = cube(&a);
printf("\n\n");
printf("\tThe given value is %d. The result is %d.",b,display);
printf("\n\n");
printf("\tEnd of Program");
printf("\n\n");
}
int cube(int *b)
{
*b = (*b) * (*b)* (*b);
return(*b);
}




Tuesday, July 2, 2019

List of My Favorite Foods Using Two Dimensional Array Using Ruby

Here is a simple program to list down my favorite foods using two-dimensional arrays using ruby.

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

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



Sample Program Output

Program Listing

 sample2.rb
# Author   : Jake Rodriguez Pomperada,BSCS,MAED-IT
# Date     : July 2, 2019  Tuesday  5;14 AM
# Address  : Bacolod City, Negros Occidental
# Tools    : Eclipse IDE and Ruby Version 2.6.3
# Location : Bacolod City, Negros Occidental  
# Website  : http://www.jakerpomperada.com
# Emails   : jakerpomperada@gmai.com and jakerpomperada@yahoo.com
puts "\n\n"
print "\tList of My Favorite Foods Using Two Dimensional Array";
puts "\n\n"

foods = [['Cakes','Pasta'],['Bread','Meat'],['Spaghetti','Apples'],
         ['Fish','Oatmeal'],['Chocolates','Pizza'],['Grapes','Ice Cream']] 

print("\t");                  
puts foods.join(', ')
  
print "\n";
print "\tEND OF PROGRAM";
print "\n\n";