Friday, March 1, 2019

TUP’S POMPERADA PUBLISHES HIS 6TH BOOK

First of all I would like to say thank you very much for Sir James U. Sy Jr. for featuring me in his column in Negros Daily Bulletin and also to Sir Arman Toga the chief editor of Negros Daily Bulletin for the support.

I this article I will share the content of the article written by Sir James Sy about my book for story about this article can be read in this following link http://www.ndb-online.com/february2819/tup-s-pomperada-publishes-his-6th-book?fbclid=IwAR3b7TO2IQohuIOOPYWFp7vC5GlN_ermVjB6N61396JsmqLmT-AQE4N2-ME


TUP’S POMPERADA PUBLISHES HIS 6TH BOOK

By James U. Sy Jr.
Jake R. Pomperada, MAED-IT, a newly-hired Science Research Specialist II at the Technological University of the Philippines-Visayas (TUP-V), has published his sixth book entitled Beginner’s Guide to C++ Programming through the Metro Manila-based Mindshapers Co., Inc..


Jake R. Pomperada, MAED-IT, holding his latest published book, with his beloved mother Lydia Rodriguez-Pomperada.*(Contributed photo)
His first five books were PHP with MySQL A Web Programming Language (as co-author with Mamerlo V. Abante, PhD, DIT, Marissa G. Chua, MA Coed, and Kevin M. San Jose, MSIT-CAR) (2015), Introduction to JAVA Programming (2016), Fundamentals of JavaScript Programming (2016), Introduction to JAVA Programming Rev. Ed. (2018), and Introduction to C# Programming (2018).
Pomperada graduated Cum Laude in Master of Arts in Education, Major in Instructional Technology at La Consolacion College-Bacolod (LCC-B) on March 15, 2008 and has earned 21 units in Doctor of Philosophy (Ph.D.), Major in Technology Management at the Carlos Hilado Memorial State College (CHMSC)-Talisay (2010-2011). He is currently enrolled in Master of Information Technology at the Northern Negros State College of Science and Technology for a year now.
Pomperada, a freelance programmer and web designer/developer since 1999, drew from his vast experience in the industry in making the book. He previously worked as a Software Engineering Consultant / Application Development Team Lead at Accenture Inc. in Manila (2015-2017) and a Document Analyst / Software Quality Assurance Engineer at Channel Technologies Inc. He has started the entrepreneurial venture Red Dragon Digital Hub in 2018.
Prior to writing his books, he has started sharing his knowledge of IT to Generation Y and Z teens as an academic teacher and continued to do so until late 2018, having taught in a total of 10 schools - College of Arts & Science in Asia and the Pacific (CASAP)-Bacolod Campus (2018), TUP-V (2013-2015), Megume Information Technology Center (2012-2013), Asian Business Institute of E-Technology (2011-2015), STI College Bacolod City (2011-2013), USLS (2009-2011), LCC-B (2007-2011), CHMSC-Talisay (2006-2009), CSA-B (2006), and Bacolod City College (BCC) (2005-2006).
The Outcome Based Education (OBE) compliant Beginner’s Guide to C++ Programming will be distributed by Mindshapers Co., Inc. in Luzon, Visayas, and Mindanao. Interested parties may check the book at http://www.mindshaperspublishing.com.*
 

Tuesday, February 26, 2019

The publication of my book entitled "Beginners Guide To C++ Programming"

Yesterday February 26, 2019, I received my six books which is being published by https://www.mindshaperspublishing.com entitled "Beginners Guide To C++ Programming". This book is one of my dream projects why taught C++ programming way back 2009 in a local university here in Bacolod City, Negros Occidental.  I feel in love with this language it is easy to for me to understand and learned.  I used Dev C++ as my tool in writing the C++ programs and laboratory activities in my book.



With my mother mommy Lydia Pomperada



Me holding my book taken at my home in Barangay Alijis



Front Cover of my book


Back cover of my book


For inquiry and orders, you may visit the website of my publisher at https://www.mindshaperspublishing.com/

Thank you very much.












Monday, February 25, 2019

Odd and Even Number Checker Using Function in Python

This is a simple program that I wrote using the function in Python to check if the given number is odd or even. I am still learning Python programming language before I am currently working on my new book on Python programming with co-author, a mentor in programming and best friend Rollyn Moises.



Sample Program Output


Program Listing


# odd_even.py
# Rollyn M. Moises and Jake R. Pomperada
# February 25, 2019    Tuesday
# Bacolod City, Negros Occidental


