Tuesday, September 28, 2021

My Favorite Fruits Using Arrays in Java

 A simple program to demonstrate how to use arrays 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 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.





Program Listing

public class Fruits {

  public static void main(String[] args) {

    String[] MyFruits = {"Apple", "Orange", "Banana", "Grapes", "Mango"};

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

    System.out.println("\tMy Favorite Fruits Using Arrays in Java");

        System.out.println();


    for (int a = 0; a < MyFruits.length; a++) {

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

      System.out.println(MyFruits[a]);

    }

    System.out.println();

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

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

}

}


Monday, September 27, 2021

Print 1 to 100 Using While Loop in C++

Print 1 To 100 Using While Loop in C++

 A simple program to print 1 to 100 using while loop 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 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.




Program Listing

/* print.cpp

   Prof. Jake Rodriguez Pomperada, MAED-IT, MIT

   www.jakerpomperada.com and www.jakerpomperada.blogspot.com

   jakerpomperada@gmail.com

   Bacolod City, Negros Occidental Philippines.

*/


#include <iostream>



int counter1=0;

int number=0, i=0; 

 

int main()

{

      

i=1;   

number = 100;

std::cout <<"\n";

std::cout <<"\t\tPrint 1 To 100 Using While Loop in C++";  

std::cout <<"\n\n";

std::cout <<"\t";

while(i<=number)  

{  

     counter1++;

  

  std::cout << i <<" , ";

 

i=i+1;  

if(counter1 == 10){

           

        std::cout <<"\n\t";

        counter1 = 0;

    }

  }  

std::cout <<"\n";

std::cout <<"\t\tEnd of Program";  

std::cout <<"\n\n";   

}

Sunday, September 26, 2021

Celsius To Fahrenheit in C#

Celsius To Fahrenheit in C#

 A simple program to ask the user to give temperature in Celsius and then convert it in Fahrenheit  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 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.





Program Listing

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;


namespace Celsius_Fahrenheit

{

    class Program

    {

        static void Main(string[] args)

        {

            Console.WriteLine("\n");

            Console.WriteLine("\t============================================");

            Console.WriteLine("\t\tCelsius To Fahrenheit in C#");

            Console.WriteLine("\t=============================================");

            Console.WriteLine("\n");

            Console.Write("\tGive Temperature in Celsius : ");

            int celsius = Convert.ToInt32(Console.ReadLine());


            Console.WriteLine();

            Console.WriteLine("\tThe Fahrenheit = {0}", celsius * 18 / 10 + 32);

            Console.WriteLine();

            Console.WriteLine("\tEnd of Program");

            Console.ReadLine();


        }

    }

}


Saturday, September 25, 2021

Area of a Circle in Pascal

Area of a Circle in Pascal

 A simple program that I wrote using Pascal to compute the area of a circle. I hope you will find my work useful.

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.





Program Listing

Program Area_of_a_Circle;

Uses Crt, Math;

Var Area, Radius : Real;

Begin
   Clrscr;
   Writeln;
   Write('Area of a Circle in Pascal');
   Writeln;
   Writeln;
   Write('Give the radius of the circle :');
   Readln(radius);

   Area := PI * radius * radius;

   Writeln;
   Write('The value of the area is ',Area:5:2, '.');
   Writeln;
   Writeln;
   Write('End of Program');
   Writeln;
   Readln;
End.



Friday, September 24, 2021

Biggest of Three Numbers in C#

Biggest of Three Numbers in C#

 Machine Problem

Write a C# program to find the largest of three numbers.

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.





Program Listing

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;



/*


Jake Rodriguez Pomperada, MAED-IT, MIT

www.jakerpomperada.blogspot.com and www.jakerpomperada.com

jakerpomperada@gmail.com

Bacolod City, Negros Occidental


Machine Problem


Write a C# program to find the largest of three numbers.

 */

namespace Biggest_Three_Numbers

{

    class Program

    {

        static void Main(string[] args)

        {


            int num1=0, num2=0, num3=0;

            string result;


            Console.WriteLine("\n");

            Console.WriteLine("============================================");

            Console.WriteLine("\tBiggest of Three Numbers in C#");

            Console.WriteLine("=============================================");


            Console.WriteLine();

            Console.Write("Enter first number : ");

            num1 = Convert.ToInt32(Console.ReadLine());

            Console.Write("Enter the second number : ");

            num2 = Convert.ToInt32(Console.ReadLine());

            Console.Write("Enter the third number : ");

            num3 = Convert.ToInt32(Console.ReadLine());


            Console.WriteLine();


            if (num1 > num2 && num1 > num3)

            {

                result = "The " + num1  +  " Number is the greatest among three. \n";


            }

            else if (num2 > num1 && num2 > num3)

            {

                result = "The " + num2 + " Number is the greatest among three. \n";

            }

            else

            {

                result = "The " + num3 + " Number is the greatest among three. \n";

            }


            Console.WriteLine(result);

            Console.WriteLine();

            Console.WriteLine("\tEnd of Program");

            Console.ReadLine();



        }

    }

}


