Thursday, July 4, 2019

Decimal To Binary Number Converter

A program that I wrote using C language to ask the user to give a decimal number value and then convert it into its binary equivalent.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com



Sample Program Output


Program Listing

#include<stdio.h>

#include<conio.h>

int main()
{
long int d;
int i=0,a[25],j;
printf("\tDecimal To Binary Number Converter");
printf("\n\n");
printf("Enter the Decimal No.:");
scanf("%d",&d);
while(d>0)
{
a[i]=d%2;
d=d/2;
i++;
}
printf("Binary Number Equivalent : ");
for (j=i-1;j>=0;j--)
printf("%d",a[j]);
getch();
}

Area of the Circle Solve in ASP

Here is a simple script that I wrote using ASP to solve the area of the circle.

A basic program to add the sum of two numbers using classic ASP (Active Server Pages) it uses VBScript as its native language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com




Sample Program Output

Program Listing

circle.htm

<!DOCTYPE html>
<html>
<style>
body {
 font-family:arial;
 size:12px;
}
</style>
<body>
<h2>Area of the Circle Solve in ASP </h2>
<form name="sending" method="GET" action="results.asp" target="_self">
    </FONT><font size="2">Give value in radius </font><br>
    <input name="radius" size="10">
    <br><br>
    <input type="submit" value="Solve" name="Send">
</form>
</body>
</html>
</body>


results.asp

<%
    'Written By Mr. Jake R. Pomperada,MAED-IT
'Date : July 4, 2019  Thursday
'Bacolod City
    r = Request.querystring("radius")
    radius     = cdbl(r)
pi = 3.1416

   display = pi * (radius * radius)
response.write("<h3> DISPLAY RESULTS </h3>")
response.write("<h3>The given radius is " & r &".</h3>")
response.write("<h3>The area of the circle is " & display &".</h3>")
%>



Hello World in ASP

Here is a simple program that I wrote to display a message on the screen using ASP (Active Server Pages) hello world in ASP. I hope you will find my work useful in learning how to create a simple program using ASP.

A basic program to add the sum of two numbers using classic ASP (Active Server Pages) it uses VBScript as its native language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com


Sample Program Output

Program Listing

<!DOCTYPE html>
<html>
<body>
<%
Response.Write("<h1>Hello World in ASP !!!! </h1>")
%>
</body>
</html>





Basic Math Operations in ASP

Here is a sample program that I wrote using ASP classic to perform basic math operations.

A basic program to add the sum of two numbers using classic ASP (Active Server Pages) it uses VBScript as its native language.


I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com




Sample Program Output


Program Listing

math.htm

<!DOCTYPE html>
<html>
<style>
body {
 font-family:arial;
 size:12px;
}
</style>
<body>
<h2>Basic Math Operations in ASP </h2>
<form name="sending" method="GET" action="results.asp" target="_self">
    </FONT><font size="2">Give First Value </font><br>
    <input name="val1" size="10">
    <br><br>
    </FONT><font size="2">Give Second Value </font> <br>
    <input name="val2" size="10">
        <br> <br>
    <input type="submit" value="Send" name="Send">
</form>
</body>
</html>
</body>

results.asp


<%
    'Written By Mr. Jake R. Pomperada,MAED-IT
'Date : July 4, 2019
' Bacolod City
    a = Request.querystring("val1")
    b = Request.querystring("val2")
sum     = cint(a) + cint(b)
product = cint(a) * cint(b)
diff = cint(a) - cint(b)
quo= cint(a) - cint(b)
response.write("<h3> DISPLAY RESULTS </h3>")
response.write("<h3>The sum of " & a  & " and " & b & " is " & sum &".</h3>")
response.write("<h3>The difference between " & a  & " and " & b & " is " & diff &".</h3>")
response.write("<h3>The product of " & a  & " and " & b & " is " & product &".</h3>")
response.write("<h3>The quotient between " & a  & " and " & b & " is " & quo &".</h3>")
%>



Addition of Three Numbers Using ASP

