Thursday, November 14, 2019

Number Palindrome in C

I wrote this program that I called number palindrome in C that will ask the user to give an integer number and then the program will check if the given number is a palindrome or not using C 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?...

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/

If you like my video tutorials kindly click the like button and subscribe for more video tutorials on my channel.

Thank you very much for your help and support.






Sample Program Output


Program Listing

#include <stdio.h>

int main()
{
int n=0,r=0,t=0;
printf("\n\n");
printf("\tNumber Palindrome in C");
printf("\n\n");
printf("\tGive a Number : ");
scanf("%d",&n);
t = n;
while (t != 0) {
r = r* 10;
r = r + t % 10;
t = t/10;
}
printf("\n\n");
if (n == r) {
printf("\tThe given no. %d is a Palindrome.",n);
} else {
printf("\tThe given no. %d is Not a Palindrome.",n);
}
printf("\n\n");
printf("\tEnd of Program");
printf("\n\n");
}



Factorial Program in Microsoft Visual Basic 6

Factorial Program in Visual Basic 6

I wrote this program to ask the user to give a number and then the program will compute the factorial value of the given number 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 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 for your help and support.




Sample Program Output


Program Listing

Option Explicit

Private Function Factorial(ByVal y As Double) As Double
If y <= 1 Then
  Factorial = 1
Else
   Factorial = y * Factorial(y - 1)
End If
End Function

Private Sub Command1_Click()
 Dim x As Integer, n As Integer

 Call List1.Clear
 n = Val(Text1.Text)

 For x = 0 To n
    List1.AddItem Format$(x, "@@") & "! = " & _
                  Factorial((x))
 Next x
End Sub

Private Sub Command2_Click()
End
End Sub



Wednesday, November 13, 2019

Student Grade Information Using Union in C

A simple program that I wrote to display the student grade information using union 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, 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/





Program Listing

#include <stdio.h>

union student
{
   char name[200],subject[200];
   int age;
   float grade;
};


int main()
{
 union student records;
 printf("\n\n");
 printf("\tStudent Grade Information Using Union in C");
 printf("\n\n");
 printf("\t===== DISPLAY RECORD =====");
 printf("\n\n");
 strcpy(records.name,"Juan Dela Cruz");
 printf("\tStudent Name    :  %s\n ",records.name);
 records.age = 17;
 printf("\tStudent Age     :  %d\n ",records.age);
 strcpy(records.subject,"Linear Algebra");
 printf("\tStudent Subject :  %s\n ",records.subject);
 records.grade =89.03;
 printf("\tStudent Grade   :  %.2f\n ",records.grade);
 printf("\n");
 printf("\tEnd of Program");
 printf("\n\n");
}


https://www.unlimitedbooksph.com/

Thank you very much for your help and support.

Tuesday, November 12, 2019

Five Simple Ways To Save Money

String Palindrome in C#

String Palindrome in C#

I wrote this program to ask the user to give a string and then the program will tell if the given string by the user is a palindrome or not using C# 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 for your help and support.



 Sample Program Output


Program Listing

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            string s, revs = "";

            Console.WriteLine("\n\n");
            Console.WriteLine("\t String Palindrome in C#"); 
            Console.WriteLine("\n");
            Console.Write("\tGive a String : ");
            s = Console.ReadLine();
            Console.WriteLine("\n\n");
            for (int i = s.Length-1; i>=0; i--) {
             revs += s[i].ToString();
            }

            if (revs == s) {
                Console.WriteLine("\tThe given string  {0} is a Palindrome.",revs);
            }
            else {
                Console.WriteLine("\tThe given string  {0} is Not a Palindrome.",revs);
            }
            Console.WriteLine("\n\n");
            Console.WriteLine("\tEnd of Program");
            Console.ReadKey();
        }
    }
}
 




Word Count in C#

Word Count in C#

I wrote this program that will ask the user to give a sentence and then the program will count the number of words in the given string by the user 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 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 for your help and support.



Sample Program Output