Thursday, September 23, 2021

Simple Interest Rate in C#

Simple Interest Rate in C#

 In this article I would like to share with you a sample program to compute the simple interest rate 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 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.





Program Listing

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;


namespace Simple_Interest

{

    class Program

    {

        static void Main(string[] args)

        {

            int year=0;

            double principal_amt=0.00, rate = 0.00, interest = 0.00, total_amt=0.00;

            Console.WriteLine("============================================");

            Console.WriteLine("\tSimple Interest Rate in C#");

            Console.WriteLine("=============================================");


            Console.WriteLine();

            Console.Write("Give The Loan Amount : ");

            principal_amt = Convert.ToDouble(Console.ReadLine());

            Console.Write("Give The Number of Years : ");

            year = Convert.ToInt16(Console.ReadLine());

            Console.Write("Givet he Rate Of Interest : ");

            rate = Convert.ToDouble(Console.ReadLine());

            interest = (principal_amt * year * rate / 100);

            total_amt = principal_amt + interest;

            Console.WriteLine();

            Console.WriteLine("The Total Amount Be Paid : PHP {0}", total_amt);

            Console.WriteLine();

            Console.WriteLine("\tEnd of Program");

            Console.ReadLine();

        }

    }

}


Wednesday, September 22, 2021

Area of a Circle in C#

Area of a Circle in C#

 A simple program to ask the user to give a radius and then the program will convert the given radius into the area of the circle equivalent 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.




Program Listing

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;


namespace Area_of_a_Circle

{

    class Program

    {

        static void Main(string[] args)

        {

            double radius, AREA;

            const double PI = 3.14;

            Console.WriteLine("============================================");

            Console.WriteLine("\tArea of a Circle in C#");

            Console.WriteLine("=============================================");

            Console.WriteLine();

            Console.Write("\tEnter the radius of circle : ");

            radius = Convert.ToDouble(Console.ReadLine());

            AREA = PI * radius * radius;

            Console.WriteLine();

            Console.WriteLine("\tThe area of circle is {0} when radius is {1}.", AREA, radius);

            Console.WriteLine("\n");

            Console.WriteLine("\tEnd of Program");

            Console.ReadKey();

        }

    }

}


Tuesday, September 21, 2021

Quotient and Modulus in C++

Quotient and Modulus in C++

Quotient and Modulus in C++

In this article I will show you how to use quotient and modulus operator in C++ programming. The program will ask the user to give two numbers and then the program will compute the quotient, and modulus of two given numbers.

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.




Program Listing

// quotient_modulus.cpp

// Prof. Jake Rodriguez Pomperada, MAED-IT, MIT

// www.jakerpomperada.blogspot.com

// www.jakerpomperada.com

// jakerpomperada@gmail.com



#include <iostream>


int a=0,b=0;

int quotient=0, modulus=0;


int main()

{

std::cout << "\n\n";

std::cout << "\tQuotient and Modulus in C++";

std::cout << "\n\n";

std::cout << "\tEnter Two Numbers : ";

std::cin >> a >> b;

std::cout << "\n";

std::cout << "\tThe quotient between "

          << a << " and " << b  << " is "

          << a/b << ".\n\n";

std::cout << "\tThe modulus between "

          << a << " and " << b  << " is "

          << a%b << ".\n";

std::cout << "\n\n";

std::cout << "\tEnd of Program";

std::cout << "\n";

}


Constructor in Java

Constructor in Java

 In this article I will discuss the tutorial how to create a constructor 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 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.





Program Listing


// A simple Java program to create and call a default constructor  

class Car{  
//creating a default constructor  
  Car()
  {
  System.out.println("Car has been created.");
}  
//main method  
public static void main(String args[]){  
//calling a default constructor  
Car Suzuki=new Car();  
}  
}  


Comments in PHP

Comments in PHP

 In this article I will share a tutorial on comments PHP I hope you will find it useful.

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.







index.php

<!DOCTYPE html>

<html>

<body>


<?php

/*

* Reference

https://www.w3schools.com/php/php_comments.asp

*

*/


// This is a single-line comment


echo "<h1>Comments in PHP</h1>";


# This is also a single-line comment


/*

This is a multiple-lines comment block

that spans over multiple

lines

*/


?>


</body>

</html>