A basic program to add the sum of two numbers using classic ASP (Active Server Pages) it uses VBScript as its native language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com

Sample Program Output


Program Listing

<!DOCTYPE html>
<html>
<body>
<!DOCTYPE html>
<html>
<body>
<%
dim a,b,sum
a=1
b = 2
sum = cint(a)+ cint(b)
response.write("<h2>Addition of Two Numbers Using ASP </h2>")
response.write("<h3>Created By Mr. Jake R. Pomperada </h3>")
response.write("<h3> The sum of " & a & " and " & b & " is " & sum & ".</h3>")
%>

</body>
</html>
</body>
</html>







Area of the Circle Version 1.0


Write a program using structure and function to compute the area of the circle in the 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 I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com




Sample Program Output


Program Listing

/*circle.c
 Author    : Mr. Jake Rodriguez Pomperada,BSCS,MAED-IT
 Date      : December 1, 2018  Saturday 9:01 PM
 Location  : Bacolod City, Negros Occidental
 Website   : http://www.jakerpomperada.com
 Emails    : jakerpomperada@jakerpomperada.com
             jakerpomperada@gmail.com
             jakerpomperada@yahoo.com
             jakerpomperada@aol.com
*/
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>

struct circle {
  char name[100];
  float radius;
  float area;
};

int main() {
    circle test;
    char reply;
    float area=0.00;
do {
    printf("\n\n");
    printf("\t\tArea of the Circle Version 1.0");
    printf("\n\n");
    printf("\tEnter the name of the Circle          : ");
    gets(test.name);
    printf("\n");
    printf("\tEnter the given Radius of the Circle  : ");
    scanf("%f",&test.radius);
    printf("\n");
    printf("\t\tSummary of Report");
    printf("\n");
    area = (3.14 * test.radius * test.radius);
    printf("\n\tName of the Circle         : %s ",test.name);
    printf("\n");
    printf("\n\tThe Area of the Circle is  : %.2f ",area);
    printf("\n\n");
    printf("\tDo You Want to Continue y/n? : ");
    scanf("%s",&reply);
    if (toupper(reply) == 'N') {
        printf("\n\n");
        printf("\t\t Thank You For Using This Software !!!");
        break;
    }
    } while (toupper(reply!='Y'));
    printf("\n\n");
    system("pause");
}






Addition of Two Numbers Using Structures in C

Design a program using structure and function to accept two numbers and then the program will display the total sum of the two numbers on the screen 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 in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com




Sample Program Output


Program Listing

/*add.c
 Author    : Mr. Jake Rodriguez Pomperada,BSCS,MAED-IT
 Date      : December 1, 2018  Saturday 7:41 PM
 Location  : Bacolod City, Negros Occidental
 Website   : http://www.jakerpomperada.com
 Emails    : jakerpomperada@jakerpomperada.com
             jakerpomperada@gmail.com
             jakerpomperada@yahoo.com
             jakerpomperada@aol.com
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>

struct add {
  int value1,value2;
    int addition()
    {
        return(value1+value2);
    }
};

int main() {
    add math;
    char reply;
do {
    printf("\n\n");
    printf("\t\t");
    printf("\n\n");
    printf("\tEnter the first value  : ");
    scanf("%d",&math.value1);
    printf("\n");
    printf("\tEnter the second value : ");
    scanf("%d",&math.value2);
    printf("\n\n");
    printf("\tThe sum of %d and %d is %d."
,math.value1,math.value2, math.addition());
printf("\n\n");
    printf("\tDo you want to continue y/n? : ");
    scanf("%s",&reply);
    if (toupper(reply) == 'N') {
     printf("\n\n");
     printf("\tThank You For Using This Software !!!");
     break;
    }
    } while (toupper(reply!='Y'));
    printf("\n\n");
printf("\t\tEnd of Program");
printf("\n\n");
system("pause");
}










Clock in Visual Basic 6

A simple clock that I wrote using Microsoft Visual Basic 6.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My personal website is http://www.jakerpomperada.com



Sample Program Output