Program Listing


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            string sentence;
           
            Console.Write("\n\n");
            Console.Write("\tCount Words in a Sentence in C#");
            Console.Write("\n\n");
            Console.Write("\tEnter a String : ");
            sentence = Console.ReadLine();

            string[] words = sentence.Split(' ');

            Console.Write("\n");
            Console.Write("\tThe number of words is " + words.Length + ".");
            Console.Write("\n\n");
            Console.Write("\tEnd of the Program");
            Console.ReadKey();
         }
    }
}
 
 
 


 

Factorial of a Number in C#

Factorial a Number in C#

I wrote this program that will ask the user to give a number and then the program will compute the factorial value of the given number using C# as my programming language 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, 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/

If you like my video tutorials kindly click the like button and subscribe for more video tutorials on my channel.

Thank you very much for your help and support.


Sample Program Output


Program Listing

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            int i = 0, fact = 1, number = 0;

            Console.Write("\n\n");
            Console.Write("\tFactorial of a Number in C#");
            Console.Write("\n\n");
            Console.Write("\tEnter a Number : ");
            number = int.Parse(Console.ReadLine());

            for (i = 1; i <= number; i++)
            {
                fact = fact * i;

            }
            Console.Write("\n\n");
            Console.Write("\tThe Factorial of " + number + " is " + fact + ".");
            Console.Write("\n\n");
            Console.Write("\tEnd of Program");
            Console.ReadKey();
        }
    }
}
 
 

Sunday, November 10, 2019

Calculate Speed of the Vehicle in PERL

Here is a sample program to ask the distance in kilometers and time in an hour to compute the speed of the vehicle using the 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

# speed.pl # Author : Jake Rodriguez Pomperada,MAED-IT # Date : November 10, 2019 Sunday 9:43 PM # 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("\tCalculate Speed of the Vehicle in PERL"); printf("\n\n"); printf("\tGive Distance (km) : "); chomp($distance =<>); printf("\tGive Time (hr) : "); chomp($time =<>); $speed = ($distance / $time); print "\n"; printf("\tDistance (km) : %3.2f\n" ,$distance); printf("\tTime (hr) : %3.2d\n\n" ,$time); printf("\tThe calculated Speed (km/hr) is %3.2f.",$speed); printf("\n\n"); printf("\tEnd of Program"); print "\n";

What is Java Programming Language?

What is Java?
•    Java is a high-level programming language developed by Sun Microsystems.


The Java Story
 

•    Java was developed at Sun Microsystems, Inc. (Sun) by James Gosling.
•    The language needed to be small, fast, reliable, and portable (hardware independent).
•    With the goals it had achieved (smallness, speed, reliability, portability), Java was discovered to be ideal for web pages.
•    Java can also be used to write stand-alone applications.


Java Technology


•    A programming language
•    A development environment
•    An application environment
•    A deployment environment


Features of Java


•    Object-Oriented
•    Portable and Platform-Independent
•    Dynamically Linked
•    Multithreaded
•    Garbage Collected


Java Requirements


•    Pentium 166 MHz or faster processor
•    At least 48MB of RAM
o    Using an applet within a Web Browser with JDK plug-in
•    At least 64MB of RAM
o    Graphics based application



Sample Java Program

Hello.java

public class Hello
{
         public static void main (String[] args)
         {
             System.out.println(“Hello, World!”);
         }
}


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.

Saturday, November 9, 2019

Power of a Number in PERL

Write a program to compute the power of a number 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

# power.pl
# Author    :  Jake Rodriguez Pomperada,MAED-IT
# Date        :  November 9, 2019  Saturday    10:30 PM
# 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("\tPower of a Number in PERL");
printf("\n\n");
printf("\tGive Base Value : ");
chomp($base =<>);
printf("\tGive Exponent Value : ");
chomp($expo =<>);

$power = ($base ** $expo);

print "\n";
printf("\t %d ^ %d = %d",$base,$expo,$power);
printf("\n\n");
printf("\tEnd of Program");
print "\n";