Sunday, January 10, 2021

Multiply and Division of Two Numbers in JavaScript

 I wrote this simple program to ask the user to give two numbers and then the program will compute the product and quotient of two numbers using JavaScript 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

<!DOCTYPE html>
<html> 
<head>
<meta charset=utf-8 />
<title>Multiply and Division of Two Numbers in JavaScript </title>
<style type="text/css">
body {
    background-color: lightgreen;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    }
</style> 
</head>
<script>
    function multiply()
{
        num1 = document.getElementById("firstvalue").value;
        num2 = document.getElementById("secondvalue").value;
        document.getElementById("result").innerHTML = num1 * num2;
}

function divide()
        num1 = document.getElementById("firstvalue").value;
        num2 = document.getElementById("secondvalue").value;
        solve_divide = num1/num2;
        document.getElementById("result").innerHTML = solve_divide.toFixed(2);
}

function clear_all()
{
    document.getElementById("firstvalue").value="";
    document.getElementById("secondvalue").value="";
    document.getElementById("result").innerHTML = ""
    document.getElementById("firstvalue").focus();
}

</script>
<body>
   <h3>Multiply and Division of Two Numbers in JavaScript </h3>
   <p> Create By Mr. Jake R. Pomperada,MAED-IT, MIT </p><br>
<form>
First  Value  :  <input type="text" id="firstvalue" /><br>
Second Value  :  <input type="text" id="secondvalue" /><br><br>
<input type="button" onClick="multiply()" Value="Multiply" 
 title="Click here to multiply the two given numbers."/>
<input type="button" onClick="divide()" Value="Divide" 
title="Click here to divide two given numbers."/> &nbsp;
<input type="button" onClick="clear_all()" Value="Clear" 
title="Click here to clear the textbox."/>
</form><br>
<p>The Result is 
<span id = "result"></span>
</p>
</body>
</html>


Computer Networking Services in Bacolod City

 


Need IT Service for your Home and Office Networking needs here in Bacolod City?

Look no more I offer my services in Computer Networking at a very affordable cost, full technical support, and fast, reliable service.

Services Offered

* Home Computer Networking 

* Small Business PC Networking Setup and Configuration

* Linux and Windows Server Setup and Configuration

* Internet Networking

* File and Printer Networking Setup and Configuration

* Computer Network Troubleshooting and Repair

* Computer Repair and Maintenance


Jake R. Pomperada

You can contact me at my mobile number 09173084360

my email address at jakerpomperada@gmail.com

My Facebook Address is https://www.facebook.com/profile.php?id=100009212511791

Thank you so much

Friday, January 8, 2021

Ping Command in Windows Command Line

US Dollar To Philippine Peso in PHP

US Dollar to Philippine Peso in PHP

 I wrote this simple program to ask the user to give us dollar value and then the program can convert the given us dollar into Philippine Peso currency value using PHP 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

<html>
  <head> 
   <title>US Dollar to Philippine Peso in PHP </title>
  </head>
  <body> 
      <style type="text/css">
      
      body {
        font-family: arial;
            size: 12px;
      };

        </style>
    <?php
 
     $us_dollar = $_POST['us_dollar'];

  
   if(isset($_POST['submit'])) {
                  
      $phil_peso = ($us_dollar * 48.15);

      $results ="The Philippine Peso
       equivalent of $us_dollar US Dollar is PHP ".number_format($phil_peso,2);
    }

 if(isset($_POST['clear'])) {
      $us_dollar = "";
      $results = "";
    }
?>

  <h2> US Dollar to Philippine Peso in PHP </h2>
  <p> Mr. Jake Rodriguez Pomperada,MAED-IT, MIT </p>
<form method="post">
   <p>Give US Dollar <input 
    type="numeric" name="us_dollar"
     value="<?php echo $us_dollar; ?>" autofocus required /></p>
      
<input type="submit" name="submit" 
   title="Click here to compute the Philippine Peso value. "
   value="Submit" />
   
    &nbsp;&nbsp;&nbsp;
    <input type="submit" name="clear" 
    title="Click here to clear the textbox."
    value="Clear" />
</form>

<?php
   echo $results;
?>
</body>
</html>


Thursday, January 7, 2021

US Dollar to Philippine Peso in C#

