Thursday, July 4, 2019

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


Display the Names of the Students Using Two Dimensional Arrays in Ruby

Here is a sample program that will display the names of the students using two-dimensional arrays in 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

# sample1.rb
# Author   : Jake Rodriguez Pomperada,BSCS,MAED-IT
# Date     : July 2, 2019  Tuesday  4:59 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 "\tDisplay the Names of the Students ";
puts "\n\n"

stud_names = [['Jake','Allie'],['Jay','Ann'],['Kahlil','Bing']]

print("\t");  
puts stud_names[0][0].upcase;  # It will display the name of Jake
print("\t");  
puts stud_names[0][1].upcase; # It will display the name of Allie

print("\n");
print("\t");  
puts stud_names[1][0].upcase; # It will display the name of Ann
print("\t");  
puts stud_names[1][1].upcase; # It will display the name of Jay

print("\n");
print("\t");  
puts stud_names[2][0].upcase; # It will display the name of Bing
print("\t");  
puts stud_names[2][1].upcase; # It will display the name of Kahlil

print "\n";
print "\tEND OF PROGRAM";
print "\n\n";


Monday, July 1, 2019

Leap Year Checker in Visual Foxpro

I simple program that I wrote to ask the user to give a year and then the program will check if the given year is a leap year or not a leap year using Visual Foxpro.


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




Fahrenheit. to Celsius Using Visual Foxpro

A simple program that I wrote using Microsoft Visual Foxpro to accept temperature in  Fahrenheit. to Celsius.

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


Celsius To Fahrenheit Converter in Visual Foxpro

A simple program that I wrote using Microsoft Visual Foxpro to accept temperature in Celsius into Fahrenheit.


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





String Permutation in Visual Basic 6

Here is a code to perform string permutation using Microsoft Visual Basic 6. A permutation is a process of how the number or string can generate different word or number combination.

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