<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>PCtechtips.org &#187; programming</title>
	<atom:link href="http://pctechtips.org/tag/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://pctechtips.org</link>
	<description>tips &#38; tutorials... networking, security, programming</description>
	<lastBuildDate>Sun, 02 May 2010 18:56:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The First 1000 Prime Numbers in Java.</title>
		<link>http://pctechtips.org/the-first-1000-prime-numbers-in-java/</link>
		<comments>http://pctechtips.org/the-first-1000-prime-numbers-in-java/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 06:08:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Prime numbers]]></category>

		<guid isPermaLink="false">http://pctechtips.org/?p=761</guid>
		<description><![CDATA[Here&#8217;s a simple code that prints out the first 1000 Prime numbers, now keep in mind that Prime numbers start at 2, we exclude 0, and 1, because they are not prime numbers. A prime number is a positive integer that has exactly two factors, 1 and the number itself. We know 0 is neither [...]]]></description>
		<wfw:commentRss>http://pctechtips.org/the-first-1000-prime-numbers-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Palindrome Numbers</title>
		<link>http://pctechtips.org/palindrome-numbers/</link>
		<comments>http://pctechtips.org/palindrome-numbers/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 19:06:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Palindrome number]]></category>

		<guid isPermaLink="false">http://pctechtips.org/?p=752</guid>
		<description><![CDATA[A palindromic number reads the same both ways eg. 10201, 12321, 14641, 40804, 44944, 69696
, here is a Java code that displays the largest Palindrome numbers from the product of two 3 digits numbers.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
public static void main&#40;String&#91;&#93; args&#41; &#123;
        int palin = 0;
      [...]]]></description>
		<wfw:commentRss>http://pctechtips.org/palindrome-numbers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TicTacToe Game (Java Code).</title>
		<link>http://pctechtips.org/tictactoe-game-java-code/</link>
		<comments>http://pctechtips.org/tictactoe-game-java-code/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 23:57:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[TicTacToe]]></category>

		<guid isPermaLink="false">http://pctechtips.org/?p=748</guid>
		<description><![CDATA[
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import java.util.*;
public class Tictactoe &#123;
    private static final int ROWS = 3;
    private static final int COLUMNS = 3;
    private String&#91;&#93;&#91;&#93; board;
    //construct an empty board
    public Tictactoe&#40;&#41;
    &#123;
        board [...]]]></description>
		<wfw:commentRss>http://pctechtips.org/tictactoe-game-java-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fibonacci Numbers</title>
		<link>http://pctechtips.org/fibonacci-numbers/</link>
		<comments>http://pctechtips.org/fibonacci-numbers/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 00:45:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[fibonacci]]></category>
		<category><![CDATA[recursion]]></category>

		<guid isPermaLink="false">http://pctechtips.org/?p=736</guid>
		<description><![CDATA[In Mathematics the Fibonacci numbers are the following sequence of numbers
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55&#8230;..
the first two numbers are 0 and 1 the rest
0 + 1 = 1
1 + 1 = 2
1 + 2 = 3
2 + 3 = 5
3 + 5 = 8
Implementing Fibonacci in Java is easier [...]]]></description>
		<wfw:commentRss>http://pctechtips.org/fibonacci-numbers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Port Scanner with Java</title>
		<link>http://pctechtips.org/port-scanner-with-java/</link>
		<comments>http://pctechtips.org/port-scanner-with-java/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 11:06:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[port scanner]]></category>

		<guid isPermaLink="false">http://pctechtips.org/?p=727</guid>
		<description><![CDATA[
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
try
    &#123;
        String host = &#34;server-box&#34;;
        InetAddress addr = InetAddress.getByName&#40;host&#41;;
        System.out.println&#40;&#34;Scanning for open ports on &#34;+&#34;\&#34;&#34;+host+&#34;\&#34;&#34;+&#34;...&#34;&#41;;
        for&#40;int i = 0; i &#60; 65536; i++&#41;
 [...]]]></description>
		<wfw:commentRss>http://pctechtips.org/port-scanner-with-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Writing and Reading (Input/Output) From Files in Java.</title>
		<link>http://pctechtips.org/writing-and-reading-inputoutput-from-files-in-java/</link>
		<comments>http://pctechtips.org/writing-and-reading-inputoutput-from-files-in-java/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 00:54:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[Input/Output]]></category>

		<guid isPermaLink="false">http://pctechtips.org/?p=718</guid>
		<description><![CDATA[In this article, I&#8217;m covering the common task of reading and writing files that contain text that are created with a simple text editor like Notepad or Wordpad. To read input from a disk file first construct a FileReader object with the name of the input file, then use the FileReader to construct a BufferedReader.

1
2
FileReader [...]]]></description>
		<wfw:commentRss>http://pctechtips.org/writing-and-reading-inputoutput-from-files-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Intro to Polymorphism with Java.</title>
		<link>http://pctechtips.org/quick-intro-to-polymorphism-with-java/</link>
		<comments>http://pctechtips.org/quick-intro-to-polymorphism-with-java/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 07:02:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[polymorphism]]></category>

		<guid isPermaLink="false">http://pctechtips.org/?p=709</guid>
		<description><![CDATA[Polymorphism is the capability of an action or method to do different things based on the object that it is acting upon. This is the third basic principle of object oriented programming. Overloading and overriding are two types of polymorphism. In Java, the type of variable does not completely determine the type of the object [...]]]></description>
		<wfw:commentRss>http://pctechtips.org/quick-intro-to-polymorphism-with-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding the Maximum or Minimum in Java.</title>
		<link>http://pctechtips.org/finding-the-maximum-or-minimum-in-java/</link>
		<comments>http://pctechtips.org/finding-the-maximum-or-minimum-in-java/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 01:34:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[finding maximux]]></category>
		<category><![CDATA[for loop]]></category>

		<guid isPermaLink="false">http://pctechtips.org/?p=702</guid>
		<description><![CDATA[One of the more fundamental concepts to uderstand in programming is in finding the maximum or minumum in an array. Suppose you want to find the largest number in an array. Keep a candidate for the maximum. If you find an element with a larger value, then replace the candidate with that value. When you [...]]]></description>
		<wfw:commentRss>http://pctechtips.org/finding-the-maximum-or-minimum-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Introduction to Inheritance in Java.</title>
		<link>http://pctechtips.org/an-introduction-to-inheritance-in-java/</link>
		<comments>http://pctechtips.org/an-introduction-to-inheritance-in-java/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 01:00:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[inheritance]]></category>

		<guid isPermaLink="false">http://pctechtips.org/?p=672</guid>
		<description><![CDATA[Inheritance: is a mechanism for enhancing existing classes. If you need to implement a new class and a class representing a more general concept is already available, then the new class can inherit from the existing class. For example , suppose you need to define a class SavingsAccount to model an account that pays a [...]]]></description>
		<wfw:commentRss>http://pctechtips.org/an-introduction-to-inheritance-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java Basic Concepts.</title>
		<link>http://pctechtips.org/java-basic-concepts/</link>
		<comments>http://pctechtips.org/java-basic-concepts/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 07:40:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[concepts]]></category>
		<category><![CDATA[java basic]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[web application]]></category>

		<guid isPermaLink="false">http://pctechtips.org/?p=657</guid>
		<description><![CDATA[Since this days I&#8217;m spending lots of time doing programming in Java, I decided to make this page as a central repository of the more basic concepts in Java programming language that I will be updating over time.
Q: What is an object?
A: Objects are entities in your program that you manipulate by calling methods.
Q: What [...]]]></description>
		<wfw:commentRss>http://pctechtips.org/java-basic-concepts/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