US Dollar To Philippine Peso in C#

 I wrote this simple program to ask the user to give us dollar value and then the program can convert the given us dollar into Philippine Peso currency value 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 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

Form1.cs

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace WindowsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            double compute=0.00;

            if (textBox1.Text == "")
            {

                MessageBox.Show("Cannot Be Empty. Try Again");
                textBox1.Focus();
            }
            else
            {

                compute = Convert.ToDouble(textBox1.Text) * 48.62;
                textBox2.Text = compute.ToString("PHP 00.00");
            }
        }

        private void button2_Click(object sender, EventArgs e)
        {
            textBox1.Text = "";
  
            textBox2.Text = "";

            textBox1.Focus();
        }

        private void button3_Click(object sender, EventArgs e)
        {
            this.Close();
        }
    }
}

US Dollar To Philippine Peso in Visual FoxPro

US Dollar To Philippine Peso in Visual FoxPro

  I wrote this simple program to ask the user to give us dollar value and then the program can convert the given us dollar into Philippine Peso currency value 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 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


Compute Button

result = ROUND(VAL(thisform.text1.Value) * 48.03,2)

thisform.text2.value = result


Clear Button

thisform.text1.value = ""
thisform.text2.value = ""
thisform.text1.SetFocus

Quit Button

thisform.Release


US Dollar To Philippine Peso in Visual Basic 6

US Dollar To Philippine Peso in Visual Basic 6

 I wrote this simple program to ask the user to give us dollar value and then the program can convert the given us dollar into Philippine Peso currency value.

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

Private Sub Command1_Click()
Dim compute As Double
Dim Philippine_Peso As Double

Philippine_Peso = 48.07

compute = Val(Text1.Text) * Philippine_Peso

Text2.Text = "Php " + Trim(Format$(compute, "#####,#####.##"))
End Sub

Private Sub Command2_Click()
Text1.Text = ""
Text2.Text = ""
Text1.SetFocus
End Sub

Private Sub Command3_Click()
End
End Sub



Wednesday, January 6, 2021

US Dollar To Philippine Peso in Java

US Dollar to Philippine Peso in Java

  Machine Problem in Java

  Write a program that will ask for the user to input a certain amount in US Dollar and it will give you its equivalent amount into Philippine Peso.

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


import java.util.Scanner;

import java.math.RoundingMode;

import java.text.DecimalFormat;


/**

 * Machine Problem in Java

 * 

 * Write a program that will ask for the user to input a certain amount in US Dollar

 * and it will give you its equivalent amount into Philippine Peso.

 * 

 * @author Jake Rodriguez Pomperada, MAED-IT, MIT

 * jakerpomperada@gmail.com

 * www.jakerpomperada.com

 * Bacolod City, Negros Occidental

 * January 6, 2020 Wednesday

 */

public class USDollar_Philippine_Peso {

private static DecimalFormat df2 = new DecimalFormat("#.##");


public static void main(String[] args) {

// TODO Auto-generated method stub

    double ustopeso = 48.04;

        double us=0.00;

        

        Scanner reader = new Scanner(System.in);

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

    System.out.print("\t\tUS Dollar to Philippine Peso in Java");

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

    

    System.out.print("\tGive amount in US Dollar : ");

        us = reader.nextDouble();

        double amountinpeso = us*ustopeso;

        

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

        System.out.println("\tThe value in Philippine Peso is PHP " +df2.format(amountinpeso));

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

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

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


}


}




Monday, January 4, 2021

Compound Interest in C# Using Windows Form

Compound Interest in C# Using Windows Form

  A program that will compute the compound interest of a loan using C# programming language which uses Windows Form as its user interface.

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

using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using System.Windows.Forms;


namespace Simple_Interest

{

    public partial class Form1 : Form

    {

        public Form1()

        {

            InitializeComponent();

        }


     


        private void button1_Click(object sender, EventArgs e)

        {

            double amount, interest;

            double time;

            double compound_interest;

                        

            amount = Convert.ToDouble(textBox1.Text);


            interest = Convert.ToDouble(textBox2.Text);


            time = Convert.ToDouble(textBox3.Text);


            compound_interest = amount * (Math.Pow((1 + interest / 100), time)); 


            textBox4.Text = compound_interest.ToString("0.00");


        }


