Thursday, December 24, 2020

Hello World in Python Using PyCharm

Hello World in Python Using PyCharm

 I simple tutorial on how to write a hello world program using Python using PyCharm.

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 at 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. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.




Program Listing

# Hello_World.py # Mr. Jake Rodriguez POmperada, MAED-IT, MIT # www.jakerpomperada.com # www.jakerpomperada.blogspot.com # jakerpomperada@gmail.com # Bacolod City, Negros Occidental Philippines print("\tHello World.") print() print("\tWelcome To Python Programming") print() print("\tLearning Python is Fun.")

Wednesday, December 23, 2020

Methods in Java

 

Machine Problem

Write a program that will show how to declare and use methods in Java programming language.

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 at 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. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.




Program Listing


/**

Machine Problem in Java


Write a program that will show how to declare and use

methods in Java programming language.


 @author Jake Rodriguez Pomperada,MAED-IT, MIT

 www.jakerpomperada.com / www.jakerpomperada.blogspot.com

 jakerpomperada@gmail.com

 Bacolod City, Negros Occidental Philippines

 December 23, 2020   Wednesday

*/

public class Methods {


  // create a method

  public int Addition(int a, int b) {

    int sum = a + b;

    // return value

    return sum;

  }

  

// method with no parameter

  public void title() {

System.out.println();  

    System.out.println("\tAddition of Two Numbers");

    System.out.println();

  }

public static void main(String[] args) {

// TODO Auto-generated method stub

 

        System.out.println("\n");

        System.out.print("\tMethods in Java");

        System.out.println("\n");

        

        int a = 12;

        int b = 3;


        // create an object of Methods

        Methods objdemo = new Methods();

        

        // calling methods

        

        objdemo.title();

        

        int result = objdemo.Addition(a, b);

        

        System.out.println("\tThe sum of " +a + " and " 

          + b + " is "  + result + ".");

        System.out.println();

        System.out.println("\tEnd of Program");

        System.out.println("\n");

        


}


}



Prime Number in Python

Prime Number in Python

 Machine Problem

Write a python program to ask the user to give  a number and then the progam check and determine
whether the given number is a prime number or not.
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 at 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. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.





Program Listing


# Prime_Number.py
# Jake Rodriguez Pomperada,MAED-IT, MIT
# www.jakerpomperada.com
# www.jakerpomperada.blogspot.com
# jakerpomperada@gmail.com
# Bacolod City, Negros Occidental Philippines


# Machine Problem
# Write a python program to ask the user to give
# a number and then the progam check and determine
# whether the given number is a prime number or not.

print()
print("\tPrime Number in Python")
print()

num = int(input("\tGive a Number : "))

print()
if num > 1:
for i in range(2, num):
if (num % i) == 0:
print("\tThe given number",num, "is not a prime number.")
break
else:
print("\tThe given number",num, "is a prime number.")
else:
print("\tThe given number",num, "is not a prime number.")
print()
print("\tEnd of Program")
print()

Positive and Negative Number in Python

Positive and Negative Number in Python

Machine Problem

Write a python program to ask the user to give  a number and then the progam check and determine
whether the given number is positive,zero, and negative number.
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 at 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. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.






Program Listing


# Factorial_Number.py
# Jake Rodriguez Pomperada,MAED-IT, MIT
# www.jakerpomperada.com
# www.jakerpomperada.blogspot.com
# jakerpomperada@gmail.com
# Bacolod City, Negros Occidental Philippines


# Machine Problem
# Write a python program to ask the user to give
# a number and then the progam check and determine
# whether the given number is positive,zero, and
# negative number.

print()
print("\tPositive and Negative Number in Python")
print()

num = int(input("\tGive a Number : "))

print()
if num >= 0:
if num == 0:
print("\tThe given number",num, "is Zero.")
else:
print("\tThe given number" ,num, "is Positive number.")
else:
print("\tThe given number" ,num, "is Negative number.")
print()
print("\tEnd of Program")
print()



Factorial Number in Python

Machine Problem

Write a python program to ask the user to give a number and then the progam will computer the
factorial value of the given number.
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 at 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. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.






Program Listing


# Factorial_Number.py
# Jake Rodriguez Pomperada,MAED-IT, MIT
# www.jakerpomperada.com
# www.jakerpomperada.blogspot.com
# jakerpomperada@gmail.com
# Bacolod City, Negros Occidental Philippines


# Machine Problem
# Write a python program to ask the user to give
# a number and then the progam will computer the
# factorial value of the given number.

print()
print("\tFactorial Number in Python")
print()

num = int(input("\tGive a Number : "))

print()
factorial = 1
# check if the number is negative, positive or zero
if num < 0:
print("\tSorry, factorial does not exist for negative numbers")
elif num == 0:
print("\tThe factorial of 0 is 1.")
else:
for i in range(1,num + 1):
factorial = factorial*i
print("\tThe factorial of",num,"is",factorial,".")
print()
print("\tEnd of Program")
print()



Tuesday, December 22, 2020

Odd and Even Number in Python

Machine Problem

Write a python program to check whether a given number is an odd or even numbers.

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 at 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. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.







Program Listing


