<html> <head> <title>Online Resume</title> <style> table { font-family:tahoma, sans-serif; border-collapse: collapse; } th.{background-color:#cef} tr.odd {background-color:#ddf} tr.even {background-color:#def} td {padding: 3pt;} th … [Read more...] about Working with Tables in HMTL
Programming
Java Program Practice with while loop
class Test { public static void main (String [] args) { int x = 0; int y = 0; while ( x < 5 ) { y = y - x; System.out.print (x + "" + y + " "); x = x + 1; } } } … [Read more...] about Java Program Practice with while loop
Java Program Practice
class First { public static void main (String [] args) { int x = 3; while (x > 0) { if (x > 2) { System.out.print("a"); } x = x - 1; System.out.print("-"); if (x == 2) { … [Read more...] about Java Program Practice
Example of UML CLASS
Name Attributes Behavior … [Read more...] about Example of UML CLASS
So what is software?
In order to talk about a subject as big as software one has to come to understand the fundamentals that are the history of software development. To understand such a cool and interesting field it has to become clear that one must have an interest in the amazing … [Read more...] about So what is software?
Java Data Types
Data Types Storage Size Value Range Byte 8 bits -128 to 127 Short 16 bits -32,768 to 32,767 int 32 bits -2,147,483,648 to 2,147,483,647 long 64 bits -9.2 x 10E15 to 9.2 x 10E15 float 32 bits -3.4 x 10E38 to 3.4 x 10E38 double 64 bits -1.8 x 10E308 to … [Read more...] about Java Data Types
what is a constant?
Constants are very much like a variable in java. It's a placeholder in memory that holds a value that is assigned to it but the twist here is that the value will never be changed. Example of a constant in java. class example { public static void main … [Read more...] about what is a constant?
Foundations of Programming:Fundamentals
What is programming? “a computer program is a set of instructions” every computer program is a set of instructions take a large idea and take it apart to small parts getting your instructions correct and right computer will do exactly what you … [Read more...] about Foundations of Programming:Fundamentals
what’s Systems Development Life Cylce (SDLC)?
The first investigation Taking the time to consider the time, budget, and technicality of the project, see if its worth creating or doping the project Analysis phase getting all the information needed to continue Design phase creating a … [Read more...] about what’s Systems Development Life Cylce (SDLC)?
What is AJAX programming?
Asynchronous JavaScript and XML aka AJAX. How is java Script used? a good example of this would be lets say when you are in Gmail checking your email and suddenly you get new email well what is happening in the back end to cause this, well its a transport method of … [Read more...] about What is AJAX programming?