Wednesday, November 4, 2020

Prime Number Checker Using ASP.NET

 In this tutorial, I show you how to write a program using VB.NET and ASP.NET to ask the user to give a number and then the program will check if the given number is a prime number or not.

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

Default.aspx.vb

Public Class _Default

    Inherits System.Web.UI.Page


    Protected Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button1.Click

        Dim a As Integer


        a = Val(txtNumber.Text)

        Dim N, D As Single

        Dim tag As String


        N = Val(TxtNumber.Text)


        Select Case N

            Case Is < 2

                Label1.Text = "The given number " & N & " is not a prime number."


            Case Is = 2

                Label1.Text = "The given number " & N & " is a prime number."


            Case Is > 2

                D = 2

                Do

                    If N / D = Int(N / D) Then

                        Label1.Text = "The given number " & N & " is not a prime number."

                        tag = "Not Prime"

                        Exit Do

                    End If

                    D = D + 1


                Loop While D <= N - 1

                If tag <> "Not Prime" Then

                    Label1.Text = "The given number " & N & " is a prime number."

                End If

        End Select



    End Sub


    Protected Sub Button2_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button2.Click

        txtNumber.Text = ""

        Label1.Text = ""

        txtNumber.Focus()

    End Sub

End Class


Default.aspx


<%@ Page Title="Addition of Two Numbers Using ASP.NET" Language="vb" MasterPageFile="~/Site.Master" AutoEventWireup="false"

    CodeBehind="Default.aspx.vb" Inherits="demo._Default" %>


<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">

    <style type="text/css">

        .style1

        {

            font-size: medium;

        }

        .style2

        {

            font-family: Arial, Helvetica, sans-serif;

            font-size: medium;

        }

        </style>

</asp:Content>

<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">

    <h2 class="style2">

        C<strong>reated By Mr. Jake R. Pomperada, MAED-IT, MIT</strong></h2>

    <p class="style1">

        <strong>Enter first value&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

        <asp:TextBox ID="txtNumber" runat="server" 

            style="font-size: medium; font-family: Arial, Helvetica, sans-serif"></asp:TextBox>

        </strong>

    </p>

    <p class="style1">

        <strong>&nbsp;<asp:Label ID="Label1" runat="server"></asp:Label>

        &nbsp;&nbsp;

        </strong>

    </p>

    <p class="style1">

        <strong>&nbsp;&nbsp; &nbsp;&nbsp;

        </strong>

        <asp:Button ID="Button1" runat="server" Font-Bold="True" Height="29px" 

            style="font-size: medium; text-align: center" Text="Check" Width="63px" 

            

            ToolTip="Click here to check if the given number is prime number or not." />

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

        <asp:Button ID="Button2" runat="server" Font-Bold="True" Height="29px" 

            style="font-size: medium; text-align: center" Text="Clear" Width="63px" 

            ToolTip="Click here to clear the text box." />

    </p>

    <p class="style1">

        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;</p>

    <p>

        &nbsp;</p>

</asp:Content>



Product of Two Numbers in ASP NET

Product of Two Numbers in ASP.NET

 I wrote this simple program using vb.net and asp.net to ask the user to give a number and then the program will compute the product of two numbers and display the results 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 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





Program Listing


default.aspx

<%@ Page Title="Home Page" Language="vb" MasterPageFile="~/Site.Master" AutoEventWireup="false"

    CodeBehind="Default.aspx.vb" Inherits="Product_of_Two_Numbers_in_ASP.NET._Default" %>


<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">

    <style type="text/css">

        .style1

        {

            font-size: medium;

        }

    </style>

</asp:Content>

<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">

    <h2>

        <strong><b>Product of Two Numbers in ASP.NET</b>

    </strong>

    </h2>

    <p class="style1">

        <strong>Give First Value&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;

        <asp:TextBox ID="txtvalue1" runat="server" style="font-size: medium"></asp:TextBox>

        </strong>

    </p>

    <p class="style1">

        <strong>Give Second Value&nbsp; &nbsp;&nbsp;&nbsp;

        <asp:TextBox ID="txtvalue2" runat="server" style="font-size: medium"></asp:TextBox>

        </strong>

    </p>

    <p class="style1">

        <asp:Label ID="Label1" runat="server" style="font-weight: 700"></asp:Label>

    </p>

    <p class="style1">

        <asp:Button ID="Button1" runat="server" Font-Bold="True" Font-Size="14pt" 

            Text="Compute" 

            ToolTip="Click here to compute the product oft two numbers." />&nbsp;&nbsp;&nbsp;&nbsp;

        <asp:Button ID="Button2" runat="server" Font-Bold="True" Font-Size="14pt" 

            Text="Clear" ToolTip="Click here to clear the textbox." />

    </p>

    <p class="style1">

        &nbsp;</p>

    </asp:Content>


