Learn Computer Programming Free from our source codes in my website.
Sponsored Link Please Support
https://www.techseries.dev/a/27966/qWm8FwLb
https://www.techseries.dev/a/19181/qWm8FwLb
My Personal Website is http://www.jakerpomperada.com
Email me at jakerpomperada@gmail.com and jakerpomperada@yahoo.com
Tuesday, March 9, 2021
Login and Registration with Pictures Using PHP and MySQL
A program that I wrote to allow the user registration and login with Pictures using PHP and MySQL
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.
Alert Method in JavaScript
In this article, I will share with you how to declare and use the alert method using the 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.
Program Listing
<html>
<head>
<title> Alert Method in JavaScript </title>
</head>
<body>
<script>
alert("This is an Alert Method in Javascript");
</script>
</body>
</html>
Monday, March 8, 2021
PRODUCT OF TWO NUMBERS USING BATCH FILE IN DOS
A program to ask the user to give two numbers and then the program will compute the product of two given numbers using Batch file programming in DOS.
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.
First and Last Character in Java
A simple program to ask the user to give a string and then the program will identify the first and last character in the given string by the user 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 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.
Program Listing
/**
* @author Jake Rodriguez Pomperada, MAED-IT, MIT
* jakerpomperada@gmail.com
* www.jakerpomperada.com
* Bacolod City, Negros Occidental
* March 8, 2021 Monday
*/
import java.util.*;
class First_Last_Character {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
char ch1,ch2;
String str;
String reply = "";
do {
System.out.println("\n");
System.out.print("\t\tFirst and Last Character in Java");
System.out.println("\n");
System.out.print("\tEnter a string: ");
str = sc.nextLine();
ch1 = str.charAt(0);
ch2 = str.charAt(str.length() - 1);
System.out.println("\n");
System.out.println("\tThe first character of the string is: " + ch1);
System.out.println("\tThe last character of the string is: " + ch2);
System.out.println("\n");
System.out.print("\tDo you want to continue (Type Y - Yes or N - No) : ");
reply = sc.nextLine();
}while(reply.equalsIgnoreCase("Y"));
System.out.println();
System.out.print("\t THANK YOU FOR USING THIS PROGRAM");
System.out.println("\n");
sc.close();
}
}
Addition of Three Numbers Using Batch File in DOS
A simple program that I wrote that will ask the user to give three numbers and then it will compute the sum of the three numbers using batch file programming in DOS (Disk Operating System)
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.
Saturday, March 6, 2021
Even Number Generators in Java
A simple program to ask the user to give a number and the program will generate even 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 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.
Triangle Image Generator in PHP
A simple program that I wrote that will ask the user to give a number and then the program will generate an inverted triangle using the symbol of asterisk 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 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.
Program Listing
index.php
Even Number Generators in PHP
A simple program that I wrote that will ask the user to give a number and then it will generate the even numbers 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.
Program Listing
index.php
Sum of Even Numbers in Visual Basic NET
Write a program in visual basic net to display the sum of even numbers from 20 to 40.
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.
Program Listing
' Author : Jake R. Pomperada, MAED-IT, MIT
' www.jakerpomperada.com / www.jakerpomperada.blogspot.com
' jakerpomperada@gmail.com
'
' Write a program in visual basic to display the sum of even numbers from 20 to 40.
Public Class Form1
Public Function GetEvenNumberSum(min As Integer, max As Integer) As Integer
Dim sum As Integer = 0
For i As Integer = min To max
If i Mod 2 = 0 Then
sum += i
End If
Next
Return sum
End Function
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
TextBox3.Text = Str(GetEvenNumberSum(Val(TextBox1.Text), Val(TextBox2.Text)))
End Sub
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
TextBox1.Text = ""
TextBox2.Text = ""
TextBox3.Text = ""
TextBox1.Focus()
End Sub
Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click
End
End Sub
End Class
Friday, March 5, 2021
Swap Two Numbers Using Functions in C++
A simple program to ask the user to give two numbers and then the program will display the original arrangement and swap arrangement of the two numbers using functions 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 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.
Program Listing
// swap.cpp
// Mr. Jake R. Pomperada, MAED-IT, MIT
// www.jakerpomperada.com
// jakerpomperada@gmail.com
// Bacolod City, Negros Occidental Philippines
#include <iostream>
#include <stdlib.h>
using namespace std;
void GetVal(int& Get1,int& Get2);
void SwapVal(int& Swap1,int& Swap2);
void ShowVal(int& Show1,int& Show2);
int main()
{
int FirstNum,SecondNum;
GetVal(FirstNum,SecondNum);
SwapVal(FirstNum,SecondNum);
ShowVal(FirstNum,SecondNum);
system("PAUSE");
return 0;
}
void GetVal(int& Get1,int& Get2)
{
cout << "\n\n";
cout << "\tSwap Two Numbers Using Functions in C++";
cout << "\n\n";
cout << "\tGive Two Values: ";
cin >> Get1 >> Get2;
cout << "\n\n";
cout << "\tOriginal Arrangement\n\n";
cout <<"\t" << Get1 << " " << Get2 << "\n";
cout << "\n\n";
cout << "\tSwap Arrangement\n\n";
cout << "\n\n";
}
void SwapVal(int& Swap1,int& Swap2)
{
int temp;
temp = Swap1;
Swap1 = Swap2;
Swap2 = temp;
}
void ShowVal(int& Show1,int& Show2)
{
cout <<"\t" << Show1 << " " << Show2 << "\n";
cout << "\n\n";
cout << "\tEnd of Program";
cout << "\n\n";
}
Thursday, March 4, 2021
Grade Solver in Python
A simple grade solver that I wrote using Python 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.
Program Listing
name = str(input("Enter Name: "))
math = int(input("Enter Math: "))
science = int(input("Enter Science: "))
english = int(input("Enter English: "))
calc = (math + science + english) / 3
print("Average Grade: %.2f" %(calc))
if calc >= 75:
print(f"Congratulations! You passed the semester.")
if math < 75 or science < 75 or english < 75:
print(f"but you need to retake the following subject(s):")
if math < 75:
print(f"Math")
if science < 75:
print(f"Science")
if english < 75:
print(f"English")
else:
print(f"You failed the semester.")