def odd_even(n):
    if n % 2 == 0:
        print("\tThe number %d is an EVEN." % n)
    else:
        print("\tThe number %d is an ODD." % n)


def my_program():
    print();
    print("\tOdd and Even Number Checker Using Function");
    print();
    a= int(input("\tGive a Number : "));
    display = a;
    print();
    odd_even(display);
    print();
    repeat = input('\tDo you want to continue ? (Y/N) : ')
    if repeat.upper() == "N":
        print()
        print("\tThank You For Using This Program.")
        print();
        print("\tEND OF PROGRAM");
        quit

    if repeat.upper() == "Y":
        my_program()


if __name__ == '__main__':

    my_program()









Leap Year Checker Using Function in Python

Presently learning how to program python for my book writing project and to spend my free time in a productive way.

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

Problem

Write a program that will ask the user to give the year and then
the program will check and determine if the given year by the user is a leap year or not using the function. 

The program also asks the user if the user will continue using the program or not. If the user chooses Y for yes the program will run again but if the user chooses N for no the program
will display a thankful message and return to the operating system.





Sample Program Output


Program Listing

# leap_year.py
# Jake R. Pomperada
# February 25, 2019    Tuesday
# Bacolod City, Negros Occidental


def leap_year(year):
    if year % 4 == 0 and year % 100 != 0:
        print("\tThe year %d is a Leap Year" % year)
    elif year % 100 == 0:
        print("\tThe year %d is not a Leap Year" % year)
    elif year % 400 == 0:
        print("\tThe year %d is a Leap Year" % year)
    else:
        print("\tThe year %d is not a Leap Year" % year)


def my_program():
    print();
    print("\tLeap Year Checker Using Function");
    print();
    a= int(input("\tGive a Year : "));
    display = a;
    print();
    leap_year(display);
    print();
    repeat = input('\tDo you want to continue ? (Y/N) : ')
    if repeat.upper() == "N":
        print()
        print("\tThank You For Using This Program.")
        print();
        print("\tEND OF PROGRAM");
        quit

    if repeat.upper() == "Y":
        my_program()


if __name__ == '__main__':
    my_program()






Tuesday, February 19, 2019

Average of Three Numbers in Java

In this article I would like to share with you a sample program that will ask the user to give three numbers and then the program will compute the average of the given three numbers by the user using Java as our 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

package average_numbers;
 import java.util.Scanner;

/**
 *Average_Numbers.java
 * Author : Mr. Jake R. Pomperada,MAED-IT
 * Date   : February 19, 2019   Tuesday
 * http://www.jakerpomperada.com
 * jakerpomperada@jakerpomperada.com 
 * jakerpomperada@gmail.com
 */
public class Average_Numbers {
   public static void main(String[] args) {
   int a=0,b=0,c=0;
   int average=0;

      Scanner input = new Scanner(System.in);
      System.out.println();
      System.out.print("\tAverage of Three Numbers");
      System.out.println("\n");
      System.out.print("\tGive First Value  : ");
      a = input.nextInt();
      System.out.print("\tGive Second Value : ");
      b = input.nextInt();
      System.out.print("\tGive Third Value  : ");
      c = input.nextInt();
      average = (a+b+c)/3;
      System.out.println();
      System.out.print("\tThe average is " + average + ".");
      System.out.println("\n");
      System.out.println("\tEnd of Program");
      System.out.println();
    }
}





Money Bill Denominator in Java

Here is a program that I wrote in Java to ask the amount of money from the user and then our program will  count how many one thousand, five hundred, two hundred, one hundred, fifty, twenty bills and ten, five and one peso coins based here in the Philippine currency.

 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

package money_denominator;

 import java.util.Scanner;

/**
 * Money_Denominator.java
 * Author : Mr. Jake R. Pomperada,MAED-IT
 * Date   : February 19, 2019   Tuesday
 * http://www.jakerpomperada.com
 * jakerpomperada@jakerpomperada.com 
 * jakerpomperada@gmail.com
 */
public class Money_Denominator {
 