default.aspx.vb

Public Class _Default
    Inherits System.Web.UI.Page


    Protected Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button1.Click
        Dim a, b, product As Integer

        a = Val(txtvalue1.Text)
        b = Val(txtvalue2.Text)

        product = (a * b)

        Label1.Text = "The product of " & a & " and " & b & " is " & product & "."
    End Sub

    Protected Sub Button2_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button2.Click
        txtvalue1.Text = ""
        txtvalue2.Text = ""
        Label1.Text = ""
        Label1.Focus()
    End Sub
End Class

Tuesday, November 3, 2020

Product and Quotient of Two Numbers in Java

Product and Quotient of Two Numbers in Java

 In this article, I show you how to write a program that will ask the user to give two numbers, and then the program will compute the product and quotient of two numbers 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 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







Program Listing


import java.util.Scanner;


/**

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

 * jakerpomperada@gmail.com

 * www.jakerpomperada.com

 * Bacolod City, Negros Occidental

 * November 3, 2020

 */


public class Product_Quotient {


public static void main(String[] args) {

// TODO Auto-generated method stub

  

int num_1=0,num_2=0;

 

int product=0,quotient=0;             

  

  String input;                

      

      Scanner keyboard = new Scanner(System.in);

           

         

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

      System.out.print("\t\tProduct and Quotient of Two Numbers in Java");

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

             

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

         num_1 = keyboard.nextInt();

         

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

         num_2 = keyboard.nextInt();

         

         product = (num_1 * num_2);

         

         quotient = (num_1 / num_2);


        System.out.println();

         System.out.println("\tThe product of " + num_1 + " and " +

                         num_2 + " is " + product + ".\n");

         System.out.println("\tThe quotient of " + num_1 + " and " +

                     num_2 + " is " + quotient + ".");    

     

                

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

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

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


}


}


Sum and Difference of Two Numbers in Java

Sum And Difference of Two Numbers in Java

 In this article, I show you how to write a program that will ask the user to give two numbers and then the program will compute the product and difference of two numbers 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 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





Program Listing


import java.util.Scanner;


/**

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

 * jakerpomperada@gmail.com

 * www.jakerpomperada.com

 * Bacolod City, Negros Occidental

 * November 3, 2020

 */



public class Sum_Difference {


/**

* @param args

*/

public static void main(String[] args) {

// TODO Auto-generated method stub

int num_1=0,num_2=0;

int sum=0,difference=0;             

    String input;                

      

      

      Scanner keyboard = new Scanner(System.in);

           

         

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

      System.out.print("\t\tSum And Difference of Two Numbers in Java");

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

             

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

         num_1 = keyboard.nextInt();

         

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

         num_2 = keyboard.nextInt();

         

         sum = (num_1 + num_2);

         

         difference = (num_1 - num_2);


        System.out.println();

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

                         num_2 + " is " + sum + ".\n");

         System.out.println("\tThe difference between " + num_1 + " and " +

                     num_2 + " is " + difference + ".");    

     

                

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

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

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

}

}


Monday, November 2, 2020

Factorial of a Number in ASP.NET

Factorial of a Number in ASP.NET

 A program that I wrote using vb.net and asp.net to ask the user to give a number and then the program will compute the factorial number based on the given number by the user.

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




Program Listing

Public Class _Default

    Inherits System.Web.UI.Page


   

    Protected Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button1.Click

        Dim n, f, i As Integer

        f = 1

        n = Val(TextBox1.Text)

        For i = 1 To n

            f = f * i

        Next

        Label1.Text = "The factorial value is " & f & "."

    End Sub


    Protected Sub Button2_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button2.Click

        Label1.Text = ""

        TextBox1.Text = ""

        TextBox1.Focus()

    End Sub

End Class


Adding Decimal Places in C++

Adding Decimal Places in C++

 I wrote this simple program to demonstrate how to add decimal places in 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 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 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


Program Listing

// divide.cpp
// Jake Rodriguez Pomperada,MAED-IT,MIT
// www.jakerpomperada.com  / www.jakerpomperada.blogspot.com
// jakerpomperada@gmail.com

#include <iostream>
#include <iomanip>

int main()
{
    double num1 = 1;
    double num2 = 2;

    double divide = (num1 / num2);

    std::cout <<"\n\n";
    std::cout <<"\tAdding Decimal Places in C++";
    std::cout <<"\n\n";
    std::cout <<"\t===== Display Results =====\n\n";
    std::cout << "\t";
    std::cout << std::fixed << std::showpoint;
    std::cout << std::setprecision(2);
    std::cout << divide << std::endl;
    return 0;
}

