<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments for My Web Information Blog Site</title>
	<link>http://blog.myweb-info.com</link>
	<description>My Web Information Blog</description>
	<pubDate>Wed, 07 Jan 2009 11:25:30 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>

	<item>
		<title>Comment on Learning Java by Tons</title>
		<link>http://blog.myweb-info.com/2008/08/14/learning-java/#comment-7</link>
		<author>Tons</author>
		<pubDate>Fri, 15 Aug 2008 05:58:33 +0000</pubDate>
		<guid>http://blog.myweb-info.com/2008/08/14/learning-java/#comment-7</guid>
		<description>1.  Class JOptionPane - defined in a package called javax.swing. It contains methods that display a dialog box containing information.

2.  import - statement to locate classes required  to compile a java program.

3.  showMessageDialog - part of class JOptionPane. It shows the messages in a dialogue box with the result of an arguments.

4.  Integer.parseInt - converts its String argument to an integer. Supposing you enter in a dialogue box a number then you can you this tag to convert it to integer.</description>
		<content:encoded><![CDATA[<p>1.  Class JOptionPane - defined in a package called javax.swing. It contains methods that display a dialog box containing information.</p>
<p>2.  import - statement to locate classes required  to compile a java program.</p>
<p>3.  showMessageDialog - part of class JOptionPane. It shows the messages in a dialogue box with the result of an arguments.</p>
<p>4.  Integer.parseInt - converts its String argument to an integer. Supposing you enter in a dialogue box a number then you can you this tag to convert it to integer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Learning Java by Tons</title>
		<link>http://blog.myweb-info.com/2008/08/14/learning-java/#comment-6</link>
		<author>Tons</author>
		<pubDate>Fri, 15 Aug 2008 05:47:24 +0000</pubDate>
		<guid>http://blog.myweb-info.com/2008/08/14/learning-java/#comment-6</guid>
		<description>1.  System.out - known as the standard output object. It allows java applications to display strings and other types of information in the command window from which the java application is executed.

2.  println - of the System.out displays a line of information in the command window.

3.  System.out.print - does not position to the beginning of the next line in the command window when it finishes displaying its argument.  The next character that is displayed in the command window will appear immediately after the last character displayed with System.out.print.</description>
		<content:encoded><![CDATA[<p>1.  System.out - known as the standard output object. It allows java applications to display strings and other types of information in the command window from which the java application is executed.</p>
<p>2.  println - of the System.out displays a line of information in the command window.</p>
<p>3.  System.out.print - does not position to the beginning of the next line in the command window when it finishes displaying its argument.  The next character that is displayed in the command window will appear immediately after the last character displayed with System.out.print.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Learning Java by Tons</title>
		<link>http://blog.myweb-info.com/2008/08/14/learning-java/#comment-5</link>
		<author>Tons</author>
		<pubDate>Fri, 15 Aug 2008 05:24:59 +0000</pubDate>
		<guid>http://blog.myweb-info.com/2008/08/14/learning-java/#comment-5</guid>
		<description>Day 2

1. Access Modifier - specifies the circumstances in which the class can be accessed. Example is public which indicates that this code can be accessed by all objects or can be extended, or used as a basis for another class. If public is omitted then you limit it only for this class. Access Modifier is followed by the word  class.

2.  Class Name - Example is public class XXX.  The class name here is XXX which is a name assigned by you.  It should be user-friendly word that is not on the list of reserved words, contain no spaces and must not begin with number. 
Example: 
          Record123 (good)     Record 123 (bad with space)
          Employ               123data    (bad begin with numbers)

3.  public static void main ( String args[] )  -  is a part of every Java application.
    A.  Paranthesis after main - indicate that main is a program building block called a method.
    B.  void - indicate that this method will perform a task but will not return any information when it completes its task.</description>
		<content:encoded><![CDATA[<p>Day 2</p>
<p>1. Access Modifier - specifies the circumstances in which the class can be accessed. Example is public which indicates that this code can be accessed by all objects or can be extended, or used as a basis for another class. If public is omitted then you limit it only for this class. Access Modifier is followed by the word  class.</p>
<p>2.  Class Name - Example is public class XXX.  The class name here is XXX which is a name assigned by you.  It should be user-friendly word that is not on the list of reserved words, contain no spaces and must not begin with number.<br />
Example:<br />
          Record123 (good)     Record 123 (bad with space)<br />
          Employ               123data    (bad begin with numbers)</p>
<p>3.  public static void main ( String args[] )  -  is a part of every Java application.<br />
    A.  Paranthesis after main - indicate that main is a program building block called a method.<br />
    B.  void - indicate that this method will perform a task but will not return any information when it completes its task.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What is a Credit Score? by Tons</title>
		<link>http://blog.myweb-info.com/2008/07/21/what-is-a-credit-score/#comment-4</link>
		<author>Tons</author>
		<pubDate>Thu, 24 Jul 2008 22:13:57 +0000</pubDate>
		<guid>http://blog.myweb-info.com/2008/07/21/what-is-a-credit-score/#comment-4</guid>
		<description>&lt;p&gt;Credit scores are designed to measure the risk of default by taking into account various factors in a person's financial history. Although the exact formulas for calculating credit scores are closely guarded secrets, the  following components and the approximate weighted contribution of each:&lt;/p&gt;
&lt;p&gt;    
    * 35% — punctuality of payment in the past (only includes payments later than 30 days past due)&lt;br /&gt;
    * 30% — the amount of debt, expressed as the ratio of current revolving debt (credit card balances, etc.) to total available revolving credit (credit limits)&lt;br /&gt;
    * 15% — length of credit history&lt;br /&gt;
    * 10% — types of credit used (installment, revolving, consumer finance)&lt;br /&gt;
    * 10% — recent search for credit and/or amount of credit obtained recently&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Credit scores are designed to measure the risk of default by taking into account various factors in a person&#8217;s financial history. Although the exact formulas for calculating credit scores are closely guarded secrets, the  following components and the approximate weighted contribution of each:</p>
<p>
    * 35% — punctuality of payment in the past (only includes payments later than 30 days past due)<br />
    * 30% — the amount of debt, expressed as the ratio of current revolving debt (credit card balances, etc.) to total available revolving credit (credit limits)<br />
    * 15% — length of credit history<br />
    * 10% — types of credit used (installment, revolving, consumer finance)<br />
    * 10% — recent search for credit and/or amount of credit obtained recently</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What is a Credit Score? by Tons</title>
		<link>http://blog.myweb-info.com/2008/07/21/what-is-a-credit-score/#comment-3</link>
		<author>Tons</author>
		<pubDate>Mon, 21 Jul 2008 20:43:07 +0000</pubDate>
		<guid>http://blog.myweb-info.com/2008/07/21/what-is-a-credit-score/#comment-3</guid>
		<description>4 major credit bureaus collect information about credit card and give you your score namely:  Equifax, Experian, TransUnion and Fair Isaac Corporation (FICO).</description>
		<content:encoded><![CDATA[<p>4 major credit bureaus collect information about credit card and give you your score namely:  Equifax, Experian, TransUnion and Fair Isaac Corporation (FICO).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What is a Credit Score? by Tons</title>
		<link>http://blog.myweb-info.com/2008/07/21/what-is-a-credit-score/#comment-2</link>
		<author>Tons</author>
		<pubDate>Mon, 21 Jul 2008 20:40:38 +0000</pubDate>
		<guid>http://blog.myweb-info.com/2008/07/21/what-is-a-credit-score/#comment-2</guid>
		<description>If your score is already high, you will want to maintain it to ensure you're getting the best rates around.  Make all your payments on time and keep balances low on revolving credit.</description>
		<content:encoded><![CDATA[<p>If your score is already high, you will want to maintain it to ensure you&#8217;re getting the best rates around.  Make all your payments on time and keep balances low on revolving credit.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
