Saturday, November 9, 2019

Seconds to Hours,Minutes and Seconds Converter in PERL

Create and design a program that will ask the user to give the number in seconds and then the program will convert its hours, minutes and seconds equivalent and display the result on the screen using Perl 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 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/

Thank you very much for your help and support.

Sample Program Output


Program Listing

# temp.pl
# Author    :  Jake Rodriguez Pomperada,MAED-IT
# Date        :  November 9, 2019  Saturday    9:00 AM
# Location  :  Bacolod City, Negros Occidental
# Tools        :  Perl  5 and Visual Studio Code Version 1.37.0
# Websites :  www.jakerpomperada.com   and www.jakerpomperada.blogspot.com
# Email       :  jakerpomperada@gmail.com

print "\n";
printf("\tSeconds to Hours,Minutes and Seconds Converter in PERL");
printf("\n\n");
printf("\tHow many seconds : ");
chomp($time =<>);

# Conversion starts here 

$hours = int($time / 3600);
$minutes = int(($time % 3600) / 60);
$seconds = int(($time % 3600) % 60);

printf("\n");
printf("\t===== DISPLAY RESULTS =====");
printf("\n\n");
printf("\tHour(s)   : %d ",$hours);
printf("\n");
printf("\tMinute(s) : %d ",$minutes);
printf("\n");
printf("\tSecond(s) : %d ",$seconds);
print "\n\n";
print "\tEnd of Program";
print "\n";







Celsius To Fahrenheit Temperature in PERL


Create and design a program that will ask the user to give temperature value in Celsius and convert it into Fahrenheit temperature equivalent and display the result and 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 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/

Thank you very much for your help and support.


Sample Program Output


Program Listing

# temp.pl
# Author    :  Jake Rodriguez Pomperada,MAED-IT
# Date        :  November 9, 2019  Saturday    8:55 AM
# Location  :  Bacolod City, Negros Occidental
# Tools        :  Perl  5 and Visual Studio Code Version 1.37.0
# Websites :  www.jakerpomperada.com   and www.jakerpomperada.blogspot.com
# Email       :  jakerpomperada@gmail.com

print "\n\n";
printf("\tCelsius To Fahrenheit Temperature in PERL");
printf("\n\n");
printf("\tGive the Temparature in Celsius : ");
chomp($celsius =<>);

 # Converting Celsius into Fahrenheit here 
 $fahrenheit = (1.8 * $celsius) + 32;

printf("\n");
printf("\tTemperature in Fahrenheit is %.2f\370F. ",$fahrenheit);
print "\n\n";
print "\tEnd of Program";
print "\n";




Money Denomination Checker in PERL


Create and design a program that will ask the amount from the user and then our program will count how many one thousand, five hundred, two hundred,  one hundred, fifty and twenty bills based here in the Philippine currency using Perl 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/

Thank you very much for your help and support.



Sample Program Output


Program Listing

# bills.pl
# Author    :  Jake Rodriguez Pomperada,MAED-IT
# Date        :  November 9, 2019  Saturday    7:33 AM
# Location  :  Bacolod City, Negros Occidental
# Tools        :  Perl  5 and Visual Studio Code Version 1.37.0
# Websites :  www.jakerpomperada.com   and www.jakerpomperada.blogspot.com
# Email       :  jakerpomperada@gmail.com

print "\n\n";
print "\tMoney Denomination  Checker in PERL";
print "\n\n";
print "\tGive the amount of money : PHP  ";
chomp($amt  =<>);

  # Conversion start here 

 $thousand = int($amt/1000);
 $amt =  int($amt%1000);
 $five_hund = int($amt/500);
 $amt = int($amt%500);
 $two_hundreds =int($amt/200);
 $amt = int($amt%200);
 $hundreds = int($amt/100);
 $amt = int($amt%100);
 $fifty = int($amt/50);
 $amt = int($amt%50);
 $twentys = int($amt/20);
 $amt = int($amt%20);

print "\n";
print "\t===== DISPLAY RESULT =====";
print  "\n\n";
print  "\tNumber of  PHP 1000 Pesos notes   :  $thousand\n";
print  "\tNumber of  PHP 500 Pesos notes    :  $five_hund \n";
print  "\tNumber of  PHP 200 Pesos notes    :  $two_hundreds\n";
print  "\tNumber of  PHP 100 Pesos notes    :  $hundreds\n";
print  "\tNumber of  PHP  50 Pesos notes    :  $fifty\n";
print  "\tNumber of  PHP  20 Pesos notes    :  $twentys";
print "\n\n";
print "\tEnd of Program";
print "\n";



Payroll Program in PERL

Write and design a payroll program that will ask the user how many days an employee
works in the company and then the salary rate per day. In addition, the program also
will ask the user the SSS, PAG-IBIG, BIR and PHILHEALTH contributions. The payroll
program will compute the gross salary, total deductions, and net salary and display the
result 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 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/

Thank you very much for your help and support.



Sample Program Output


Program Listing

# payroll.pl
# Author    :  Jake Rodriguez Pomperada,MAED-IT
# Date        :  November 9, 2019  Saturday    8:31 AM
# Location  :  Bacolod City, Negros Occidental
# Tools        :  Perl  5 and Visual Studio Code Version 1.37.0
# Websites :  www.jakerpomperada.com   and www.jakerpomperada.blogspot.com
# Email       :  jakerpomperada@gmail.com

print "\n\n";
print "\tPayroll Program in PERL";
print "\n\n";
printf("\tHow Many Days Work : ");
chomp($days  =<>);
printf("\n");
printf("\tSalary Per Day     : PHP ");
chomp($rate  =<>);
printf("\n\n");
  
 # Solving Gross Salary Here 

 $solve_gross = ($days * $rate);
        