        private void button2_Click(object sender, EventArgs e)

        {

            textBox1.Text = "";


            textBox2.Text = "";


            textBox3.Text = "";


            textBox4.Text = "";


            textBox1.Focus();

        }


        private void button3_Click(object sender, EventArgs e)

        {

            this.Close();

        }

    }

}


Simple Interest in C# Using Windows Form

Simple Interest in C# Using Windows Form

 A program that will compute the simple interest of a loan using C# programming language which uses Windows Form as its user interface.

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


using System;

using System.Collections.Generic;

using System.ComponentModel;

using System.Data;

using System.Drawing;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using System.Windows.Forms;


namespace Simple_Interest

{

    public partial class Form1 : Form

    {

        public Form1()

        {

            InitializeComponent();

        }


        private void button1_Click(object sender, EventArgs e)

        {

            double amount, interest, time;


            double simple_interest;


            

            amount = Convert.ToDouble(textBox1.Text);


            interest = Convert.ToDouble(textBox2.Text);


            time = Convert.ToDouble(textBox2.Text);


            simple_interest = amount * interest * time / 100;


            textBox4.Text = simple_interest.ToString("0.00");


        }


        private void button2_Click(object sender, EventArgs e)

        {

            textBox1.Text = "";


            textBox2.Text = "";


            textBox3.Text = "";


            textBox4.Text = "";


            textBox1.Focus();

        }


        private void button3_Click(object sender, EventArgs e)

        {

            this.Close();

        }

    }

}


Sunday, January 3, 2021

Addition of Two Numbers Using C in Ubuntu Linux

Addition of Two Numbers Using C in Ubuntu Linux

 A simple program to ask the user to give two numbers and then it will solve the sum of two numbers using C programming language in Ubuntu Linux.

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

#include <stdio.h>

int main()

{

  int x=0, y=0, sum=0;

  printf("\n");

  printf("Addition of Two Numbers Using C in Ubuntu Linux");

  printf("\n\n");

  printf("\tGive Two Numbers : ");

  scanf("%d%d", &x, &y);

  sum = x + y;

  printf("\n");

  printf("\tSum of %d and %d is %d.",x,y,sum);

  printf("\n\n");

  return 0;

}

Saturday, January 2, 2021

Cube a Number in Java

Cube a Number in Java

 Machine Problem in Java

Write a program to ask the user to give a number and then the program will compute the cube value of the given number by the user.

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 to ask the user to give a number and then the 
program will compute the cube value of the given number by
the user.

 @author Jake Rodriguez Pomperada,MAED-IT, MIT
 www.jakerpomperada.com / www.jakerpomperada.blogspot.com
 jakerpomperada@gmail.com
 Bacolod City, Negros Occidental Philippines
 January 2, 2021 Friday  5:48 PM
*/

import java.util.*;

public class Cube_Number {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc=new Scanner(System.in);
     int num=0;
     
     System.out.println();  
    System.out.println("\tCube a Number in Java");
    System.out.println();
  
     System.out.print("\tGive a Number : ");
     num=sc.nextInt();
  
     System.out.println();
    System.out.println("\tSquare of "+ num + " is "+ Math.pow(num, 3));
     System.out.println();
     System.out.println("\tEnd of Program");
     System.out.println("\n");

}
}

Square a Number in Java

Square a Number in Java

Machine Problem in Java

Write a program to ask the user to give a number and then the program will compute the square value of the given number by the user.

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 to ask the user to give a number and then the 

program will compute the square value of the given number by

the user.


 @author Jake Rodriguez Pomperada,MAED-IT, MIT

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

 jakerpomperada@gmail.com

 Bacolod City, Negros Occidental Philippines

 January 2, 2021 Friday  2:44 PM

*/


import java.util.*;


public class Square_Number {


public static void main(String[] args) {

// TODO Auto-generated method stub

Scanner sc=new Scanner(System.in);

        int num=0;

        

        System.out.println();  

    System.out.println("\tSquare a Number in Java");

    System.out.println();

     

        System.out.print("\tGive a Number : ");

        num=sc.nextInt();

     

        System.out.println();

    System.out.println("\tSquare of "+ num + " is "+ Math.pow(num, 2));

        System.out.println();

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

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

}


}