   public static void main(String[] args) {
     
      int amount=0,thousand=0,five_hundreds=0,two_hundreds=0;
      int hundreds=0,fifty=0,twentys=0,tens=0,fives=0,ones=0;
      
      Scanner input = new Scanner(System.in);
      
      System.out.println();
      System.out.print("\tMoney Bill Denominator");
      System.out.println("\n");
      System.out.print("\tEnter an Amount : ");
      amount = input.nextInt();
      
      thousand = amount/1000;
      amount = amount%1000;
      
      five_hundreds = amount/500;
      amount = amount%500;
      
      two_hundreds = amount/200;
      amount = amount%200;
      
      hundreds = amount/100;
      amount = amount%100;
      
      fifty = amount/50;
      amount = amount%50;
      
      twentys = amount/20;
      amount = amount%20;
      
      tens = amount/10;
      amount = amount%10;
      
      fives = amount/5;
      amount = amount%5;
      
      ones = amount/1;
      amount = amount%1;

      System.out.print(" \n");
      System.out.print("\t===== Display Report =====");
      System.out.println("\n");
      System.out.print("\tNumber of 1000 Note(s)  : "   + thousand + "\n");
      System.out.print("\tNumber of 500 Note(s)   : "   + five_hundreds +  "\n");
      System.out.print("\tNumber of 200 Note(s)   : "   + two_hundreds  + "\n");
      System.out.print("\tNumber of 100 Note(s)   : "   + hundreds + "\n");
      System.out.print("\tNumber of 50 Note(s)    : "   + fifty  + "\n");
      System.out.print("\tNumber of 20 Note(s)    : "   + twentys + "\n");
      System.out.print("\tNumber of 10 Coin(s)    : "   + tens  + "\n");
      System.out.print("\tNumber of 5  Coin(s)    : "   + fives + "\n");
      System.out.print("\tNumber of 1  Coin(s)    : "   + ones + "\n");
      System.out.print("\n\n");
      System.out.print("\tEnd of Program");
      System.out.print("\n\n");  
  }
}  // End of Code  



Thursday, February 14, 2019

MULTIPLICATION TABLE USING FOR STATEMENT IN PYTHON

A simple multiplication program that I wrote in Python as a sample program for the book that I am working right now. I hope you will find my work useful.

 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

print();
print("\t\t\tMULTIPLICATION TABLE USING FOR STATEMENT");
print();
for x in range(1, 13):
   for y in range(1, 13):
     print("{:5}".format(x*y), end="")
   print()
print();
print("\t\t\t\t\tEND OF PROGRAM");


Positive and Negative Number Checker Using Switch in Python

A simple program that I wrote using Python to check if the given number is a positive or negative number.  The code is very easy to understand and use.  I wrote this code for my the future book that I am writing about python programming I am still a beginner and learner on Python.

  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

def pos_neg(x ):
    switcher = {
            0 : "is a Positive Number.",
             }
    return switcher.get(x,"is a Negative Number.")

print();
print("\tPositive and Negative Number Checker Using Switch");
print();
x= int(input("\tGive a number : "));
display = x;
print();
if (x >=0):
    x = 0
else:
    x =1
print("\tThe given number %d" %display,pos_neg(x));
print();
print("\tEND OF PROGRAM");




Tuesday, February 12, 2019

Two Dimensional Arrays of Mobile Numbers in Java

Here is a simple program that I wrote using Java two dimensional arrays to populate the list of mobile numbers. The code is very simple easy to understand.

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

package two_arrays;

class two_arrays {
public static void main(String args[])
{    
long [][] mobile_no = new long[3][2];
System.out.println();
System.out.println("Two Dimensional Arrays of Mobile Numbers");
System.out.println();
mobile_no[0][0] =221971362; 
mobile_no[0][1] =915521365;
mobile_no[1][0] =628088942; 
mobile_no[1][1] =259417206;
mobile_no[2][0] =530859708; 
mobile_no[2][1] =758310922;

for (int row = 0; row < mobile_no.length; row++) { 
        for (int col = 0; col < mobile_no[row].length; col++)
{
System.out.print("\t" + mobile_no[row][col]);
}
  System.out.println();    
}
 
System.out.println();
System.out.println("\tEND OF PROGRAM");
System.out.println();
}
}

Friday, February 8, 2019

Odd and Even Numbers Using For Loop Statement In Python

A very simple program that I wrote using Python as my programming language to ask the user to give a number and then the program will display the list of odd and even numbers 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 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

# Rollyn M. Moises and Jake R. Pomperada
# even_odd.py
# February 8, 2019  Friday
# Bacolod City, Negros Occidental
print();
print("\tOdd and Even Numbers Using For Loop Statement");
print();
value = int(input("\tGive a Number : "))
print();
print("\tList of EVEN Numbers")
print();
for a in range(value):
 if(a % 2 == 0):
     print("\t%d" % a, end=" ");
print("\n");
print('\t');
print("\tList ODD Numbers");
print();
for a in range(value):
     if (a % 2 != 0):
       print("\t%d" % a, end=" ");
print("\n");
print("\tEND OF PROGRAM");