printf("\tGross Salary            : PHP %.2f ",$solve_gross);
printf("\n\n");
printf("\tSSS Contribution        : PHP ");
chomp($sss  =<>);
printf("\tPAG-IBIG Contribution   : PHP ");
chomp($pag_ibig  =<>);
printf("\tBIR Contribution        : PHP ");
chomp($bir  =<>);
printf("\tPHILHEALTH Contribution : PHP ");
chomp($philhealth  =<>);
   
    # Solving Total Deductions and Net Salary Here 
    
    $total_deductions = ($sss+$pag_ibig+$bir+$philhealth);
    $solve_net_salary = ($solve_gross - $total_deductions);
   
    printf("\n\n");
    printf("\tDisplay Payroll Results");
    printf("\n\n");
    printf("\tGross Salary     : PHP %.2f\n",$solve_gross);
    printf("\tTotal Deductions : PHP %.2f\n",$total_deductions);
    printf("\n\n");
    printf("\tNet Salary       : PHP %.2f",$solve_net_salary);
    print "\n\n";
    print "\tEnd of Program";
    print "\n";






Friday, November 8, 2019

Simple Student Grading System in Java

A simple student grading system written in Java 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?...

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.


Program Listing


import java.util.Scanner;


public class grading_system
{

    public static void main(String[] args) 
    {
        double firstG,secondG,thirdG,fourthG,totalS,avg;
         
         System.out.print("Enter 1st grading: ");
         Scanner sc = new Scanner(System.in);
         firstG = sc.nextDouble();
         System.out.print("Enter 2nd grading: ");
         Scanner sc1 = new Scanner(System.in);
         secondG = sc1.nextDouble();
         if(final_grade <= 75)
         { System.out.println("\nRemarks: POOR"); }
         else if(final_grade <= 80)
         { System.out.println("\nRemarks: NI"); }
         else if(final_grade <= 85)
         { System.out.println("\nRemarks: GOOD"); }
         else if(final_grade <= 90)
         { System.out.println("\nRemarks: VERY GOOD"); }
         else
         { System.out.println("\nRemarks: EXCELLENT"); }
    }
    
}


Minor and Adult Checker Using If Else Statement in Java

A simple program to check if the given age by the user is already an Adult or still a Minor using Java 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/

Thank you very much for your help and support.


Program Listing

import java.util.*;

public class ifelsedemo 
{
    public static void main(String[] args) 
    {
        int age;
        
        System.out.print("Enter your age: ");
        Scanner sc = new Scanner(System.in);
        age = sc.nextInt();
        
        if(age <= 17)
        {
            System.out.println("\nYour age belongs to MINOR");
        }
        else
        {
            System.out.println("\nYour age belongs to an ADULT");
        }
    }
}

What is the best programming language to learn for beginners?

Benefits of Learning Computer Programming

Thursday, November 7, 2019

Switch Statement Demo in Java

A simple switch statement demo in Java 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?...

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.


Program Listing

import java.util.*;

public class switchdemo 
{
    public static void main(String[] args) 
    {
        int signal;
        
        System.out.print("Enter typhoon signal: ");
        Scanner sc = new Scanner(System.in);
        signal = sc.nextInt();
        switch(signal)
        {
         case 1:
         System.out.println("\nAll PRE-ELEM level classes are suspended.");
         break;
         case 2:
         System.out.println("\nAll classes on PRE-ELEM & HIGH SCHOOL are suspended.");
         break;
         case 3:
         System.out.println("\nClasses on different levels are suspended.");
         break;
         default:
         System.out.println("\nSTAY AT HOME AND PRAY.");
        }
    }
}

Simple Payroll in Java

A simple payroll in Java 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?...

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.


Program Listing

import java.util.*;

public class operatordemo 
{
    public static void main(String[] args) 
    {
        double num1, num2, res;
        
        System.out.print("Enter your salary: ");
        Scanner sc = new Scanner(System.in);
        num1 = sc.nextDouble();
        System.out.print("Days present: ");
        Scanner sc1 = new Scanner(System.in);
        num2 = sc1.nextDouble();
        res = num1 * num2 / 15;
        
        System.out.println("Your net salary is: "+res);
    }
    
}

if else if statement in Java

A simple program in Java demonstrates how to declare and use if-else if statement in Java.

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?...

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.


Program Listing

import java.util.*;

public class ifelseifdemo 
{
    public static void main(String[] args) 
    {
         double final_grade;
         System.out.print("Enter your final grade: ");
         Scanner sc = new Scanner(System.in);
         final_grade = sc.nextDouble();
         if(final_grade <= 75)
         { System.out.println("\nRemarks: POOR"); }
         else if(final_grade <= 80)
         { System.out.println("\nRemarks: NI"); }
         else if(final_grade <= 85)
         { System.out.println("\nRemarks: GOOD"); }
         else if(final_grade <= 90)
         { System.out.println("\nRemarks: VERY GOOD"); }
         else
         { System.out.println("\nRemarks: EXCELLENT"); }
    }
}





Addition of Two Numbers in VB.NET

Addition of Two Numbers in VB.NET

I wrote this program to ask the user to give two integer number and then the program will compute the sum of two numbers using Visual Basic NET 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?...

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.




Sample Program Output



Program Listing

Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim sum, a, b

        a = Val(TextBox1.Text)
        b = Val(TextBox2.Text)

        sum = (a + b)

        Label4.Text = "The sum of " & a & " and " & b & " is " & sum & "."
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        TextBox1.Text = ""
        TextBox2.Text = ""
        Label4.Text = ""
        TextBox1.Focus()
    End Sub

    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
        End
    End Sub
End Class