# Odd_Even_Numbers.py
# Jake Rodriguez Pomperada,MAED-IT, MIT
# www.jakerpomperada.com
# www.jakerpomperada.blogspot.com
# jakerpomperada@gmail.com
# Bacolod City, Negros Occidental Philippines


# Machine Problem
# Write a python program to check whether a given
# number is an odd or even numbers.

print()
print("\t Odd and Even Number in Python")
print()

num = int(input("\tGive a Number : "))

print()
#Using Bitwise Operator
if(num &1 ==1):
print("\tThe given number" ,num, 'is Odd number.')
else:
print("\tThe given number", num, 'is Even number.')
print()
print("\tEnd of Program")
print()


Leap Year Checker in Python

Leap Year Checker in Python

 Write a python program to check whether a given year is a leap year or not.

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 at 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. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.







Program Listing


# Leap_Year.py
# Jake Rodriguez Pomperada,MAED-IT, MIT
# www.jakerpomperada.com
# www.jakerpomperada.blogspot.com
# jakerpomperada@gmail.com
# Bacolod City, Negros Occidental Philippines


# Machine Problem
# Write a python program to check whether a given
# year is a leap year or not.

print()
print("\t Leap Year Checker in Python")
print()

year = int(input("\tGive a Year : "))

print()
if (year % 4 == 0 and year % 100 != 0 or year % 400 == 0):
print("\tThe year ",year, " is a leap year!")
else:
print("\tThe year " , year, " isn't a leap year!")
print()
print("\tEnd of Program")
print()


Saturday, December 19, 2020

Addition of Two Numbers in Python

Addition of Two Numbers in Python

 In this article I would like to discuss how to write a program to ask the user to give two numbers and then the program will compute the sum of two numbers using Python programming language.

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 at 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. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.






Program Listing


# Addition_Two_Numbers.py

# Jake Rodriguez Pomperada, MAED-IT, MIT

# www.jakerpomperada.com

# www.jakerpomperada.blogspot.com

# jakerpomperada@gmail.com

# Bacolod City, Negros Occidental Philippines


print()

print("\tAddition of Two Numbers in Python")

print()

a = int(input("\tEnter First Value    :  "))

b = int(input("\tEnter Second Value   :  "))


addition = (a+b)


print()

print("\tThe sum of {0} and {1} is {2}.".format(a,b,addition))

print()

print("\tEnd of Program")

print()


Product of Two Numbers in Python

Product of Two Numbers in Python

 A program to ask the user to give two numbers and then the program will compute the product of two given numbers using Python 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 at 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. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.







Program Listing


# product.py
# Jake Rodriguez Pomperada, MAED-IT, MIT
# www.jakerpomperada.com
# www.jakerpomperada.blogspot.com
# jakerpomperada@gmail.com
# Bacolod City, Negros Occidental Philippines

print()
print("\tProduct of Two Numbers in Python")
print()
a = int(input("\tEnter First Value    :  "))
b = int(input("\tEnter Second Value   :  "))

product = (a*b)

print()
print("\tThe product of {0} and {1} is {2}.".format(a,b,product))
print()
print("\tEnd of Program")
print()

Friday, December 18, 2020

Payroll System in C++ Using OOP Approach

Payroll System in C++ Using OOP Approach

  Machine Problem in C++

  Write a program to ask the user to give the employee's name, the number of days work, and rate per day. The program will compute the salary of the employee using object-oriented programming approach in 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 at 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. My website is www.jakerpomperada.blogspot.com and www.jakerpomperada.com

If you like this video please click the LIKE button, SHARE, and SUBSCRIBE to my channel.

Your support on my channel is highly appreciated.

Thank you very much.





Program Listing

/* 

 Machine Problem in C++
 
 Write a program to ask the user to give the employees name,
 number of days work, and rate per day. The program will
 compute the salary of the employee using object-oriented
 programming approach in C++.
 
 payroll.cpp
 Mr. Jake Rodriguez Pomperada, MAED-IT,MIT
 www.jakerpomperada.com
 www.jakerpomperada.blogspot.com
 jakerpomperada@gmail.com
 Bacolod City, Negros Occidental Philippines
 
 */

#include <iostream>
#include <iomanip>

using namespace std;


class payroll {

    private:

    string name;
    int days_work;
    float rate;
    float solve;

    public :

      int get_info();
      void display_info();
};

 int payroll :: get_info()
 {

     cout << "\n\n";
     cout << "\tPayroll System in C++ Using OOP Approach";
     cout << "\n\n";
cout << "\tEnter Employees Name     : ";
     getline(cin,name);
     cout << "\tEnter No. of Days Worked : ";
     cin >> days_work;
     cout << "\tEnter Daily Rate         : ";
     cin >> rate;
     cout << fixed << setprecision(2);
     solve = (days_work * rate);
 }

 void payroll ::display_info()
    {

     cout << "\n\n";
     cout << "\t==== DETAILED REPORT =====";
     cout << "\n\n";
     cout << "\tEmployees Name     : " << name <<"\n";
     cout << "\tEmployees Salay is : $" << solve <<"\n";
     cout << "\n\n";
    }


    main() {
        payroll emp;
        emp.get_info();
        emp.display_info();

    }



Login System With Asterisk in C++