Sunday, November 1, 2020

The if conditional statement in PHP

String Palindrome in Pascal

 A simple program that I wrote using Pascal to check if the given string or number is a palindrome or not a palindrome.

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


Program Listing


(* Palindrome.Pas *)

(* Author    : Mr. Jake Rodriguez Pomperada, MAED-IT, MIT *)

(* Webite    : www.jakerpomperada.com  / www.jakerpomperada.blogspot.com *)

(* Email     : jakerpomperada@gmail.com    *)

(* Location  : Bacolod City, Negros Occidental, Philippines *)


program Palindrome;


var

  S: string;

  i, f: integer;

begin

  writeln;

  Write('String Palindrome in Pascal');

  writeln;

  writeln;

  f := 0;

  Write('Give a String : ');

  Readln(S);


  writeln;

  for i := 1 to length(S) div 2 do

    if s[i] <> s[length(s) - i + 1] then

    begin

      Write('The given string ', S, ' is not a Palindrome.');

      f := 1;

      break;

    end;

  if f = 0 then

  begin

    Write('The given string ', S, ' is a Palindrome.');

  end;

  writeln;

  writeln;

  Write('End of Program');

  Readln;

end.

The if conditional statement in PHP

 In this tutorial, I will discuss how to declare the if conditional statement 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 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 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


Program Listing

<?php


// The if conditional statement in PHP

// Jake R. Pomperada, MAED-IT, MIT

// www.jakerpomperada.com

// jakerpomperada@gmail.com

// Bacolod City, Negros Occidental Philippines



echo "<h4>


</h4>";


$age = 6;


if ($age>=18) {


echo "At the age of $age you are already an Adult.";

}


if ($age<18) {

echo "At the age of $age you are still a Minor.";

}


?>

V-Shape Model in Software Development

String Concatenation in PHP

String Concatenation in PHP

 A simple program that I wrote to demonstrate how to use string concatenation in 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 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 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


Program Listing


<?php

// String Concatenation in PHP

// Jake R. Pomperada, MAED-IT, MIT

// www.jakerpomperada.com

// jakerpomperada@gmail.com


$title = "Introduction";

$title .= " PHP ";

$title .= " Programming ";

$title .= "By Jake R. Pomperada";


echo "<h4>String Concatenation in PHP</h4>";

echo "<i> $title </i>";


?>

Menu Program in C++

 A simple program that I wrote to demonstrate how to create a menu program using C++ programming.

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


Program Listing


// Created By: Mr. Jake Rodriguez Pomperada, MAED-IT, MIT

// Date    : October 31, 2020 Saturday

// Tool    : C++

// Email   : jakerpomperada@gmail.com

// Website : www.jakerpomperada.com

// Place   : Bacolod City, Negros Occidental


#include <iostream>


using namespace std;



void  menu()

{

    char choice;

    do {

   

        system("cls");

        cout << "\n\t\t\tMenu Program in C++";

        cout << "\n\n\t Created By: Mr. Jake R. Pomperada,MAED-IT,MIT";

        cout << "\n\n";

        cout << "\n\t\t\t [1] Add Record ";

        cout << "\n\t\t\t [2] Edit Record ";

        cout << "\n\t\t\t [3] Delete Record ";

        cout << "\n\t\t\t [4] View Record ";

        cout << "\n";

cout << "\n\t\t\t [5] Quit Program ";

        cout << "\n\n";

        cout << "\n\t\t Enter Your Choice :=> ";

        cin >> choice;

        if (choice == '1') {

            cout << "\n\n You select Add";

            cout << "\n\n";

            system("pause");

            menu();

        }

        else if (choice == '2') {

            cout << "\n\n You select Edit";

            cout << "\n\n";

            system("pause");

            menu();

        }

    else if (choice == '3') {

            cout << "\n\n You select Delete";

            cout << "\n\n";

            system("pause");

            menu();

        }

        else if (choice == '4') {

            cout << "\n\n You select View";

            cout << "\n\n";

            system("pause");

            menu();

        }

         else if (choice == '5') {

            cout << "\n\n\tThanks for using this program and return to OS.";

            cout << "\n\n";

break;

        }

     else if (choice != '5') {

         cout << "\n\n\n \t\t\t Invalid Option Try Again...";

         cout << "\n\n";

         system("pause");

    }


 } while (choice != '5');

}


// Main Program

int main()

{

  menu();

}



Addition of Three Numbers in PHP Using Functions