<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3709878533190869705</id><updated>2012-02-13T19:26:35.556-08:00</updated><title type='text'>Let's learning JAVA programing</title><subtitle type='html'>In here we can share about JAVA programing</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://primadaya.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://primadaya.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Primadaya</name><uri>http://www.blogger.com/profile/08488032866171028222</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://1.bp.blogspot.com/_vjBazn8tW90/STeJTwfEknI/AAAAAAAAAAo/e0SlKLyKRxo/S220/08.01.2406.jpg.bmp'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>14</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3709878533190869705.post-2940756613172477062</id><published>2008-12-27T19:58:00.002-08:00</published><updated>2010-11-03T23:59:15.318-07:00</updated><title type='text'>Biggest Number</title><content type='html'>public class B{&lt;br /&gt; public static void main(String[]args){&lt;br /&gt;  &lt;br /&gt;  Integer a=6;&lt;br /&gt;  int b=14;&lt;br /&gt;  int c=18;&lt;br /&gt;  &lt;br /&gt;  int x=(a&gt;b)?a:b;&lt;br /&gt;  int y=(b&gt;c)?b:c;&lt;br /&gt;  &lt;br /&gt;  if (x&gt;y){&lt;br /&gt;   System.out.println("Angka terbesar:"+x);&lt;br /&gt;   }&lt;br /&gt;   else {&lt;br /&gt;    System.out.println("Angka terbesar:"+y);&lt;br /&gt;   }&lt;br /&gt; &lt;br /&gt;  &lt;br /&gt; &lt;br /&gt;  &lt;br /&gt;  }&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;http://dayaprime.com&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3709878533190869705-2940756613172477062?l=primadaya.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://primadaya.blogspot.com/feeds/2940756613172477062/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://primadaya.blogspot.com/2008/12/biggest-number.html#comment-form' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/2940756613172477062'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/2940756613172477062'/><link rel='alternate' type='text/html' href='http://primadaya.blogspot.com/2008/12/biggest-number.html' title='Biggest Number'/><author><name>Primadaya</name><uri>http://www.blogger.com/profile/08488032866171028222</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://1.bp.blogspot.com/_vjBazn8tW90/STeJTwfEknI/AAAAAAAAAAo/e0SlKLyKRxo/S220/08.01.2406.jpg.bmp'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3709878533190869705.post-1329340488273325362</id><published>2008-12-27T19:57:00.002-08:00</published><updated>2010-11-04T00:02:41.826-07:00</updated><title type='text'>Get Date</title><content type='html'>import java.text.DateFormat;&lt;br /&gt;import java.text.ParseException;&lt;br /&gt;import java.text.SimpleDateFormat;&lt;br /&gt;import java.util.Calendar;&lt;br /&gt;import java.util.Date;&lt;br /&gt;&lt;br /&gt;public class DateUtility {&lt;br /&gt;&lt;br /&gt; /* Add Day/Month/Year to a Date&lt;br /&gt;  add() is used to add  values to a Calendar object.&lt;br /&gt;  You specify which Calendar field is to be affected by the operation&lt;br /&gt;  (Calendar.YEAR, Calendar.MONTH, Calendar.DATE).&lt;br /&gt;  */&lt;br /&gt;&lt;br /&gt; public static final String DATE_FORMAT = "dd-MM-yyyy";&lt;br /&gt; //See Java DOCS for different date formats&lt;br /&gt; // public static final String DATE_FORMAT = "yyyy-MM-dd";&lt;br /&gt;&lt;br /&gt; public static void addToDate() {&lt;br /&gt;  System.out.println("1. Add to a Date Operation\n");&lt;br /&gt;  SimpleDateFormat sdf = new SimpleDateFormat(DATE_FORMAT);&lt;br /&gt;  //Gets a calendar using the default time zone and locale.&lt;br /&gt;  Calendar c1 = Calendar.getInstance();&lt;br /&gt;  Date d1 = new Date();&lt;br /&gt;  //  System.out.println("Todays date in Calendar Format : "+c1);&lt;br /&gt;  System.out.println("c1.getTime() : " + c1.getTime());&lt;br /&gt;  System.out.println("c1.get(Calendar.YEAR): "+ c1.get(Calendar.YEAR));&lt;br /&gt;  System.out.println("Todays date in Date Format : " + d1);&lt;br /&gt;  c1.set(1999, 0, 20); //(year,month,date)&lt;br /&gt;  System.out.println("c1.set(1999,0 ,20) : " + c1.getTime());&lt;br /&gt;  c1.add(Calendar.DATE, 20);&lt;br /&gt;  System.out.println("Date + 20 days is : "+ sdf.format(c1.getTime()));&lt;br /&gt;  System.out.println();&lt;br /&gt;  System.out.println("-------------------------------------");&lt;br /&gt;&lt;br /&gt;http://dayaprime.com&lt;br /&gt; }&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3709878533190869705-1329340488273325362?l=primadaya.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://primadaya.blogspot.com/feeds/1329340488273325362/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://primadaya.blogspot.com/2008/12/get-date.html#comment-form' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/1329340488273325362'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/1329340488273325362'/><link rel='alternate' type='text/html' href='http://primadaya.blogspot.com/2008/12/get-date.html' title='Get Date'/><author><name>Primadaya</name><uri>http://www.blogger.com/profile/08488032866171028222</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://1.bp.blogspot.com/_vjBazn8tW90/STeJTwfEknI/AAAAAAAAAAo/e0SlKLyKRxo/S220/08.01.2406.jpg.bmp'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3709878533190869705.post-4398000184221516504</id><published>2008-12-27T19:57:00.001-08:00</published><updated>2010-11-04T00:03:44.229-07:00</updated><title type='text'>Colour TUner</title><content type='html'>/*&lt;br /&gt; * FormColor.java&lt;br /&gt; *&lt;br /&gt; * Created on 22 November 2008, 21:15&lt;br /&gt; */&lt;br /&gt;&lt;br /&gt;package com.nawolo.colortuner;&lt;br /&gt;&lt;br /&gt;import java.awt.Color;&lt;br /&gt;import javax.swing.JPanel;&lt;br /&gt;import javax.swing.SpinnerNumberModel;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;/**&lt;br /&gt; *&lt;br /&gt; * @author  Gateway&lt;br /&gt; */&lt;br /&gt;public class FormColor extends javax.swing.JFrame {&lt;br /&gt;    int red,green,blue;&lt;br /&gt;    SpinnerNumberModel modelRed, modelGreen,modelBlue;&lt;br /&gt;    &lt;br /&gt;    /** Creates new form FormColor */&lt;br /&gt;    public FormColor() {&lt;br /&gt;        initComponents();&lt;br /&gt;        &lt;br /&gt;        Integer value=new Integer(225);&lt;br /&gt;        Integer min=new Integer (0);&lt;br /&gt;        Integer max=new Integer (225);&lt;br /&gt;        Integer step=new Integer (1);&lt;br /&gt;        &lt;br /&gt;        modelRed=new SpinnerNumberModel(value,min,max,step);&lt;br /&gt;        modelGreen=new SpinnerNumberModel(value,min,max,step);&lt;br /&gt;        modelBlue=new SpinnerNumberModel(value,min,max,step);&lt;br /&gt;        &lt;br /&gt;        jSpinner1.setModel(modelRed);&lt;br /&gt;        jSpinner2.setModel(modelGreen);&lt;br /&gt; jSpinner3.setModel(modelBlue);&lt;br /&gt; red=green=blue=255;&lt;br /&gt; changePanelColor();&lt;br /&gt; &lt;br /&gt;    }&lt;br /&gt; &lt;br /&gt;    private void changePanelColor(){&lt;br /&gt;        Color clr=new Color (red, green, blue);&lt;br /&gt;        jPanel1.setBackground(clr);&lt;br /&gt;    }&lt;br /&gt;    /** This method is called from within the constructor to&lt;br /&gt;     * initialize the form.&lt;br /&gt;     * WARNING: Do NOT modify this code. The content of this method is&lt;br /&gt;     * always regenerated by the Form Editor.&lt;br /&gt;     */&lt;br /&gt;    // &lt;editor-fold defaultstate="collapsed" desc=" Generated Code "&gt;//GEN-BEGIN:initComponents&lt;br /&gt;    private void initComponents() {&lt;br /&gt;        jLabel1 = new javax.swing.JLabel();&lt;br /&gt;        jLabel2 = new javax.swing.JLabel();&lt;br /&gt;        jLabel3 = new javax.swing.JLabel();&lt;br /&gt;        jSpinner1 = new javax.swing.JSpinner();&lt;br /&gt;        jSpinner2 = new javax.swing.JSpinner();&lt;br /&gt;        jSpinner3 = new javax.swing.JSpinner();&lt;br /&gt;        jPanel1 = new javax.swing.JPanel();&lt;br /&gt;        jButton1 = new javax.swing.JButton();&lt;br /&gt;&lt;br /&gt;        setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);&lt;br /&gt;        setTitle("ColorTuner");&lt;br /&gt;        jLabel1.setText("Red");&lt;br /&gt;&lt;br /&gt;        jLabel2.setText("Green");&lt;br /&gt;&lt;br /&gt;        jLabel3.setText("Blue");&lt;br /&gt;&lt;br /&gt;        jSpinner1.setFont(new java.awt.Font("Courier New", 0, 18));&lt;br /&gt;        jSpinner1.addChangeListener(new javax.swing.event.ChangeListener() {&lt;br /&gt;            public void stateChanged(javax.swing.event.ChangeEvent evt) {&lt;br /&gt;                jSpinner1StateChanged(evt);&lt;br /&gt;            }&lt;br /&gt;        });&lt;br /&gt;&lt;br /&gt;        jSpinner2.setFont(new java.awt.Font("Courier New", 0, 18));&lt;br /&gt;        jSpinner2.addChangeListener(new javax.swing.event.ChangeListener() {&lt;br /&gt;            public void stateChanged(javax.swing.event.ChangeEvent evt) {&lt;br /&gt;                jSpinner2StateChanged(evt);&lt;br /&gt;            }&lt;br /&gt;        });&lt;br /&gt;&lt;br /&gt;        jSpinner3.setFont(new java.awt.Font("Courier New", 0, 18));&lt;br /&gt;        jSpinner3.addChangeListener(new javax.swing.event.ChangeListener() {&lt;br /&gt;            public void stateChanged(javax.swing.event.ChangeEvent evt) {&lt;br /&gt;                jSpinner3StateChanged(evt);&lt;br /&gt;            }&lt;br /&gt;        });&lt;br /&gt;&lt;br /&gt;        jPanel1.setBackground(new java.awt.Color(204, 255, 51));&lt;br /&gt;        jPanel1.setBorder(javax.swing.BorderFactory.createMatteBorder(1, 1, 1, 1, new java.awt.Color(255, 255, 255)));&lt;br /&gt;        javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);&lt;br /&gt;        jPanel1.setLayout(jPanel1Layout);&lt;br /&gt;        jPanel1Layout.setHorizontalGroup(&lt;br /&gt;            jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)&lt;br /&gt;            .addGap(0, 157, Short.MAX_VALUE)&lt;br /&gt;        );&lt;br /&gt;        jPanel1Layout.setVerticalGroup(&lt;br /&gt;            jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)&lt;br /&gt;            .addGap(0, 90, Short.MAX_VALUE)&lt;br /&gt;        );&lt;br /&gt;&lt;br /&gt;        jButton1.setText("Clear");&lt;br /&gt;        jButton1.addMouseListener(new java.awt.event.MouseAdapter() {&lt;br /&gt;            public void mouseClicked(java.awt.event.MouseEvent evt) {&lt;br /&gt;                jButton1MouseClicked(evt);&lt;br /&gt;            }&lt;br /&gt;        });&lt;br /&gt;        jButton1.addActionListener(new java.awt.event.ActionListener() {&lt;br /&gt;            public void actionPerformed(java.awt.event.ActionEvent evt) {&lt;br /&gt;                jButton1ActionPerformed(evt);&lt;br /&gt;            }&lt;br /&gt;        });&lt;br /&gt;&lt;br /&gt;        javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());&lt;br /&gt;        getContentPane().setLayout(layout);&lt;br /&gt;        layout.setHorizontalGroup(&lt;br /&gt;            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)&lt;br /&gt;            .addGroup(layout.createSequentialGroup()&lt;br /&gt;                .addContainerGap()&lt;br /&gt;                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)&lt;br /&gt;                    .addComponent(jLabel2)&lt;br /&gt;                    .addComponent(jLabel1)&lt;br /&gt;                    .addComponent(jLabel3))&lt;br /&gt;                .addGap(28, 28, 28)&lt;br /&gt;                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)&lt;br /&gt;                    .addComponent(jSpinner1, javax.swing.GroupLayout.PREFERRED_SIZE, 56, javax.swing.GroupLayout.PREFERRED_SIZE)&lt;br /&gt;                    .addComponent(jSpinner2, javax.swing.GroupLayout.PREFERRED_SIZE, 56, javax.swing.GroupLayout.PREFERRED_SIZE)&lt;br /&gt;                    .addComponent(jSpinner3, javax.swing.GroupLayout.PREFERRED_SIZE, 56, javax.swing.GroupLayout.PREFERRED_SIZE))&lt;br /&gt;                .addGap(37, 37, 37)&lt;br /&gt;                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)&lt;br /&gt;                    .addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)&lt;br /&gt;                    .addComponent(jButton1))&lt;br /&gt;                .addContainerGap())&lt;br /&gt;        );&lt;br /&gt;&lt;br /&gt;        layout.linkSize(javax.swing.SwingConstants.HORIZONTAL, new java.awt.Component[] {jSpinner1, jSpinner2, jSpinner3});&lt;br /&gt;&lt;br /&gt;        layout.setVerticalGroup(&lt;br /&gt;            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)&lt;br /&gt;            .addGroup(layout.createSequentialGroup()&lt;br /&gt;                .addGap(21, 21, 21)&lt;br /&gt;                .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)&lt;br /&gt;                    .addGroup(layout.createSequentialGroup()&lt;br /&gt;                        .addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)&lt;br /&gt;                        .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)&lt;br /&gt;                        .addComponent(jButton1)&lt;br /&gt;                        .addGap(43, 43, 43))&lt;br /&gt;                    .addGroup(layout.createSequentialGroup()&lt;br /&gt;                        .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)&lt;br /&gt;                            .addComponent(jLabel1)&lt;br /&gt;                            .addComponent(jSpinner1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))&lt;br /&gt;                        .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)&lt;br /&gt;                        .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)&lt;br /&gt;                            .addComponent(jSpinner2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)&lt;br /&gt;                            .addComponent(jLabel2))&lt;br /&gt;                        .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 10, Short.MAX_VALUE)&lt;br /&gt;                        .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)&lt;br /&gt;                            .addComponent(jSpinner3, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)&lt;br /&gt;                            .addComponent(jLabel3))&lt;br /&gt;                        .addGap(64, 64, 64))))&lt;br /&gt;        );&lt;br /&gt;        java.awt.Dimension screenSize = java.awt.Toolkit.getDefaultToolkit().getScreenSize();&lt;br /&gt;        setBounds((screenSize.width-337)/2, (screenSize.height-219)/2, 337, 219);&lt;br /&gt;    }// &lt;/editor-fold&gt;//GEN-END:initComponents&lt;br /&gt;&lt;br /&gt;    private void jButton1MouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_jButton1MouseClicked&lt;br /&gt;// TODO add your handling code here:&lt;br /&gt;        red=green=blue=255;&lt;br /&gt;        changePanelColor();&lt;br /&gt;    }//GEN-LAST:event_jButton1MouseClicked&lt;br /&gt;&lt;br /&gt;    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jButton1ActionPerformed&lt;br /&gt;// TODO add your handling code here:&lt;br /&gt;       &lt;br /&gt;    }//GEN-LAST:event_jButton1ActionPerformed&lt;br /&gt;&lt;br /&gt;    private void jSpinner3StateChanged(javax.swing.event.ChangeEvent evt) {//GEN-FIRST:event_jSpinner3StateChanged&lt;br /&gt;// TODO add your handling code here:&lt;br /&gt;        blue=modelBlue.getNumber().intValue();&lt;br /&gt;        changePanelColor();&lt;br /&gt;   &lt;br /&gt;    }//GEN-LAST:event_jSpinner3StateChanged&lt;br /&gt;&lt;br /&gt;    private void jSpinner2StateChanged(javax.swing.event.ChangeEvent evt) {//GEN-FIRST:event_jSpinner2StateChanged&lt;br /&gt;// TODO add your handling code here:&lt;br /&gt;             green=modelGreen.getNumber().intValue();&lt;br /&gt;             changePanelColor();&lt;br /&gt;    }//GEN-LAST:event_jSpinner2StateChanged&lt;br /&gt;&lt;br /&gt;    private void jSpinner1StateChanged(javax.swing.event.ChangeEvent evt) {//GEN-FIRST:event_jSpinner1StateChanged&lt;br /&gt;// TODO add your handling code here:&lt;br /&gt;         red=modelRed.getNumber().intValue();&lt;br /&gt;         changePanelColor();&lt;br /&gt;    }//GEN-LAST:event_jSpinner1StateChanged&lt;br /&gt;    &lt;br /&gt;    /**&lt;br /&gt;     * @param args the command line arguments&lt;br /&gt;     */&lt;br /&gt;    public static void main(String args[]) {&lt;br /&gt;        java.awt.EventQueue.invokeLater(new Runnable() {&lt;br /&gt;            public void run() {&lt;br /&gt;                new FormColor().setVisible(true);&lt;br /&gt;            }&lt;br /&gt;        });&lt;br /&gt;    }&lt;br /&gt;    &lt;br /&gt;    // Variables declaration - do not modify//GEN-BEGIN:variables&lt;br /&gt;    private javax.swing.JButton jButton1;&lt;br /&gt;    private javax.swing.JLabel jLabel1;&lt;br /&gt;    private javax.swing.JLabel jLabel2;&lt;br /&gt;    private javax.swing.JLabel jLabel3;&lt;br /&gt;    private javax.swing.JPanel jPanel1;&lt;br /&gt;    private javax.swing.JSpinner jSpinner1;&lt;br /&gt;    private javax.swing.JSpinner jSpinner2;&lt;br /&gt;    private javax.swing.JSpinner jSpinner3;&lt;br /&gt;    // End of variables declaration//GEN-END:variables&lt;br /&gt;    &lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;http://dayaprime.com&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3709878533190869705-4398000184221516504?l=primadaya.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://primadaya.blogspot.com/feeds/4398000184221516504/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://primadaya.blogspot.com/2008/12/colour-tuner.html#comment-form' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/4398000184221516504'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/4398000184221516504'/><link rel='alternate' type='text/html' href='http://primadaya.blogspot.com/2008/12/colour-tuner.html' title='Colour TUner'/><author><name>Primadaya</name><uri>http://www.blogger.com/profile/08488032866171028222</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://1.bp.blogspot.com/_vjBazn8tW90/STeJTwfEknI/AAAAAAAAAAo/e0SlKLyKRxo/S220/08.01.2406.jpg.bmp'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3709878533190869705.post-7133443810223565219</id><published>2008-12-27T19:56:00.003-08:00</published><updated>2010-11-04T00:04:04.260-07:00</updated><title type='text'>Parse from String to Integer</title><content type='html'>Count1.java&lt;br /&gt;&lt;br /&gt;import javax.swing.JOptionPane;&lt;br /&gt;public class Count1{&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;public static void main (String [] args){&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;String jml1=JOptionPane.showInputDialog("Enter first number:");&lt;br /&gt;String jml2=JOptionPane.showInputDialog("Enter Second number:");&lt;br /&gt;Integer  number=Integer.parseInt(jml1);&lt;br /&gt;Integer number1=Integer.parseInt(jml2);&lt;br /&gt;JOptionPane.showMessageDialog(null,"Hasil:"+(number+number1));&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;CobaCount.java&lt;br /&gt;&lt;br /&gt;import javax.swing.JOptionPane;&lt;br /&gt;public class CobaCount{&lt;br /&gt;public static void main (String[]args ){&lt;br /&gt;Count1 Countdoank=new Count1();&lt;br /&gt;JOptionPane.showMessageDialog(null,Countdoank.Hasil());&lt;br /&gt;System.exit(0);&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;http://dayaprime.com&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3709878533190869705-7133443810223565219?l=primadaya.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://primadaya.blogspot.com/feeds/7133443810223565219/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://primadaya.blogspot.com/2008/12/parse-from-string-to-integer.html#comment-form' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/7133443810223565219'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/7133443810223565219'/><link rel='alternate' type='text/html' href='http://primadaya.blogspot.com/2008/12/parse-from-string-to-integer.html' title='Parse from String to Integer'/><author><name>Primadaya</name><uri>http://www.blogger.com/profile/08488032866171028222</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://1.bp.blogspot.com/_vjBazn8tW90/STeJTwfEknI/AAAAAAAAAAo/e0SlKLyKRxo/S220/08.01.2406.jpg.bmp'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3709878533190869705.post-7122846107275081139</id><published>2008-12-27T19:56:00.001-08:00</published><updated>2010-11-04T00:04:21.474-07:00</updated><title type='text'>Date Format</title><content type='html'>import java.awt.*;&lt;br /&gt;import java.awt.event.*;&lt;br /&gt;import java.util.*;&lt;br /&gt;import java.text.*;&lt;br /&gt;&lt;br /&gt;/**&lt;br /&gt; * A simple AWT GUI to let you try out the&lt;br /&gt; * SimpleDateFormat class.&lt;br /&gt; */&lt;br /&gt;public class TryDateFormat extends Frame&lt;br /&gt;{&lt;br /&gt;    private Label timeCaption;&lt;br /&gt;    private Label formatCaption;&lt;br /&gt;    private TextField timeValue;&lt;br /&gt;    private TextField formatValue;&lt;br /&gt;    private Button formatButton;&lt;br /&gt;    private Button helpButton;&lt;br /&gt;    private Button exitButton;&lt;br /&gt;    private TextArea resultArea;&lt;br /&gt;    private Dialog  helpDialog;&lt;br /&gt;&lt;br /&gt;    public TryDateFormat() {&lt;br /&gt; super("Try Java SimpleDateFormat!");&lt;br /&gt; Date now = new Date();&lt;br /&gt; Panel ucPanel = new Panel();&lt;br /&gt; Panel uwPanel = new Panel();&lt;br /&gt; Panel usPanel = new Panel();&lt;br /&gt; Panel uPanel  = new Panel();&lt;br /&gt; &lt;br /&gt; ucPanel.setLayout(new GridLayout(2,1));&lt;br /&gt; uwPanel.setLayout(new GridLayout(2,1));&lt;br /&gt; usPanel.setLayout(new FlowLayout(FlowLayout.RIGHT));&lt;br /&gt; uPanel.setLayout(new BorderLayout());&lt;br /&gt; uPanel.setBackground(Color.green);&lt;br /&gt;&lt;br /&gt; timeCaption = new Label("Time value:", Label.RIGHT);&lt;br /&gt; timeValue = new TextField("" + now.getTime());&lt;br /&gt; timeValue.setBackground(Color.white);&lt;br /&gt; formatCaption = new Label("Format specifier:", Label.RIGHT);&lt;br /&gt; formatValue = new TextField("yyyyMMddHHmmss");&lt;br /&gt; formatValue.setBackground(Color.white);&lt;br /&gt; formatButton = new Button("Do Format");&lt;br /&gt; helpButton = new Button("Help");&lt;br /&gt; exitButton = new Button("Exit");&lt;br /&gt; resultArea = new TextArea(12,52);&lt;br /&gt; resultArea.setFont(new Font("Monospaced", Font.PLAIN, 12));&lt;br /&gt; resultArea.setBackground(Color.white);&lt;br /&gt;&lt;br /&gt; uwPanel.add(timeCaption);&lt;br /&gt; uwPanel.add(formatCaption);&lt;br /&gt; uPanel.add("West", uwPanel);&lt;br /&gt; ucPanel.add(timeValue);&lt;br /&gt; ucPanel.add(formatValue);&lt;br /&gt; uPanel.add("Center", ucPanel);&lt;br /&gt; usPanel.add(formatButton);&lt;br /&gt; usPanel.add(helpButton);&lt;br /&gt; usPanel.add(exitButton);&lt;br /&gt; uPanel.add("South", usPanel);&lt;br /&gt; this.add("North", uPanel);&lt;br /&gt; this.add("Center", resultArea);&lt;br /&gt;&lt;br /&gt; helpDialog = new Dialog(this, "TryDateFormat Help", false);&lt;br /&gt; StringBuffer buf = new StringBuffer(1500);&lt;br /&gt; int maxlen = 0;&lt;br /&gt; for(int i = 0; i &lt; help.length; i++) {&lt;br /&gt;     buf.append(" "); buf.append(help[i]); buf.append("\n");&lt;br /&gt;     if (help[i].length() &gt; maxlen) maxlen = help[i].length();&lt;br /&gt; }&lt;br /&gt; TextArea helptext = new TextArea(20, maxlen + 2);&lt;br /&gt; helptext.setText(buf.toString());&lt;br /&gt; helptext.setEditable(false);&lt;br /&gt; helptext.setFont(new Font("Monospaced", Font.PLAIN, 11));&lt;br /&gt; helpDialog.add("Center", helptext);&lt;br /&gt; Button dismissButton = new Button("Dismiss");&lt;br /&gt; helpDialog.add("South", dismissButton);&lt;br /&gt; helpDialog.pack();&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; // event handlers&lt;br /&gt; exitButton.addActionListener(new ActionListener() {&lt;br /&gt;  public void actionPerformed(ActionEvent e) {&lt;br /&gt;      System.exit(0);&lt;br /&gt;  } });&lt;br /&gt; helpButton.addActionListener(new ActionListener() {&lt;br /&gt;  public void actionPerformed(ActionEvent e) {&lt;br /&gt;      helpDialog.show();&lt;br /&gt;  } });&lt;br /&gt; dismissButton.addActionListener(new ActionListener() {&lt;br /&gt;  public void actionPerformed(ActionEvent e) {&lt;br /&gt;      helpDialog.hide();&lt;br /&gt;  } });&lt;br /&gt; helpDialog.addWindowListener(new WindowAdapter() {&lt;br /&gt;  public void windowClosing(WindowEvent e) {&lt;br /&gt;      helpDialog.hide();&lt;br /&gt;  } });&lt;br /&gt; this.addWindowListener(new WindowAdapter() {&lt;br /&gt;  public void windowClosing(WindowEvent e) {&lt;br /&gt;      System.exit(0);&lt;br /&gt;  } });&lt;br /&gt; formatButton.addActionListener(new ActionListener() {&lt;br /&gt;  public void actionPerformed(ActionEvent e) {&lt;br /&gt;      doFormat();&lt;br /&gt;  } });&lt;br /&gt;&lt;br /&gt; this.pack();&lt;br /&gt; this.show();&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    String help[] = {&lt;br /&gt; "To use this program, enter a time value",&lt;br /&gt; "in the top text field, and a SimpleDateFormat",&lt;br /&gt; "format specifier in the second text field,",&lt;br /&gt; "then click on the Format button.  Results",&lt;br /&gt; "appear in the text area at the bottom of",&lt;br /&gt; "the window.",&lt;br /&gt; "",&lt;br /&gt; "The time value must be in seconds since the",&lt;br /&gt; "epoch, midnight 1/1/1970.",&lt;br /&gt; "",&lt;br /&gt; "The format specifier is simply a pattern",&lt;br /&gt; "string; certain letters in the pattern will",&lt;br /&gt; "be replaced by values of time or date, ",&lt;br /&gt; "giving complete control over the formatting.",&lt;br /&gt; "The most useful format codes are:",&lt;br /&gt; "",&lt;br /&gt; "Symbol  Meaning             Presentation   Ex.",&lt;br /&gt; "------  -------             ------------   ----",&lt;br /&gt; "G       era designator      (Text)         AD",&lt;br /&gt; "y       year                (Number)       1996",&lt;br /&gt; "M       month in year       (Text)         July",&lt;br /&gt; "M       month in year       (Number)       07",&lt;br /&gt; "d       day in month        (Number)       10",&lt;br /&gt; "h       hour in am/pm       (Number)       12",&lt;br /&gt; "H       hour in day         (Number)       0",&lt;br /&gt; "m       minute in hour      (Number)       30",&lt;br /&gt; "s       second in minute    (Number)       55",&lt;br /&gt; "S       millisecond         (Number)       978",&lt;br /&gt; "E       day in week         (Text)         Tue",&lt;br /&gt; "D       day in year         (Number)       189",&lt;br /&gt; "a       am/pm marker        (Text)         PM",&lt;br /&gt; "z       time zone           (Text)         PST",&lt;br /&gt; "'       quote text          (Text)         'at'",&lt;br /&gt; "",&lt;br /&gt; "So, for example this format: h:mm a",&lt;br /&gt; "gives this result: 12:08 PM",&lt;br /&gt; };&lt;br /&gt;    &lt;br /&gt;    public void doFormat() {&lt;br /&gt; long tv = 1;&lt;br /&gt; String tvs = timeValue.getText();&lt;br /&gt; try { tv = Long.parseLong(tvs); }&lt;br /&gt; catch (NumberFormatException nfe) { timeValue.setText("1"); }&lt;br /&gt;&lt;br /&gt; String fmt = formatValue.getText();&lt;br /&gt;&lt;br /&gt; Date d = new Date(tv);&lt;br /&gt; /* this uses the current Locale, supposedly */&lt;br /&gt; String res = "";&lt;br /&gt; try {&lt;br /&gt;     SimpleDateFormat sdf = new SimpleDateFormat(fmt);&lt;br /&gt;     res = sdf.format(d);&lt;br /&gt; }&lt;br /&gt; catch (Exception e) {&lt;br /&gt;     res = "&lt;&lt;" + e.getMessage() + "&gt;&gt;";&lt;br /&gt; }&lt;br /&gt; &lt;br /&gt; resultArea.append("At time:      " + tv);&lt;br /&gt; resultArea.append("\n");&lt;br /&gt; resultArea.append("Using format: ");&lt;br /&gt; resultArea.append(fmt);&lt;br /&gt; resultArea.append("\n");&lt;br /&gt; resultArea.append("gives result: ");&lt;br /&gt; resultArea.append(res);&lt;br /&gt; resultArea.append("\n\n");&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    public static void main(String [] args) {&lt;br /&gt; TryDateFormat tdf = new TryDateFormat();&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;http://dayaprime.com&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3709878533190869705-7122846107275081139?l=primadaya.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://primadaya.blogspot.com/feeds/7122846107275081139/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://primadaya.blogspot.com/2008/12/date-format.html#comment-form' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/7122846107275081139'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/7122846107275081139'/><link rel='alternate' type='text/html' href='http://primadaya.blogspot.com/2008/12/date-format.html' title='Date Format'/><author><name>Primadaya</name><uri>http://www.blogger.com/profile/08488032866171028222</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://1.bp.blogspot.com/_vjBazn8tW90/STeJTwfEknI/AAAAAAAAAAo/e0SlKLyKRxo/S220/08.01.2406.jpg.bmp'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3709878533190869705.post-6556321684717832159</id><published>2008-12-27T19:55:00.002-08:00</published><updated>2010-11-04T00:04:28.914-07:00</updated><title type='text'>Swich function</title><content type='html'>import javax.swing.JOptionPane;&lt;br /&gt;&lt;br /&gt;public class Latihan{&lt;br /&gt;&lt;br /&gt; public static void main (String [] args) {&lt;br /&gt;&lt;br /&gt;            String angka = JOptionPane.showInputDialog("Masukkan Angka : ");&lt;br /&gt;            int nilai = Integer.parseInt(angka);&lt;br /&gt;            char nilHuruf;&lt;br /&gt;&lt;br /&gt;        switch(nilai){&lt;br /&gt;            case 4 : nilHuruf = 'A';break;&lt;br /&gt;            case 3 : nilHuruf = 'B';break;&lt;br /&gt;            case 2 : nilHuruf = 'C';break;&lt;br /&gt;            case 1 : nilHuruf = 'D';break;&lt;br /&gt;            case 0 : nilHuruf = 'E';break;&lt;br /&gt;            default : nilHuruf = 'E';break;&lt;br /&gt;         }&lt;br /&gt;        &lt;br /&gt;JOptionPane.showMessageDialog(null, "Nilai Angka = " + nilai +"\n"+ "Nilai Huruf = " + nilHuruf );&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;http://dayaprime.com&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3709878533190869705-6556321684717832159?l=primadaya.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://primadaya.blogspot.com/feeds/6556321684717832159/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://primadaya.blogspot.com/2008/12/swich-function.html#comment-form' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/6556321684717832159'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/6556321684717832159'/><link rel='alternate' type='text/html' href='http://primadaya.blogspot.com/2008/12/swich-function.html' title='Swich function'/><author><name>Primadaya</name><uri>http://www.blogger.com/profile/08488032866171028222</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://1.bp.blogspot.com/_vjBazn8tW90/STeJTwfEknI/AAAAAAAAAAo/e0SlKLyKRxo/S220/08.01.2406.jpg.bmp'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3709878533190869705.post-5967405373089593762</id><published>2008-12-27T19:55:00.001-08:00</published><updated>2008-12-27T19:55:35.240-08:00</updated><title type='text'>Prime number</title><content type='html'>import javax.swing.JOptionPane;&lt;br /&gt;&lt;br /&gt;public class Prima {&lt;br /&gt;  public static void main (String [] args) {&lt;br /&gt;    String numString;&lt;br /&gt;    int numInt;&lt;br /&gt;    int i;&lt;br /&gt;    int jum=0;&lt;br /&gt;    &lt;br /&gt;    numString = JOptionPane.showInputDialog("Masukkan Angka Bilangan Prima : ");&lt;br /&gt;    numInt = Integer.parseInt(numString);&lt;br /&gt;    &lt;br /&gt;    for (i=1 ; i&lt;=numInt ; i++){&lt;br /&gt;        if (numInt % i == 0) {&lt;br /&gt;            jum = jum + 1;&lt;br /&gt;        }&lt;br /&gt;    }&lt;br /&gt;    &lt;br /&gt;    if (jum==2 &amp;&amp; numInt !=1){&lt;br /&gt;        JOptionPane.showMessageDialog(null, "Bilangan Prima","Pesan",1);&lt;br /&gt;    }&lt;br /&gt;    &lt;br /&gt;    else{JOptionPane.showMessageDialog(null, "Bukan Bilangan Prima","Pesan",1);&lt;br /&gt;  }&lt;br /&gt;}&lt;br /&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3709878533190869705-5967405373089593762?l=primadaya.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://primadaya.blogspot.com/feeds/5967405373089593762/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://primadaya.blogspot.com/2008/12/prime-number.html#comment-form' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/5967405373089593762'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/5967405373089593762'/><link rel='alternate' type='text/html' href='http://primadaya.blogspot.com/2008/12/prime-number.html' title='Prime number'/><author><name>Primadaya</name><uri>http://www.blogger.com/profile/08488032866171028222</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://1.bp.blogspot.com/_vjBazn8tW90/STeJTwfEknI/AAAAAAAAAAo/e0SlKLyKRxo/S220/08.01.2406.jpg.bmp'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3709878533190869705.post-2214505413298154095</id><published>2008-12-27T19:54:00.000-08:00</published><updated>2010-11-04T00:13:17.135-07:00</updated><title type='text'>Get Input Keyboard</title><content type='html'>import  java.io.BufferedReader;&lt;br /&gt;import java.io.IOException;&lt;br /&gt;import java.io.InputStreamReader;&lt;br /&gt;&lt;br /&gt;public class Tugas2 {&lt;br /&gt;public static void main (String[]args){&lt;br /&gt; BufferedReader dataIn=new BufferedReader(new InputStreamReader(System.in));&lt;br /&gt;  &lt;br /&gt;String n1=" ";&lt;br /&gt;String n2=" ";&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; System.out.println("Please Enter First Number :");&lt;br /&gt; try {&lt;br /&gt;n1=dataIn.readLine();&lt;br /&gt;// Integer numi=Integer.parseInt(n1);&lt;br /&gt;  }&lt;br /&gt;  catch (IOException e){&lt;br /&gt;   System.out.println("Error");&lt;br /&gt;   }&lt;br /&gt;  //------------------------------------&lt;br /&gt; System.out.println("Please Enter Second Number :");&lt;br /&gt; try {&lt;br /&gt;n2=dataIn.readLine();&lt;br /&gt;Integer numis=Integer.parseInt(n2);&lt;br /&gt;Integer numi=Integer.parseInt(n1);&lt;br /&gt; System.out.println(numi+numis);&lt;br /&gt;  }&lt;br /&gt;  catch (IOException e){&lt;br /&gt;   System.out.println("Error");&lt;br /&gt;&lt;br /&gt;   }&lt;br /&gt;   &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;     }&lt;br /&gt;}&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;http://dayaprime.com&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3709878533190869705-2214505413298154095?l=primadaya.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://primadaya.blogspot.com/feeds/2214505413298154095/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://primadaya.blogspot.com/2008/12/get-input-keyboard.html#comment-form' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/2214505413298154095'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/2214505413298154095'/><link rel='alternate' type='text/html' href='http://primadaya.blogspot.com/2008/12/get-input-keyboard.html' title='Get Input Keyboard'/><author><name>Primadaya</name><uri>http://www.blogger.com/profile/08488032866171028222</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://1.bp.blogspot.com/_vjBazn8tW90/STeJTwfEknI/AAAAAAAAAAo/e0SlKLyKRxo/S220/08.01.2406.jpg.bmp'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3709878533190869705.post-2966223601796502898</id><published>2008-12-27T19:52:00.001-08:00</published><updated>2010-11-04T00:12:13.167-07:00</updated><title type='text'>Calculator</title><content type='html'>import java.awt.*;&lt;br /&gt;import javax.swing.*;&lt;br /&gt;import java.awt.event.*;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;/* 25Oct2005: Designed and programmed by jfernandez.ph */&lt;br /&gt;/* 13Nov2005: Designed and programmed by jfernandez.ph */&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;public class Calculator implements ActionListener{&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;char o;&lt;br /&gt;int ctr=0;&lt;br /&gt;String value="", cv="", oBtn;&lt;br /&gt;Double answer, v1, v2;&lt;br /&gt;Double NumberConverted;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Frame f;&lt;br /&gt;Panel p1, p2, p3, p4, p5, p6;&lt;br /&gt;private TextField tField;&lt;br /&gt;private Menu EditMenu;&lt;br /&gt;private MenuBar menuBar;&lt;br /&gt;private MenuItem fmi1, fmi2, fmi3;&lt;br /&gt;private Button num0, num1, num2, num3, num4, num5, num6, num7, num8,&lt;br /&gt;num9;&lt;br /&gt;private Button bAdd, bSub, bMul, bDiv, bPer, bSqrt, bFrac, bInt, bDot,&lt;br /&gt;bCE, equals, backspace, clear;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;/* 25Oct2005: Designed and programmed by jfernandez.ph  */&lt;br /&gt;/* 13Nov2005: Designed and programmed by jfernandez.ph  */&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Calculator(){&lt;br /&gt;  f = new Frame("Calculator");&lt;br /&gt;&lt;br /&gt;  menuBar = new MenuBar();&lt;br /&gt;  EditMenu = new Menu ("Edit");&lt;br /&gt;&lt;br /&gt;  fmi1 = new MenuItem(" Copy   ");&lt;br /&gt;  fmi2 = new MenuItem(" Paste  ");&lt;br /&gt;  fmi3 = new MenuItem(" Quit    ");&lt;br /&gt;&lt;br /&gt;  EditMenu.add(fmi1);&lt;br /&gt;  EditMenu.add(fmi2);&lt;br /&gt;  EditMenu.addSeparator();&lt;br /&gt;  EditMenu.add(fmi3);&lt;br /&gt;&lt;br /&gt;  p1 = new Panel();&lt;br /&gt;  p2 = new Panel();&lt;br /&gt;  p3 = new Panel();&lt;br /&gt;  p4 = new Panel();&lt;br /&gt;  p5 = new Panel();&lt;br /&gt;  p6 = new Panel();&lt;br /&gt;&lt;br /&gt;  tField = new TextField(35);&lt;br /&gt;&lt;br /&gt;  num0 = new Button  ("0");&lt;br /&gt;  num1 = new Button  ("1");&lt;br /&gt;  num2 = new Button  ("2");&lt;br /&gt;  num3 = new Button  ("3");&lt;br /&gt;  num4 = new Button  ("4");&lt;br /&gt;  num5 = new Button  ("5");&lt;br /&gt;  num6 = new Button  ("6");&lt;br /&gt;  num7 = new Button  ("7");&lt;br /&gt;  num8 = new Button  ("8");&lt;br /&gt;  num9 = new Button  ("9");&lt;br /&gt;  bAdd = new Button  ("+");&lt;br /&gt;  bSub = new Button  ("-");&lt;br /&gt;  bMul = new Button  ("x");&lt;br /&gt;  bDiv = new Button  ("/");&lt;br /&gt;  bPer = new Button  ("%");&lt;br /&gt;  bSqrt = new Button  ("sqrt");&lt;br /&gt;  bFrac = new Button  ("1/x");&lt;br /&gt;  bInt = new Button  ("+/-");&lt;br /&gt;  bDot = new Button  (".");&lt;br /&gt;  bCE = new Button  ("CE");&lt;br /&gt;  equals = new Button  ("=");&lt;br /&gt;  backspace = new Button  ("Backspace");&lt;br /&gt;  clear = new Button ("C");&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;/* 25Oct2005: Designed and programmed by jfernandez.ph  */&lt;br /&gt;/* 13Nov2005: Designed and programmed by jfernandez.ph  */&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; public void launchFrame(){&lt;br /&gt;&lt;br /&gt;  tField.setText("0.");&lt;br /&gt;  tField.setEnabled(false);&lt;br /&gt;&lt;br /&gt;  menuBar.add(EditMenu);&lt;br /&gt;&lt;br /&gt;  p2.add(backspace);&lt;br /&gt;  p2.add(bCE);&lt;br /&gt;  p2.add(clear);&lt;br /&gt;&lt;br /&gt;  p3.add(num7);&lt;br /&gt;  p3.add(num8);&lt;br /&gt;  p3.add(num9);&lt;br /&gt;  p3.add(bDiv);&lt;br /&gt;  p3.add(bSqrt);&lt;br /&gt;&lt;br /&gt;  p4.add(num4);&lt;br /&gt;  p4.add(num5);&lt;br /&gt;  p4.add(num6);&lt;br /&gt;  p4.add(bMul);&lt;br /&gt;  p4.add(bPer);&lt;br /&gt;&lt;br /&gt;  p5.add(num1);&lt;br /&gt;  p5.add(num2);&lt;br /&gt;  p5.add(num3);&lt;br /&gt;  p5.add(bSub);&lt;br /&gt;  p5.add(bFrac);&lt;br /&gt;&lt;br /&gt;  p6.add(num0);&lt;br /&gt;  p6.add(bInt);&lt;br /&gt;  p6.add(bDot);&lt;br /&gt;  p6.add(bAdd);&lt;br /&gt;  p6.add(equals);&lt;br /&gt;&lt;br /&gt;  p2.setLayout(new GridLayout (1, 3, 2, 2) );&lt;br /&gt;  p3.setLayout(new GridLayout (1, 3, 2, 2) );&lt;br /&gt;  p4.setLayout(new GridLayout (1, 3, 2, 2) );&lt;br /&gt;  p5.setLayout(new GridLayout (1, 3, 2, 2) );&lt;br /&gt;  p6.setLayout(new GridLayout (1, 3, 2, 2) );&lt;br /&gt;&lt;br /&gt;  f.setLayout(new GridLayout (6, 1) );&lt;br /&gt;  f.setResizable(false);&lt;br /&gt;  f.setSize(300,250);&lt;br /&gt;  f.add(tField);&lt;br /&gt;  f.add(p2);&lt;br /&gt;  f.add(p3);&lt;br /&gt;  f.add(p4);&lt;br /&gt;  f.add(p5);&lt;br /&gt;  f.add(p6);&lt;br /&gt;  f.setVisible(true);&lt;br /&gt;  f.setMenuBar(menuBar);&lt;br /&gt;  f.pack();&lt;br /&gt;&lt;br /&gt; // ACTION LISTENERS&lt;br /&gt;  clear.addActionListener(this);&lt;br /&gt;  bCE.addActionListener(this);&lt;br /&gt;&lt;br /&gt;  num0.addActionListener(this);&lt;br /&gt;  num1.addActionListener(this);&lt;br /&gt;  num2.addActionListener(this);&lt;br /&gt;  num3.addActionListener(this);&lt;br /&gt;  num4.addActionListener(this);&lt;br /&gt;  num5.addActionListener(this);&lt;br /&gt;  num6.addActionListener(this);&lt;br /&gt;  num7.addActionListener(this);&lt;br /&gt;  num8.addActionListener(this);&lt;br /&gt;  num9.addActionListener(this);&lt;br /&gt;&lt;br /&gt;  bAdd.addActionListener(this);&lt;br /&gt;  bSub.addActionListener(this);&lt;br /&gt;  bMul.addActionListener(this);&lt;br /&gt;  bDiv.addActionListener(this);&lt;br /&gt;  bPer.addActionListener(this);&lt;br /&gt;&lt;br /&gt;  bInt.addActionListener(this);&lt;br /&gt;  bSqrt.addActionListener(this);&lt;br /&gt;  bFrac.addActionListener(this);&lt;br /&gt;  bDot.addActionListener(this);&lt;br /&gt;&lt;br /&gt;  equals.addActionListener(this);&lt;br /&gt;  backspace.addActionListener(this);&lt;br /&gt;&lt;br /&gt;  fmi1.addActionListener(this);&lt;br /&gt;  fmi2.addActionListener(this);&lt;br /&gt;  fmi3.addActionListener(this);&lt;br /&gt; }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;/* 25Oct2005: Designed and programmed by jfernandez.ph  */&lt;br /&gt;/* 13Nov2005: Designed and programmed by jfernandez.ph  */&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;/* |------------ START OF ACTION EVENTS ------------| */&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;public void actionPerformed(ActionEvent a){&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; try{&lt;br /&gt;   /* |-------- Handling Exceptions ---------| */&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;  if(a.getSource()==num0){&lt;br /&gt;   value+=0;&lt;br /&gt;   tField.setText(value);&lt;br /&gt;  }&lt;br /&gt;  if(a.getSource()==num1){&lt;br /&gt;   value+=1;&lt;br /&gt;   tField.setText(value);&lt;br /&gt;  }&lt;br /&gt;  if(a.getSource()==num2){&lt;br /&gt;   value+=2;&lt;br /&gt;   tField.setText(value);&lt;br /&gt;  }&lt;br /&gt;  if(a.getSource()==num3){&lt;br /&gt;   value+=3;&lt;br /&gt;   tField.setText(value);&lt;br /&gt;  }&lt;br /&gt;  if(a.getSource()==num4){&lt;br /&gt;   value+=4;&lt;br /&gt;   tField.setText(value);&lt;br /&gt;  }&lt;br /&gt;  if(a.getSource()==num5){&lt;br /&gt;   value+=5;&lt;br /&gt;   tField.setText(value);&lt;br /&gt;  }&lt;br /&gt;  if(a.getSource()==num6){&lt;br /&gt;   value+=6;&lt;br /&gt;   tField.setText(value);&lt;br /&gt;  }&lt;br /&gt;  if(a.getSource()==num7){&lt;br /&gt;   value+=7;&lt;br /&gt;   tField.setText(value);&lt;br /&gt;  }&lt;br /&gt;  if(a.getSource()==num8){&lt;br /&gt;   value+=8;&lt;br /&gt;   tField.setText(value);&lt;br /&gt;  }&lt;br /&gt;  if(a.getSource()==num9){&lt;br /&gt;   value+=9;&lt;br /&gt;   tField.setText(value);&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;/* 25Oct2005: Designed and programmed by jfernandez.ph  */&lt;br /&gt;/* 13Nov2005: Designed and programmed by jfernandez.ph  */&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;  if (a.getSource() == bAdd){&lt;br /&gt;   v1 = Double.parseDouble( tField.getText() );&lt;br /&gt;   ctr=0;&lt;br /&gt;   o = '+';&lt;br /&gt;   value="";&lt;br /&gt;   tField.setText("" +value);&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;  if (a.getSource() == bSub){&lt;br /&gt;    v1 = Double.parseDouble( tField.getText() );&lt;br /&gt;    ctr=0;&lt;br /&gt;    o = '-';&lt;br /&gt;    value="";&lt;br /&gt;    tField.setText("" +value);&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;  if (a.getSource() == bMul){&lt;br /&gt;    v1 = Double.parseDouble( tField.getText() );&lt;br /&gt;    ctr=0;&lt;br /&gt;    o = 'x';&lt;br /&gt;    value="";&lt;br /&gt;    tField.setText("" +value);&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;  if (a.getSource() == bDiv){&lt;br /&gt;    v1 = Double.parseDouble( tField.getText() );&lt;br /&gt;    ctr=0;&lt;br /&gt;    o = '/';&lt;br /&gt;    value="";&lt;br /&gt;    tField.setText("" +value);&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;  if (a.getSource() == bPer){&lt;br /&gt;    v1 = Double.parseDouble( tField.getText() );&lt;br /&gt;    ctr=0;&lt;br /&gt;    value="";&lt;br /&gt;    answer = (v1/100);&lt;br /&gt;    tField.setText("" +answer);&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;/* 25Oct2005: Designed and programmed by jfernandez.ph  */&lt;br /&gt;/* 13Nov2005: Designed and programmed by jfernandez.ph  */&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt; /* |-- EQUALS ACTION --| */&lt;br /&gt;&lt;br /&gt;  if(a.getSource()==equals){&lt;br /&gt;     value="";&lt;br /&gt;     v2 = Double.parseDouble(tField.getText());&lt;br /&gt;&lt;br /&gt;    if(o=='+'){&lt;br /&gt;     ctr=0;&lt;br /&gt;     answer = v1 + v2;&lt;br /&gt;     tField.setText("" +answer);&lt;br /&gt;     value=""; v1=null; v2=null;&lt;br /&gt;    }&lt;br /&gt;    else if(o=='-'){&lt;br /&gt;     ctr=0;&lt;br /&gt;     answer = v1 - v2;&lt;br /&gt;     tField.setText("" +answer);&lt;br /&gt;     value=""; v1=null; v2=null;&lt;br /&gt;    }&lt;br /&gt;    else if(o=='x'){&lt;br /&gt;     ctr=0;&lt;br /&gt;     answer = v1 * v2;&lt;br /&gt;     tField.setText("" +answer);&lt;br /&gt;     value=""; v1=null; v2=null;&lt;br /&gt;    }&lt;br /&gt;    else if(o=='/'){&lt;br /&gt;     ctr=0;&lt;br /&gt;     answer = v1 / v2;&lt;br /&gt;     tField.setText("" +answer);&lt;br /&gt;     value=""; v1=null; v2=null;&lt;br /&gt;    }&lt;br /&gt;    else if(o=='%'){&lt;br /&gt;     ctr=0;&lt;br /&gt;     answer = v1 % v2;&lt;br /&gt;     tField.setText("" +answer);&lt;br /&gt;     value=""; v1=null; v2=null;&lt;br /&gt;    }&lt;br /&gt;    else{}&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt; /* |-- EQUALS ACTION --| */&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;/* 25Oct2005: Designed and programmed by jfernandez.ph  */&lt;br /&gt;/* 13Nov2005: Designed and programmed by jfernandez.ph  */&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;  /* |-- Clear --| */&lt;br /&gt;  if(a.getSource()==clear){&lt;br /&gt;   ctr=0;&lt;br /&gt;   v1=null;&lt;br /&gt;   v2=null;&lt;br /&gt;   value="";&lt;br /&gt;   answer=0.;&lt;br /&gt;   tField.setText("0.");&lt;br /&gt;&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;  if(a.getSource()==bCE){&lt;br /&gt;   ctr=0;&lt;br /&gt;   value="";&lt;br /&gt;   tField.setText("0.");&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;  /* |-- Point --| */&lt;br /&gt;  if(a.getSource() == bDot){&lt;br /&gt;   if(ctr==0){&lt;br /&gt;     value+=".";&lt;br /&gt;     ctr+=1;&lt;br /&gt;     tField.setText("" +value);&lt;br /&gt;   }&lt;br /&gt;   else{&lt;br /&gt;    System.out.print("");&lt;br /&gt;   }&lt;br /&gt;&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;  /* |-- Back Space --| */&lt;br /&gt;  if(a.getSource() == backspace){&lt;br /&gt;    value = value.substring(0, value.length()-1 );&lt;br /&gt;    tField.setText("" +value);&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;  /* |-- Square Root --| */&lt;br /&gt;  if(a.getSource() == bSqrt){&lt;br /&gt;   ctr=0;&lt;br /&gt;   value = "";&lt;br /&gt;   v1 = Math.sqrt( Double.parseDouble( tField.getText() ) );&lt;br /&gt;   tField.setText("" +v1);&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;  /* |-- Integer --| */&lt;br /&gt;  if(a.getSource() == bInt){&lt;br /&gt;   ctr=0;&lt;br /&gt;   NumberConverted = ( Double.parseDouble(tField.getText()) * -1 );&lt;br /&gt;   value = "";&lt;br /&gt;   tField.setText("" +NumberConverted);&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;  /* |-- Reciprocal --| */&lt;br /&gt;  if(a.getSource() == bFrac){&lt;br /&gt;   ctr=0;&lt;br /&gt;   value = "";&lt;br /&gt;   Double NumberContainer = ( 1 / Double.parseDouble(&lt;br /&gt;tField.getText() ) );&lt;br /&gt;   tField.setText("" +NumberContainer);&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;// ------------ Menu Item Actions ------------ //&lt;br /&gt;&lt;br /&gt;  if(a.getSource() == fmi1){&lt;br /&gt;   cv = tField.getText();&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;  if(a.getSource() == fmi2){&lt;br /&gt;   tField.setText("" +cv);&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;  if(a.getSource() == fmi3){&lt;br /&gt;   System.exit(0);&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt; } // End of Try&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;/* |-------- Attempting To Catch Runtime Errors ---------| */&lt;br /&gt;&lt;br /&gt; catch(StringIndexOutOfBoundsException str){}&lt;br /&gt; catch(NumberFormatException nfe){}&lt;br /&gt; catch(NullPointerException npe){}&lt;br /&gt;&lt;br /&gt;} // END OF ACTION EVENTS&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;/* 25Oct2005: Designed and programmed by jfernandez.ph  */&lt;br /&gt;/* 13Nov2005: Designed and programmed by jfernandez.ph  */&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;public static void main (String args[]){&lt;br /&gt; Calculator s = new Calculator();&lt;br /&gt; s.launchFrame();&lt;br /&gt;}&lt;br /&gt;}&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;http://dayaprime.com&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3709878533190869705-2966223601796502898?l=primadaya.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://primadaya.blogspot.com/feeds/2966223601796502898/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://primadaya.blogspot.com/2008/12/calculator.html#comment-form' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/2966223601796502898'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/2966223601796502898'/><link rel='alternate' type='text/html' href='http://primadaya.blogspot.com/2008/12/calculator.html' title='Calculator'/><author><name>Primadaya</name><uri>http://www.blogger.com/profile/08488032866171028222</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://1.bp.blogspot.com/_vjBazn8tW90/STeJTwfEknI/AAAAAAAAAAo/e0SlKLyKRxo/S220/08.01.2406.jpg.bmp'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3709878533190869705.post-1850140493936226751</id><published>2008-12-27T19:52:00.000-08:00</published><updated>2010-11-04T00:11:49.753-07:00</updated><title type='text'>Calculator</title><content type='html'>//&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;textarea name="select" rows="35" cols="100" style="border: 1px solid rgb(244, 220, 171); font-size: 12px; color: rgb(0, 128, 0); font-family: Tahoma;" wrap="OFF"&gt;&lt;/textarea&gt;&lt;div style="text-align: auto;"&gt;&lt;span class="Apple-style-span"    style="font-family:Tahoma;font-size:100%;color:#008000;"&gt;&lt;span class="Apple-style-span" style="font-size: 12px; white-space: pre;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span"    style="font-family:Tahoma;font-size:100%;color:#008000;"&gt;&lt;span class="Apple-style-span" style="font-size: 12px; white-space: pre;"&gt;http://dayaprime.com&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3709878533190869705-1850140493936226751?l=primadaya.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://primadaya.blogspot.com/feeds/1850140493936226751/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://primadaya.blogspot.com/2008/12/calculator_27.html#comment-form' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/1850140493936226751'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/1850140493936226751'/><link rel='alternate' type='text/html' href='http://primadaya.blogspot.com/2008/12/calculator_27.html' title='Calculator'/><author><name>Primadaya</name><uri>http://www.blogger.com/profile/08488032866171028222</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://1.bp.blogspot.com/_vjBazn8tW90/STeJTwfEknI/AAAAAAAAAAo/e0SlKLyKRxo/S220/08.01.2406.jpg.bmp'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3709878533190869705.post-3624860177035455083</id><published>2008-12-03T22:54:00.001-08:00</published><updated>2010-11-04T00:11:27.939-07:00</updated><title type='text'>Pengenalan  JAVA</title><content type='html'>Sejarah perkembangan Java&lt;br /&gt;&lt;br /&gt;Bahasa pemrograman Java pertama lahir dari The Green Project, yang berjalan selama 18 bulan, dari awal tahun 1991 hingga musim panas 1992. Proyek tersebut belum menggunakan versi yang dinamakan Oak. Proyek ini dimotori oleh Patrick Naughton, Mike Sheridan, James Gosling dan Bill Joy, beserta sembilan pemrogram lainnya dari Sun Microsystems. Salah satu hasil proyek ini adalah maskot Duke yang dibuat oleh Joe Palrang.&lt;br /&gt;&lt;br /&gt;Pertemuan proyek berlangsung di sebuah gedung perkantoran Sand Hill Road di Menlo Park. Sekitar musim panas 1992 proyek ini ditutup dengan menghasilkan sebuah program Java Oak pertama, yang ditujukan sebagai pengendali sebuah peralatan dengan teknologi layar sentuh (touch screen), seperti pada PDA sekarang ini. Teknologi baru ini dinamai "*7" (Star Seven).&lt;br /&gt;&lt;br /&gt;Setelah era Star Seven selesai, sebuah anak perusahaan TV kabel tertarik ditambah beberapa orang dari proyek The Green Project. Mereka memusatkan kegiatannya pada sebuah ruangan kantor di 100 Hamilton Avenue, Palo Alto.&lt;br /&gt;&lt;br /&gt;Perusahaan baru ini bertambah maju: jumlah karyawan meningkat dalam waktu singkat dari 13 menjadi 70 orang. Pada rentang waktu ini juga ditetapkan pemakaian Internet sebagai medium yang menjembatani kerja dan ide di antara mereka. Pada awal tahun 1990-an, Internet masih merupakan rintisan, yang dipakai hanya di kalangan akademisi dan militer.&lt;br /&gt;&lt;br /&gt;Mereka menjadikan perambah (browser) Mosaic sebagai landasan awal untuk membuat perambah Java pertama yang dinamai Web Runner, terinsipirasi dari film 1980-an, Blade Runner. Pada perkembangan rilis pertama, Web Runner berganti nama menjadi Hot Java.&lt;br /&gt;&lt;br /&gt;Pada sekitar bulan Maret 1995, untuk pertama kali kode sumber Java versi 1.0a2 dibuka. Kesuksesan mereka diikuti dengan untuk pemberitaan pertama kali pada surat kabar San Jose Mercury News pada tanggal 23 Mei 1995.&lt;br /&gt;&lt;br /&gt;Sayang terjadi perpecahan di antara mereka suatu hari pada pukul 04.00 di sebuah ruangan hotel Sheraton Palace. Tiga dari pimpinan utama proyek, Eric Schmidt dan George Paolini dari Sun Microsystems bersama Marc Andreessen, membentuk Netscape.&lt;br /&gt;&lt;br /&gt;Nama Oak, diambil dari pohon oak yang tumbuh di depan jendela ruangan kerja "bapak java", James Gosling. Nama Oak ini tidak dipakai untuk versi release Java karena sebuah perangkat lunak sudah terdaftar dengan merek dagang tersebut, sehingga diambil nama penggantinya menjadi "Java". Nama ini diambil dari kopi murni yang digiling langsung dari biji (kopi tubruk) kesukaan Gosling.&lt;br /&gt;&lt;br /&gt;[sunting] Versi Awal&lt;br /&gt;&lt;br /&gt;Versi awal Java ditahun 1996 sudah merupakan versi release sehingga dinamakan Java Versi 1.0. Java versi ini menyertakan banyak paket standar awal yang terus dikembangkan pada versi selanjutnya:&lt;br /&gt;&lt;br /&gt;  * java.lang: Peruntukan kelas elemen-elemen dasar.&lt;br /&gt;  * java.io: Peruntukan kelas input dan output, termasuk penggunaan berkas.&lt;br /&gt;  * java.util: Peruntukan kelas pelengkap seperti kelas struktur data dan kelas kelas penanggalan.&lt;br /&gt;  * java.net: Peruntukan kelas TCP/IP, yang memungkinkan berkomunikasi dengan komputer lain menggunakan jaringan TCP/IP.&lt;br /&gt;  * java.awt: Kelas dasar untuk aplikasi antarmuka dengan pengguna (GUI)&lt;br /&gt;  * java.applet: Kelas dasar aplikasi antar muka untuk diterapkan pada penjelajah web.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;[sunting] Kelebihan&lt;br /&gt;&lt;br /&gt;  * Multiplatform. Kelebihan utama dari Java ialah dapat dijalankan di beberapa platform / sistem operasi komputer, sesuai dengan prinsip tulis sekali, jalankan di mana saja. Dengan kelebihan ini pemrogram cukup menulis sebuah program Java dan dikompilasi (diubah, dari bahasa yang dimengerti manusia menjadi bahasa mesin / bytecode) sekali lalu hasilnya dapat dijalankan di atas beberapa platform tanpa perubahan. Kelebihan ini memungkinkan sebuah program berbasis java dikerjakan diatas operating system Linux tetapi dijalankan dengan baik di atas Microsoft Windows. Platform yang didukung sampai saat ini adalah Microsoft Windows, Linux, Mac OS dan Sun Solaris. Penyebanya adalah setiap sistem operasi menggunakan programnya sendiri-sendiri (yang dapat diunduh dari situs Java) untuk meninterpretasikan bytecode tersebut.&lt;br /&gt;&lt;br /&gt;  * OOP (Object Oriented Programming - Pemrogram Berorientasi Objek) yang artinya semua aspek yang terdapat di Java adalah Objek. Java merupakan salah satu bahasa pemrograman berbasis oebjek secara murni. Semua tipe data diturunkan dari kelas dasar yang disebut Object. Hal ini sangat memudahkan pemrogram untuk mendesain, membuat, mengembangkan dan mengalokasi kesalahan sebuah program dengan basis Java secara cepat, tepat, mudah dan terorganisir. Kelebihan ini menjadikan Java sebagai salah satu bahasa pemograman termudah, bahkan untuk fungsi fungsi yang advance seperti komunikasi antara komputer sekalipun.&lt;br /&gt;&lt;br /&gt;  * Perpustakaan Kelas Yang Lengkap, Java terkenal dengan kelengkapan library/perpustakaan (kumpulan program program yang disertakan dalam pemrograman java) yang sangat memudahkan dalam penggunaan oleh para pemrogram untuk membangun aplikasinya. Kelengkapan perpustakaan ini ditambah dengan keberadaan komunitas Java yang besar yang terus menerus membuat perpustakaan-perpustakaan baru untuk melingkupi seluruh kebutuhan pembangunan aplikasi.&lt;br /&gt;&lt;br /&gt;  * Bergaya C++, memiliki sintaks seperti bahasa pemrograman [C++] sehingga menarik banyak pemrogram C++ untuk pindah ke Java. Saat ini pengguna Java sangat banyak, sebagian besar adalah pemrogram C++ yang pindah ke Java. Universitas-universitas di Amerika juga mulai berpindah dengan mengajarkan Java kepada murid-murid yang baru karena lebih mudah dipahami oleh murid dan dapat berguna juga bagi mereka yang bukan mengambil jurusan komputer.&lt;br /&gt;&lt;br /&gt;  * Pengumpulan sampah otomatis, memiliki fasilitas pengaturan penggunaan memori sehingga para pemrogram tidak perlu melakukan pengaturan memori secara langsung (seperti halnya dalam bahasa C++ yang dipakai secara luas).&lt;br /&gt;&lt;br /&gt;[sunting] Kekurangan&lt;br /&gt;&lt;br /&gt;  * Tulis sekali, perbaiki di mana saja - Masih ada beberapa hal yang tidak kompatibel antara platform satu dengan platform lain. Untuk J2SE, misalnya SWT-AWT bridge yang sampai sekarang tidak berfungsi pada Mac OS X.&lt;br /&gt;&lt;br /&gt;  * Mudah didekompilasi. Dekompilasi adalah proses membalikkan dari kode jadi menjadi kode sumber. Ini dimungkinkan karena koe jadi Java merupakan bytecode yang menyimpan banyak atribut bahasa tingkat tinggi, seperti nama-nama kelas, metode, dan tipe data. Hal yang sama juga terjadi pada Microsoft .NET Platform. Dengan demikian, algoritma yang digunakan program akan lebih sulit disembunyikan dan mudah dibajak/direverse-engineer.&lt;br /&gt;&lt;br /&gt;  * Penggunaan memori yang banyak. Penggunaan memori untuk program berbasis Java jauh lebih besar daripada bahasa tingkat tinggi generasi sebelumnya seperti C/C++ dan Pascal (lebih spesifik lagi, Delphi dan Object Pascal). Biasanya ini bukan merupakan masalah bagi pihak yang menggunakan teknologi terbaru (karena trend memori terpasang makin murah), tetapi menjadi masalah bagi mereka yang masih harus berkutat dengan mesin komputer berumur lebih dari 4 tahun.&lt;br /&gt;&lt;br /&gt;[sunting] Contoh Kode Program Sederhana Dalam Java&lt;br /&gt;&lt;br /&gt;Contoh program Halo dunia yang ditulis menggunakan bahasa pemrograman Java adalah sebagai berikut:&lt;br /&gt;&lt;br /&gt;class HaloDunia&lt;br /&gt;{&lt;br /&gt;  public static void main(String[] argumen)&lt;br /&gt;  {&lt;br /&gt;      System.out.println("Halo Dunia");&lt;br /&gt;  }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;[sunting] Tahap Kompilasi Java&lt;br /&gt;&lt;br /&gt; 1. Tulis / Ubah. Pemrogram menulis program dan menyimpannya di media dalam bentuk berkas '.java'.&lt;br /&gt; 2. Kompilasi. Pengkompilasi membentuk bytecodes dari program menjadi bentuk berkas '.class'&lt;br /&gt; 3. Muat. Pemuat kelas memuat bytecodes ke memori&lt;br /&gt; 4. Verifikasi. Peng-verifikasi memastikan bytecodes tidak mengganggu sistem keamanan Java&lt;br /&gt; 5. Jalankan. Penerjemah menerjemahkan bytecodes ke bahasa mesin&lt;br /&gt;&lt;br /&gt;[sunting] Integrated Development Environment&lt;br /&gt;&lt;br /&gt;Banyak pihak telah membuat IDE (Integrated Development Environment - Lingkungan Pengembangan Terintegrasi) untuk Java. Yang populer saat ini (Juli 2006) antara lain:&lt;br /&gt;&lt;br /&gt;  * Dr. Java, program gratis yang dikembangkan oleh Universitas Rice, AS&lt;br /&gt;  * BlueJ, program gratis yang dikembangkan oleh Universitas Monash, Australia&lt;br /&gt;  * NetBeans (open source- Common Development and Distribution License (CDDL))&lt;br /&gt;&lt;br /&gt;NetBeans disponsori Sun Microsystems, dan versi terkininya memilki Matisse, sebuah GUI Editor yang menurut pendapat umum merupakan yang terbaik.[rujukan?]&lt;br /&gt;&lt;br /&gt;  * Eclipse JDT (open source- Eclipse Public License)&lt;br /&gt;&lt;br /&gt;Eclipse dibuat dari kerja sama antara perusahaan-perusahaan anggota 'Eclipse Foundation' (beserta individu-individu lain). Banyak nama besar yang ikut dalam 'Eclipse Foundation', termasuk IBM, BEA, Intel, Nokia, Borland. Eclipse bersaing langsung dengan Netbeans IDE. Plugin tambahan pada Eclipse jauh lebih banyak dan bervariasi dibandingkan IDE lainnya.&lt;br /&gt;&lt;br /&gt;  * IntelliJ IDEA (commercial, free 30-day trial)&lt;br /&gt;  * Oracle JDeveloper (free)&lt;br /&gt;  * Xinox JCreator (ada versi berbayar maupun free)&lt;br /&gt;&lt;br /&gt;JCreator ditulis dalam C/C++ sehingga lebih cepat (dan menggunakan memori lebih sedikit) dari kebanyakan IDE.&lt;div&gt;&lt;br /&gt;&lt;div&gt;http://dayaprime.com&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3709878533190869705-3624860177035455083?l=primadaya.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://primadaya.blogspot.com/feeds/3624860177035455083/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://primadaya.blogspot.com/2008/12/pengenalan-java.html#comment-form' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/3624860177035455083'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/3624860177035455083'/><link rel='alternate' type='text/html' href='http://primadaya.blogspot.com/2008/12/pengenalan-java.html' title='Pengenalan  JAVA'/><author><name>Primadaya</name><uri>http://www.blogger.com/profile/08488032866171028222</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://1.bp.blogspot.com/_vjBazn8tW90/STeJTwfEknI/AAAAAAAAAAo/e0SlKLyKRxo/S220/08.01.2406.jpg.bmp'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3709878533190869705.post-8528159791962159848</id><published>2008-12-03T22:46:00.000-08:00</published><updated>2010-11-04T00:07:40.645-07:00</updated><title type='text'>Use if &amp;&amp; in JAVA</title><content type='html'>Script Tugas3.java&lt;br /&gt;&lt;br /&gt;public class Tugas3 {&lt;br /&gt;public static void main (String[]args){&lt;br /&gt;&lt;br /&gt;//variabel  Ket untuk mendeklarisakan hasil proses1&lt;br /&gt;String Ket=" ";&lt;br /&gt;//variabel  usia untuk menentukan inputan usia&lt;br /&gt;int usia=20;&lt;br /&gt;//variabel  input untuk menentukan inputan 1 &amp;amp; 0&lt;br /&gt;String input="0";&lt;br /&gt;//variabel  Kel untuk&lt;br /&gt;String Kel="";&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;//Proses1&lt;br /&gt;Ket=(!(usia&gt;17)?"ABG":"Dewasa");&lt;br /&gt;&lt;br /&gt;//jika variabel input benilai  0 dan variabel Ket bernilai ABG&lt;br /&gt;if ((input=="0") &amp;amp;&amp;amp; (Ket=="ABG")) {&lt;br /&gt;&lt;br /&gt;System.out.println("Keterangan: " +Ket+" dan Anak cowok");&lt;br /&gt;}&lt;br /&gt;//jika variabel input benilai  0 dan variabel Ket bernilai Dewasa&lt;br /&gt;else if ((input=="0") &amp;amp;&amp;amp; (Ket=="Dewasa")) {&lt;br /&gt;System.out.println("Keterangan: " +Ket+" dan Perjaka");&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;//jika variabel input benilai 1 dan variabel Ket bernilai ABG&lt;br /&gt;else if ((input=="1") &amp;amp;&amp;amp; (Ket=="ABG")) {&lt;br /&gt;System.out.println("Keterangan: " +Ket+" dan Anak Cewek");&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;//jika variabel input benilai  1 dan variabel Ket bernilai Dewasa&lt;br /&gt;else if ((input=="1") &amp;amp;&amp;amp; (Ket=="Dewasa")) {&lt;br /&gt;System.out.println("Keterangan: " +Ket+" dan Gadis");&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;//jika variabel input tidak bernilai 0 &amp;amp; 1&lt;br /&gt;else {&lt;br /&gt;System.out.println("Keterangan: " +Ket+" dan status tidak diketahui ");&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Penjelasan :Pada variabel input 0=Laki-laki &amp;amp; 1=Perempuan&lt;br /&gt;• Jika pada variabel usia diisikan tidak lebih dari 17 dan pada variabel input diisikan 0.Maka akan pada program akan dicetak “Keterangan :ABG dan status Anak Cowok”.&lt;br /&gt;• Jika pada variabel usia diisikan lebih dari 17 dan pada variabel input diisikan 0.Maka akan pada program akan dicetak “Keterangan :Dewasa dan status Perjaka”.&lt;br /&gt;• Jika pada variabel usia diisikan tidak lebih dari 17 dan pada variabel input diisikan 1.Maka akan pada program akan dicetak “Keterangan :ABG dan status Anak Cewek”.&lt;br /&gt;• Jika pada variabel usia diisikan lebih dari 17 dan pada variabel input diisikan 1.Maka akan pada program akan dicetak “Keterangan :Dewasa dan status Gadis”.&lt;br /&gt;• Jika pada variabel input tidak diisikan 1 atau 0.Maka akan pada program akan dicetak “Keterangan :***** dan status tidak diketahui”.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Tampilan program pada command prompt&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_vjBazn8tW90/STd9uBD43wI/AAAAAAAAAAc/T35QcRJkZO0/s1600-h/Slide1.JPG"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 320px; height: 240px;" src="http://2.bp.blogspot.com/_vjBazn8tW90/STd9uBD43wI/AAAAAAAAAAc/T35QcRJkZO0/s320/Slide1.JPG" alt="" id="BLOGGER_PHOTO_ID_5275823718000025346" border="0" /&gt;&lt;/a&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;http://dayaprime.com&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3709878533190869705-8528159791962159848?l=primadaya.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://primadaya.blogspot.com/feeds/8528159791962159848/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://primadaya.blogspot.com/2008/12/use-if-in-java.html#comment-form' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/8528159791962159848'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/8528159791962159848'/><link rel='alternate' type='text/html' href='http://primadaya.blogspot.com/2008/12/use-if-in-java.html' title='Use if &amp;&amp; in JAVA'/><author><name>Primadaya</name><uri>http://www.blogger.com/profile/08488032866171028222</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://1.bp.blogspot.com/_vjBazn8tW90/STeJTwfEknI/AAAAAAAAAAo/e0SlKLyKRxo/S220/08.01.2406.jpg.bmp'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_vjBazn8tW90/STd9uBD43wI/AAAAAAAAAAc/T35QcRJkZO0/s72-c/Slide1.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3709878533190869705.post-3577315527982171611</id><published>2008-12-03T22:33:00.000-08:00</published><updated>2010-11-04T00:06:38.705-07:00</updated><title type='text'>Implementation Control-if in JAVA programing</title><content type='html'>Berikut contoh penggunan control if pada Java programming&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Script Tugas3.java&lt;br /&gt;&lt;br /&gt;import javax.swing.JOptionPane;&lt;br /&gt;public class Tugas3{&lt;br /&gt; private Integer jmlinput;&lt;br /&gt; private String datamahasiswa;&lt;br /&gt;  &lt;br /&gt; public Tugas3(){&lt;br /&gt; jmlinput=0;&lt;br /&gt; datamahasiswa="Data sahabat:\n";&lt;br /&gt;  &lt;br /&gt;  String jml=JOptionPane.showInputDialog("Berapa data yang akan di inputkan!");&lt;br /&gt;  if (!jml.equals("")) jmlinput=Integer.parseInt(jml);&lt;br /&gt;  &lt;br /&gt;  int i=1;&lt;br /&gt; while (i&lt;=jmlinput){   String nama =JOptionPane.showInputDialog("Silahkan isikan Nama:?");  String nilai=JOptionPane.showInputDialog("Silahkan isikan Nilai:?");  Integer angka=Integer.parseInt(nilai);  String grade=""; if (angka&lt;60){ grade="E" grade="D" grade="C" grade="B" grade="A" grade="tdk valid" grade="" tugas3ku="new" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_vjBazn8tW90/STd7YretIhI/AAAAAAAAAAM/sDKALC-D-PE/s1600-h/Slide1.JPG"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px; height: 240px;" src="http://1.bp.blogspot.com/_vjBazn8tW90/STd7YretIhI/AAAAAAAAAAM/sDKALC-D-PE/s320/Slide1.JPG" alt="" id="BLOGGER_PHOTO_ID_5275821152406413842" border="0" /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;http://dayaprime.com&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3709878533190869705-3577315527982171611?l=primadaya.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://primadaya.blogspot.com/feeds/3577315527982171611/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://primadaya.blogspot.com/2008/12/implementation-control-if-in-java.html#comment-form' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/3577315527982171611'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/3577315527982171611'/><link rel='alternate' type='text/html' href='http://primadaya.blogspot.com/2008/12/implementation-control-if-in-java.html' title='Implementation Control-if in JAVA programing'/><author><name>Primadaya</name><uri>http://www.blogger.com/profile/08488032866171028222</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://1.bp.blogspot.com/_vjBazn8tW90/STeJTwfEknI/AAAAAAAAAAo/e0SlKLyKRxo/S220/08.01.2406.jpg.bmp'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_vjBazn8tW90/STd7YretIhI/AAAAAAAAAAM/sDKALC-D-PE/s72-c/Slide1.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3709878533190869705.post-770853882247363973</id><published>2008-11-28T20:40:00.001-08:00</published><updated>2010-11-04T00:06:07.223-07:00</updated><title type='text'>Education is?</title><content type='html'>&lt;div class="dablink"&gt;&lt;span style="color: rgb(51, 204, 0);font-size:180%;" &gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-family: arial;"&gt;from wikpedia.com&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;For the stained-glass window, see &lt;a href="http://en.wikipedia.org/wiki/Education_%28Chittenden_Memorial_Window%29" title="Education (Chittenden Memorial Window)"&gt;Education (Chittenden Memorial Window)&lt;/a&gt;.&lt;/div&gt; &lt;div class="dablink"&gt;"Educate" redirects here. For the journal published by the Institute of Education, see &lt;a href="http://en.wikipedia.org/wiki/Educate%7E" title="Educate~"&gt;Educate~&lt;/a&gt;.&lt;/div&gt; &lt;div class="thumb tright"&gt; &lt;div class="thumbinner" style="width: 182px;"&gt;&lt;a href="http://en.wikipedia.org/wiki/Image:AF-kindergarten.jpg" class="image" title="A kindergarten classroom in Afghanistan."&gt;&lt;img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/AF-kindergarten.jpg/180px-AF-kindergarten.jpg" class="thumbimage" border="0" height="140" width="180" /&gt;&lt;/a&gt; &lt;div class="thumbcaption"&gt; &lt;div class="magnify"&gt;&lt;a href="http://en.wikipedia.org/wiki/Image:AF-kindergarten.jpg" class="internal" title="Enlarge"&gt;&lt;img src="http://upload.wikimedia.org/skins/common/images/magnify-clip.png" alt="" height="11" width="15" /&gt;&lt;/a&gt;&lt;/div&gt; A &lt;a href="http://en.wikipedia.org/wiki/Kindergarten" title="Kindergarten"&gt;kindergarten&lt;/a&gt; &lt;a href="http://en.wikipedia.org/wiki/Classroom" title="Classroom"&gt;classroom&lt;/a&gt; in &lt;a href="http://en.wikipedia.org/wiki/Afghanistan" title="Afghanistan"&gt;Afghanistan&lt;/a&gt;.&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;div class="tright portal" style="border: 1px solid rgb(170, 170, 170); margin: 0.5em 0pt 0.5em 0.5em;"&gt; &lt;table style="background: rgb(249, 249, 249) none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; font-size: 85%; line-height: 110%;"&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td&gt;&lt;a href="http://en.wikipedia.org/wiki/Image:Nuvola_apps_bookcase.svg" class="image" title="Nuvola apps bookcase.svg"&gt;&lt;img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Nuvola_apps_bookcase.svg/28px-Nuvola_apps_bookcase.svg.png" border="0" height="28" width="28" /&gt;&lt;/a&gt;&lt;/td&gt; &lt;td style="padding: 0pt 0.2em;"&gt;&lt;i&gt;&lt;b&gt;&lt;a href="http://en.wikipedia.org/wiki/Portal:Education" title="Portal:Education"&gt;Education portal&lt;/a&gt;&lt;/b&gt;&lt;/i&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt; &lt;/div&gt; &lt;div class="tright portal" style="border: 1px solid rgb(170, 170, 170); margin: 0.5em 0pt 0.5em 0.5em;"&gt; &lt;table style="background: rgb(249, 249, 249) none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; font-size: 85%; line-height: 110%;"&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td&gt;&lt;a href="http://en.wikipedia.org/wiki/Image:Platopainting.jpg" class="image" title="Platopainting.jpg"&gt;&lt;img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Platopainting.jpg/23px-Platopainting.jpg" border="0" height="28" width="23" /&gt;&lt;/a&gt;&lt;/td&gt; &lt;td style="padding: 0pt 0.2em;"&gt;&lt;i&gt;&lt;b&gt;&lt;a href="http://en.wikipedia.org/wiki/Portal:University" title="Portal:University"&gt;University portal&lt;/a&gt;&lt;/b&gt;&lt;/i&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt; &lt;/div&gt; &lt;div class="tright portal" style="border: 1px solid rgb(170, 170, 170); margin: 0.5em 0pt 0.5em 0.5em;"&gt; &lt;table style="background: rgb(249, 249, 249) none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; font-size: 85%; line-height: 110%;"&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td&gt;&lt;a href="http://en.wikipedia.org/wiki/Image:New_School.svg" class="image" title="New School.svg"&gt;&lt;img alt="" src="http://upload.wikimedia.org/wikipedia/en/thumb/f/f5/New_School.svg/27px-New_School.svg.png" border="0" height="28" width="27" /&gt;&lt;/a&gt;&lt;/td&gt; &lt;td style="padding: 0pt 0.2em;"&gt;&lt;i&gt;&lt;b&gt;&lt;a href="http://en.wikipedia.org/wiki/Portal:Schools" title="Portal:Schools"&gt;Schools portal&lt;/a&gt;&lt;/b&gt;&lt;/i&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt; &lt;/div&gt; &lt;p&gt;&lt;b&gt;Education&lt;/b&gt; &lt;a href="http://en.wikipedia.org/wiki/List_of_education_topics" title="List of education topics"&gt;encompasses&lt;/a&gt; both the &lt;a href="http://en.wikipedia.org/wiki/Teaching" title="Teaching" class="mw-redirect"&gt;teaching&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Learning" title="Learning"&gt;learning&lt;/a&gt; of &lt;a href="http://en.wikipedia.org/wiki/Knowledge" title="Knowledge"&gt;knowledge&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Morality" title="Morality"&gt;proper conduct&lt;/a&gt;, and technical competency. It thus focuses on the cultivation of &lt;a href="http://en.wikipedia.org/wiki/Skill" title="Skill"&gt;skills&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Trade" title="Trade"&gt;trades&lt;/a&gt; or &lt;a href="http://en.wikipedia.org/wiki/Profession" title="Profession"&gt;professions&lt;/a&gt;, as well as &lt;a href="http://en.wikipedia.org/wiki/Neural_development" title="Neural development"&gt;mental&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Moral_development" title="Moral development" class="mw-redirect"&gt;moral&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Aesthetic" title="Aesthetic" class="mw-redirect"&gt;aesthetic&lt;/a&gt; development.&lt;sup id="cite_ref-0" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-0" title=""&gt;&lt;span&gt;[&lt;/span&gt;1&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt; Formal education consists of &lt;a href="http://en.wikipedia.org/wiki/System" title="System"&gt;systematic&lt;/a&gt; instruction, teaching and training by &lt;a href="http://en.wikipedia.org/wiki/Teacher" title="Teacher"&gt;teachers&lt;/a&gt;. This consists of the application of &lt;a href="http://en.wikipedia.org/wiki/Pedagogy" title="Pedagogy"&gt;pedagogy&lt;/a&gt; and the development of &lt;a href="http://en.wikipedia.org/wiki/Curricula" title="Curricula" class="mw-redirect"&gt;curricula&lt;/a&gt;. In a liberal education tradition, teachers draw on many different disciplines for their lessons, including &lt;a href="http://en.wikipedia.org/wiki/Psychology" title="Psychology"&gt;psychology&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Philosophy" title="Philosophy"&gt;philosophy&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Linguistics" title="Linguistics"&gt;linguistics&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Biology" title="Biology"&gt;biology&lt;/a&gt;, and &lt;a href="http://en.wikipedia.org/wiki/Sociology" title="Sociology"&gt;sociology&lt;/a&gt;. Teachers in specialized professions such as &lt;a href="http://en.wikipedia.org/wiki/Astrophysics" title="Astrophysics"&gt;astrophysics&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Law" title="Law"&gt;law&lt;/a&gt;, or &lt;a href="http://en.wikipedia.org/wiki/Zoology" title="Zoology"&gt;zoology&lt;/a&gt; may teach only in a narrow area, usually as &lt;a href="http://en.wikipedia.org/wiki/Professors" title="Professors" class="mw-redirect"&gt;professors&lt;/a&gt; at institutions of higher learning. There is much specialist instruction in fields of trade for those who want specific skills, such as required to be a &lt;a href="http://en.wikipedia.org/wiki/Aviator" title="Aviator"&gt;pilot&lt;/a&gt;, for example. Finally, there is an array of educational opportunity in the informal sphere- such as with &lt;a href="http://en.wikipedia.org/wiki/Museums" title="Museums" class="mw-redirect"&gt;museums&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Libraries" title="Libraries" class="mw-redirect"&gt;libraries&lt;/a&gt;. Informal education also includes knowledge and skills learned and refined during the course of life, including education that comes from experience in practicing a &lt;a href="http://en.wikipedia.org/wiki/Profession" title="Profession"&gt;profession&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;The right to education has been described as a fundamental &lt;a href="http://en.wikipedia.org/wiki/Human_right" title="Human right" class="mw-redirect"&gt;human right&lt;/a&gt;: since 1952, Article 2 of the first Protocol to the &lt;a href="http://en.wikipedia.org/wiki/European_Convention_on_Human_Rights" title="European Convention on Human Rights"&gt;European Convention on Human Rights&lt;/a&gt; obliges all signatory parties to guarantee the right to education. At world level, the &lt;a href="http://en.wikipedia.org/wiki/United_Nations" title="United Nations"&gt;United Nations&lt;/a&gt;' &lt;a href="http://en.wikipedia.org/wiki/International_Covenant_on_Economic,_Social_and_Cultural_Rights" title="International Covenant on Economic, Social and Cultural Rights"&gt;International Covenant on Economic, Social and Cultural Rights&lt;/a&gt; of 1966 guarantees this right under its Article 13.&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;Education&lt;/b&gt; is a broad concept, referring to all the experiences in which students can learn something:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;&lt;b&gt;Instruction&lt;/b&gt; refers to the intentional facilitating of learning toward identified goals, delivered either by an instructor or other forms.&lt;/li&gt;&lt;li&gt;&lt;b&gt;Teaching&lt;/b&gt; refers to the actions of a real live instructor designed to impart learning to the student.&lt;/li&gt;&lt;li&gt;&lt;b&gt;Training&lt;/b&gt; refers to learning with a view toward preparing learners with specific knowledge, skills, or abilities that can be applied immediately upon completion.&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;&lt;a name="Primary_education" id="Primary_education"&gt;&lt;/a&gt;&lt;/p&gt; &lt;h3&gt;&lt;span class="editsection"&gt;[&lt;a href="http://en.wikipedia.org/w/index.php?title=Education&amp;amp;action=edit&amp;amp;section=2" title="Edit section: Primary education"&gt;edit&lt;/a&gt;]&lt;/span&gt; &lt;span class="mw-headline"&gt;Primary education&lt;/span&gt;&lt;/h3&gt; &lt;dl&gt;&lt;dd&gt; &lt;div class="noprint relarticle mainarticle"&gt;&lt;i&gt;Main article: &lt;a href="http://en.wikipedia.org/wiki/Primary_education" title="Primary education"&gt;Primary education&lt;/a&gt;&lt;/i&gt;&lt;/div&gt; &lt;/dd&gt;&lt;/dl&gt; &lt;div class="thumb tright"&gt; &lt;div class="thumbinner" style="width: 182px;"&gt;&lt;a href="http://en.wikipedia.org/wiki/Image:Teaching_Bucharest_1842.jpg" class="image" title="Primary school in open air. Teacher (priest) with class from the outskirts of Bucharest, around 1842."&gt;&lt;img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Teaching_Bucharest_1842.jpg/180px-Teaching_Bucharest_1842.jpg" class="thumbimage" border="0" height="97" width="180" /&gt;&lt;/a&gt; &lt;div class="thumbcaption"&gt; &lt;div class="magnify"&gt;&lt;a href="http://en.wikipedia.org/wiki/Image:Teaching_Bucharest_1842.jpg" class="internal" title="Enlarge"&gt;&lt;img src="http://upload.wikimedia.org/skins/common/images/magnify-clip.png" alt="" height="11" width="15" /&gt;&lt;/a&gt;&lt;/div&gt; Primary school in open air. Teacher (priest) with class from the outskirts of &lt;a href="http://en.wikipedia.org/wiki/Bucharest" title="Bucharest"&gt;Bucharest&lt;/a&gt;, around 1842.&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;p&gt;Primary (or elementary) education consists of the first years of formal, structured education. In general, primary education consists of six or seven years of schooling starting at the age of 5 or 6, although this varies between, and sometimes within, countries. Globally, around 70% of primary-age children are enrolled in primary education, and this proportion is rising.&lt;sup id="cite_ref-1" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-1" title=""&gt;&lt;span&gt;[&lt;/span&gt;2&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt; Under the Education for All programs driven by UNESCO, most countries have committed to achieving universal enrollment in primary education by 2015, and in many countries, it is compulsory for children to receive primary education. The division between primary and &lt;a href="http://en.wikipedia.org/wiki/Secondary_education" title="Secondary education"&gt;secondary education&lt;/a&gt; is somewhat arbitrary, but it generally occurs at about eleven or twelve years of age. Some education systems have separate &lt;a href="http://en.wikipedia.org/wiki/Middle_school" title="Middle school"&gt;middle schools&lt;/a&gt;, with the transition to the final stage of secondary education taking place at around the age of fourteen. Schools that provide primary education, are mostly referred to as &lt;i&gt;primary schools&lt;/i&gt;. Primary schools in these countries are often subdivided into &lt;a href="http://en.wikipedia.org/wiki/Infant_school" title="Infant school"&gt;infant schools&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Junior_school" title="Junior school"&gt;junior schools&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;&lt;a name="Secondary_education" id="Secondary_education"&gt;&lt;/a&gt;&lt;/p&gt; &lt;h3&gt;&lt;span class="editsection"&gt;[&lt;a href="http://en.wikipedia.org/w/index.php?title=Education&amp;amp;action=edit&amp;amp;section=3" title="Edit section: Secondary education"&gt;edit&lt;/a&gt;]&lt;/span&gt; &lt;span class="mw-headline"&gt;Secondary education&lt;/span&gt;&lt;/h3&gt; &lt;dl&gt;&lt;dd&gt; &lt;div class="noprint relarticle mainarticle"&gt;&lt;i&gt;Main article: &lt;a href="http://en.wikipedia.org/wiki/Secondary_education" title="Secondary education"&gt;Secondary education&lt;/a&gt;&lt;/i&gt;&lt;/div&gt; &lt;/dd&gt;&lt;/dl&gt; &lt;p&gt;In most contemporary &lt;a href="http://en.wikipedia.org/wiki/Educational_system" title="Educational system" class="mw-redirect"&gt;educational systems&lt;/a&gt; of the world, secondary education consists of the second years of formal education that occur during &lt;a href="http://en.wikipedia.org/wiki/Adolescence" title="Adolescence"&gt;adolescence&lt;/a&gt;.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt; It is characterised by transition from the typically compulsory, comprehensive &lt;a href="http://en.wikipedia.org/wiki/Primary_education" title="Primary education"&gt;primary education&lt;/a&gt; for &lt;a href="http://en.wikipedia.org/wiki/Minor_%28law%29" title="Minor (law)"&gt;minors&lt;/a&gt;, to the optional, selective &lt;a href="http://en.wikipedia.org/wiki/Tertiary_education" title="Tertiary education"&gt;tertiary&lt;/a&gt;, "post-secondary", or "&lt;a href="http://en.wikipedia.org/wiki/Higher_education" title="Higher education"&gt;higher&lt;/a&gt;" education (e.g., &lt;a href="http://en.wikipedia.org/wiki/University" title="University"&gt;university&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Vocational_school" title="Vocational school"&gt;vocational school&lt;/a&gt;) for &lt;a href="http://en.wikipedia.org/wiki/Adult" title="Adult"&gt;adults&lt;/a&gt;.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt; Depending on the system, schools for this period, or a part of it, may be called secondary or &lt;a href="http://en.wikipedia.org/wiki/High_school" title="High school"&gt;high schools&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Gymnasium_%28school%29" title="Gymnasium (school)"&gt;gymnasiums&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Lyceum" title="Lyceum"&gt;lyceums&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Middle_school" title="Middle school"&gt;middle schools&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/College" title="College"&gt;colleges&lt;/a&gt;, or vocational schools. The exact meaning of any of these terms varies from one system to another. The exact boundary between primary and secondary education also varies from country to country and even within them, but is generally around the seventh to the tenth year of schooling. Secondary education occurs mainly during the teenage years. In the United States and Canada primary and secondary education together are sometimes referred to as &lt;a href="http://en.wikipedia.org/wiki/K%E2%80%9312_education" title="K–12 education" class="mw-redirect"&gt;K-12&lt;/a&gt; education, and in New Zealand Year 1-13 is used. The purpose of secondary education can be to give &lt;a href="http://en.wikipedia.org/wiki/Common_knowledge" title="Common knowledge"&gt;common knowledge&lt;/a&gt;, to prepare for &lt;a href="http://en.wikipedia.org/wiki/Higher_education" title="Higher education"&gt;higher education&lt;/a&gt; or to train directly in a &lt;a href="http://en.wikipedia.org/wiki/Profession" title="Profession"&gt;profession&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;&lt;a name="Higher_education" id="Higher_education"&gt;&lt;/a&gt;&lt;/p&gt; &lt;h3&gt;&lt;span class="editsection"&gt;[&lt;a href="http://en.wikipedia.org/w/index.php?title=Education&amp;amp;action=edit&amp;amp;section=4" title="Edit section: Higher education"&gt;edit&lt;/a&gt;]&lt;/span&gt; &lt;span class="mw-headline"&gt;Higher education&lt;/span&gt;&lt;/h3&gt; &lt;dl&gt;&lt;dd&gt; &lt;div class="noprint relarticle mainarticle"&gt;&lt;i&gt;Main article: &lt;a href="http://en.wikipedia.org/wiki/Higher_education" title="Higher education"&gt;Higher education&lt;/a&gt;&lt;/i&gt;&lt;/div&gt; &lt;/dd&gt;&lt;/dl&gt; &lt;div class="thumb tright"&gt; &lt;div class="thumbinner" style="width: 182px;"&gt;&lt;a href="http://en.wikipedia.org/wiki/Image:ClareCollegeAndKingsChapel.jpg" class="image" title="The University of Cambridge is an institute of higher learning."&gt;&lt;img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/9/9d/ClareCollegeAndKingsChapel.jpg/180px-ClareCollegeAndKingsChapel.jpg" class="thumbimage" border="0" height="119" width="180" /&gt;&lt;/a&gt; &lt;div class="thumbcaption"&gt; &lt;div class="magnify"&gt;&lt;a href="http://en.wikipedia.org/wiki/Image:ClareCollegeAndKingsChapel.jpg" class="internal" title="Enlarge"&gt;&lt;img src="http://upload.wikimedia.org/skins/common/images/magnify-clip.png" alt="" height="11" width="15" /&gt;&lt;/a&gt;&lt;/div&gt; The University of Cambridge is an institute of higher learning.&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;p&gt;Higher education, also called tertiary, third stage, or post secondary education, is the non-compulsory educational level that follows the completion of a school providing a &lt;a href="http://en.wikipedia.org/wiki/Secondary_education" title="Secondary education"&gt;secondary education&lt;/a&gt;, such as a &lt;a href="http://en.wikipedia.org/wiki/High_school" title="High school"&gt;high school&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Secondary_school" title="Secondary school"&gt;secondary school&lt;/a&gt;, or &lt;a href="http://en.wikipedia.org/wiki/Gymnasium_%28school%29" title="Gymnasium (school)"&gt;gymnasium&lt;/a&gt;&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt;. Tertiary education is normally taken to include &lt;a href="http://en.wikipedia.org/wiki/Undergraduate" title="Undergraduate" class="mw-redirect"&gt;undergraduate&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Postgraduate_education" title="Postgraduate education"&gt;postgraduate education&lt;/a&gt;, as well as &lt;a href="http://en.wikipedia.org/wiki/Vocational_education" title="Vocational education"&gt;vocational education and training&lt;/a&gt;. &lt;a href="http://en.wikipedia.org/wiki/College" title="College"&gt;Colleges&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/University" title="University"&gt;universities&lt;/a&gt; are the main institutions that provide tertiary education. Collectively, these are sometimes known as tertiary institutions. Tertiary education generally results in the receipt of &lt;a href="http://en.wikipedia.org/wiki/Certificate" title="Certificate"&gt;certificates&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Diploma" title="Diploma"&gt;diplomas&lt;/a&gt;, or &lt;a href="http://en.wikipedia.org/wiki/Academic_degree" title="Academic degree"&gt;academic degrees&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;Higher education includes teaching, research and social services activities of universities, and within the realm of teaching, it includes both the &lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Undergraduate" title="Undergraduate" class="mw-redirect"&gt;undergraduate&lt;/a&gt;&lt;/i&gt; level (sometimes referred to as &lt;a href="http://en.wikipedia.org/wiki/Tertiary_education" title="Tertiary education"&gt;tertiary education&lt;/a&gt;) and the &lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Graduate_student" title="Graduate student" class="mw-redirect"&gt;graduate&lt;/a&gt;&lt;/i&gt; (or &lt;i&gt;postgraduate&lt;/i&gt;) level (sometimes referred to as &lt;a href="http://en.wikipedia.org/wiki/Graduate_school" title="Graduate school"&gt;graduate school&lt;/a&gt;). Higher education in that country generally involves work towards a degree-level or &lt;a href="http://en.wikipedia.org/wiki/Foundation_degree" title="Foundation degree"&gt;foundation degree&lt;/a&gt; qualification. In most developed countries a high proportion of the population (up to 50%) now enter higher education at some time in their lives. Higher education is therefore very important to national &lt;a href="http://en.wikipedia.org/wiki/Economies" title="Economies" class="mw-redirect"&gt;economies&lt;/a&gt;, both as a significant industry in its own right, and as a source of trained and educated personnel for the rest of the economy.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt;&lt;/p&gt; &lt;p&gt;&lt;a name="Adult_education" id="Adult_education"&gt;&lt;/a&gt;&lt;/p&gt; &lt;h3&gt;&lt;span class="editsection"&gt;[&lt;a href="http://en.wikipedia.org/w/index.php?title=Education&amp;amp;action=edit&amp;amp;section=5" title="Edit section: Adult education"&gt;edit&lt;/a&gt;]&lt;/span&gt; &lt;span class="mw-headline"&gt;Adult education&lt;/span&gt;&lt;/h3&gt; &lt;p&gt;&lt;a href="http://en.wikipedia.org/wiki/Adult_education" title="Adult education"&gt;Adult education&lt;/a&gt; has become common in many countries. It takes on many forms, ranging from formal class-based learning to self-directed learning.&lt;/p&gt; &lt;p&gt;&lt;a name="Alternative_education" id="Alternative_education"&gt;&lt;/a&gt;&lt;/p&gt; &lt;h3&gt;&lt;span class="editsection"&gt;[&lt;a href="http://en.wikipedia.org/w/index.php?title=Education&amp;amp;action=edit&amp;amp;section=6" title="Edit section: Alternative education"&gt;edit&lt;/a&gt;]&lt;/span&gt; &lt;span class="mw-headline"&gt;Alternative education&lt;/span&gt;&lt;/h3&gt; &lt;dl&gt;&lt;dd&gt; &lt;div class="noprint relarticle mainarticle"&gt;&lt;i&gt;Main article: &lt;a href="http://en.wikipedia.org/wiki/Alternative_education" title="Alternative education"&gt;Alternative education&lt;/a&gt;&lt;/i&gt;&lt;/div&gt; &lt;/dd&gt;&lt;/dl&gt; &lt;p&gt;&lt;a href="http://en.wikipedia.org/wiki/Alternative_education" title="Alternative education"&gt;Alternative education&lt;/a&gt;, also known as &lt;i&gt;non-traditional education&lt;/i&gt; or &lt;i&gt;educational alternative&lt;/i&gt;, is a broad term that may be used to refer to all forms of education outside of &lt;a href="http://en.wikipedia.org/wiki/Traditional_education" title="Traditional education"&gt;traditional education&lt;/a&gt; (for all age groups and levels of education). This may include not only forms of education designed for students with special needs (ranging from teenage pregnancy to intellectual disability), but also forms of education designed for a general audience and employing alternative educational philosophies and methods.&lt;/p&gt; &lt;p&gt;Alternatives of the latter type are often the result of &lt;a href="http://en.wikipedia.org/wiki/Education_reform" title="Education reform"&gt;education reform&lt;/a&gt; and are rooted in various &lt;a href="http://en.wikipedia.org/wiki/Educational_philosophy" title="Educational philosophy" class="mw-redirect"&gt;philosophies&lt;/a&gt; that are commonly fundamentally different from those of traditional &lt;a href="http://en.wikipedia.org/wiki/Compulsory_education" title="Compulsory education"&gt;compulsory education&lt;/a&gt;. While some have strong &lt;a href="http://en.wikipedia.org/wiki/Politics" title="Politics"&gt;political&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Scholarly_method" title="Scholarly method"&gt;scholarly&lt;/a&gt;, or &lt;a href="http://en.wikipedia.org/wiki/Philosophy" title="Philosophy"&gt;philosophical&lt;/a&gt; orientations, others are more informal associations of teachers and &lt;a href="http://en.wikipedia.org/wiki/Student" title="Student"&gt;students&lt;/a&gt; dissatisfied with certain aspects of &lt;a href="http://en.wikipedia.org/wiki/Traditional_education" title="Traditional education"&gt;traditional education&lt;/a&gt;&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt;. These alternatives, which include &lt;a href="http://en.wikipedia.org/wiki/Education#School_choice" title=""&gt;charter schools&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Education#Alternative_school" title=""&gt;alternative schools&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Education#Independent_school" title=""&gt;independent schools&lt;/a&gt;, and &lt;a href="http://en.wikipedia.org/wiki/Education#Home-based_education" title=""&gt;home-based learning&lt;/a&gt; vary widely, but often emphasize the value of small class size, close relationships between students and teachers, and a &lt;a href="http://en.wikipedia.org/wiki/Sense_of_community" title="Sense of community"&gt;sense of community&lt;/a&gt;&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt;.&lt;/p&gt; &lt;p&gt;&lt;a name="Indigenous_education" id="Indigenous_education"&gt;&lt;/a&gt;&lt;/p&gt; &lt;h3&gt;&lt;span class="editsection"&gt;[&lt;a href="http://en.wikipedia.org/w/index.php?title=Education&amp;amp;action=edit&amp;amp;section=7" title="Edit section: Indigenous education"&gt;edit&lt;/a&gt;]&lt;/span&gt; &lt;span class="mw-headline"&gt;Indigenous education&lt;/span&gt;&lt;/h3&gt; &lt;p&gt;Increasingly, the inclusion of indigenous models of education (methods and content) as an alternative within the scope of formal and non-formal education systems, has come to represent a significant factor contributing to the success of those members of indigenous communities who choose to access these systems, both as students/learners and as teachers/instructors.&lt;/p&gt; &lt;p&gt;As an educational method, the inclusion of indigenous ways of knowing, learning, instructing, teaching and training, has been viewed by many critical and postmodern scholars as important for ensuring that students/learners and teachers/instructors (whether indigenous or non-indigenous) are able to benefit from education in a culturally sensitive manner that draws upon, utilizes, promotes and enhances awareness of indigenous traditions.&lt;sup id="cite_ref-2" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-2" title=""&gt;&lt;span&gt;[&lt;/span&gt;3&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt; &lt;p&gt;For indigenous students/learners and teachers/instructors, the inclusion of these methods often enhances educational effectiveness, success and learning outcomes by providing education that adheres to their own inherent perspectives, experiences and worldview. For non-indigenous students/learners and teachers/instructors, education using such methods often has the effect of raising awareness of the individual traditions and collective experience of surrounding indigenous communities and peoples, thereby promoting greater respect for and appreciation of the cultural realities of these communities and peoples.&lt;/p&gt; &lt;p&gt;In terms of educational content, the inclusion of &lt;a href="http://en.wikipedia.org/wiki/Indigenous_knowledge" title="Indigenous knowledge" class="mw-redirect"&gt;indigenous knowledge&lt;/a&gt;, traditions, perspectives, worldviews and conceptions within curricula, instructional materials and textbooks/coursebooks has been shown to have largely the same effects as the inclusion of indigenous methods in education. Indigenous students/learners and teachers/instructors benefit from enhanced academic effectiveness, success and learning outcomes, while non-indigenous students/learners and teachers/instructors often have greater awareness, respect, and appreciation for indigenous communities and peoples in consequence of the content that is shared during the course of educational pursuits.&lt;sup id="cite_ref-3" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-3" title=""&gt;&lt;span&gt;[&lt;/span&gt;4&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt; &lt;p&gt;A prime example of how indigenous methods and content can be used to promote the above outcomes is demonstrated within &lt;a href="http://en.wikipedia.org/wiki/Higher_education_in_Canada" title="Higher education in Canada"&gt;higher education in Canada&lt;/a&gt;. Due to certain jurisdictions' focus on enhancing academic success for &lt;a href="http://en.wikipedia.org/wiki/Aboriginal" title="Aboriginal" class="mw-redirect"&gt;Aboriginal&lt;/a&gt; learners and promoting the values of &lt;a href="http://en.wikipedia.org/wiki/Multiculturalism" title="Multiculturalism"&gt;multiculturalism&lt;/a&gt; in society, the inclusion of indigenous methods and content in education is often seen as an important obligation and duty of both governmental and educational authorities.&lt;sup id="cite_ref-4" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-4" title=""&gt;&lt;span&gt;[&lt;/span&gt;5&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt; &lt;p&gt;&lt;a name="Emotional.2FHuman_education" id="Emotional.2FHuman_education"&gt;&lt;/a&gt;&lt;/p&gt; &lt;h3&gt;&lt;span class="editsection"&gt;[&lt;a href="http://en.wikipedia.org/w/index.php?title=Education&amp;amp;action=edit&amp;amp;section=8" title="Edit section: Emotional/Human education"&gt;edit&lt;/a&gt;]&lt;/span&gt; &lt;span class="mw-headline"&gt;Emotional/Human education&lt;/span&gt;&lt;/h3&gt; &lt;p&gt;As academic education is more and more the norm and standard, companies and individuals are looking less at normal education as to what is deemed a good solid educated person/worker. Most well-educated and successful entrepreneurs have high communication skills with humanistic and warm "emotional intelligence".&lt;/p&gt; &lt;p&gt;In certain places, especially in the United States, the term &lt;i&gt;alternative&lt;/i&gt; may largely refer to forms of education catering to "at risk" students, as it is, for example, in this definition drafted by the &lt;a href="http://en.wikipedia.org/wiki/Massachusetts" title="Massachusetts"&gt;Massachusetts&lt;/a&gt; &lt;a href="http://en.wikipedia.org/wiki/Department_of_Education" title="Department of Education"&gt;Department of Education&lt;/a&gt;. &lt;sup id="cite_ref-5" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-5" title=""&gt;&lt;span&gt;[&lt;/span&gt;6&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt; &lt;p&gt;&lt;a name="Process" id="Process"&gt;&lt;/a&gt;&lt;/p&gt; &lt;h2&gt;&lt;span class="editsection"&gt;[&lt;a href="http://en.wikipedia.org/w/index.php?title=Education&amp;amp;action=edit&amp;amp;section=9" title="Edit section: Process"&gt;edit&lt;/a&gt;]&lt;/span&gt; &lt;span class="mw-headline"&gt;Process&lt;/span&gt;&lt;/h2&gt; &lt;p&gt;&lt;a name="Curriculum" id="Curriculum"&gt;&lt;/a&gt;&lt;/p&gt; &lt;h3&gt;&lt;span class="editsection"&gt;[&lt;a href="http://en.wikipedia.org/w/index.php?title=Education&amp;amp;action=edit&amp;amp;section=10" title="Edit section: Curriculum"&gt;edit&lt;/a&gt;]&lt;/span&gt; &lt;span class="mw-headline"&gt;Curriculum&lt;/span&gt;&lt;/h3&gt; &lt;dl&gt;&lt;dd&gt; &lt;div class="noprint relarticle mainarticle"&gt;&lt;i&gt;Main articles: &lt;a href="http://en.wikipedia.org/wiki/Curriculum" title="Curriculum"&gt;Curriculum&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/List_of_academic_disciplines" title="List of academic disciplines"&gt;List of academic disciplines&lt;/a&gt;&lt;/i&gt;&lt;/div&gt; &lt;/dd&gt;&lt;/dl&gt; &lt;p&gt;An &lt;a href="http://en.wikipedia.org/wiki/List_of_academic_disciplines" title="List of academic disciplines"&gt;academic discipline&lt;/a&gt; is a branch of &lt;a href="http://en.wikipedia.org/wiki/Knowledge" title="Knowledge"&gt;knowledge&lt;/a&gt; which is formally &lt;a href="http://en.wikipedia.org/wiki/Teaching" title="Teaching" class="mw-redirect"&gt;taught&lt;/a&gt;, either at the &lt;a href="http://en.wikipedia.org/wiki/University" title="University"&gt;university&lt;/a&gt;, or via some other such method. Functionally, disciplines are usually defined and recognized by the &lt;a href="http://en.wikipedia.org/wiki/Academic_journal" title="Academic journal"&gt;academic journals&lt;/a&gt; in which &lt;a href="http://en.wikipedia.org/wiki/Research" title="Research"&gt;research&lt;/a&gt; is published, and by the &lt;a href="http://en.wikipedia.org/wiki/Learned_society" title="Learned society"&gt;learned societies&lt;/a&gt; to which their practitioners belong.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt; Professors say schooling is 80% psychological, 20% physical effort.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt;&lt;/p&gt; &lt;p&gt;Each discipline usually has several sub-disciplines or branches, and distinguishing lines are often both arbitrary and ambiguous. Examples of broad areas of academic disciplines include the &lt;a href="http://en.wikipedia.org/wiki/Natural_science" title="Natural science"&gt;natural sciences&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Mathematics" title="Mathematics"&gt;mathematics&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Computer_science" title="Computer science"&gt;computer science&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Social_sciences" title="Social sciences"&gt;social sciences&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Humanities" title="Humanities"&gt;humanities&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Applied_science" title="Applied science"&gt;applied sciences&lt;/a&gt;.&lt;sup id="cite_ref-6" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-6" title=""&gt;&lt;span&gt;[&lt;/span&gt;7&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt; &lt;p&gt;&lt;a name="Learning_modalities" id="Learning_modalities"&gt;&lt;/a&gt;&lt;/p&gt; &lt;h3&gt;&lt;span class="editsection"&gt;[&lt;a href="http://en.wikipedia.org/w/index.php?title=Education&amp;amp;action=edit&amp;amp;section=11" title="Edit section: Learning modalities"&gt;edit&lt;/a&gt;]&lt;/span&gt; &lt;span class="mw-headline"&gt;Learning modalities&lt;/span&gt;&lt;/h3&gt; &lt;p&gt;There has been a great deal of work on &lt;a href="http://en.wikipedia.org/wiki/Learning_styles" title="Learning styles"&gt;learning styles&lt;/a&gt; over the last two decades. Dunn and Dunn&lt;sup id="cite_ref-7" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-7" title=""&gt;&lt;span&gt;[&lt;/span&gt;8&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt; focused on identifying relevant stimuli that may influence learning and manipulating the school environment, at about the same time as &lt;a href="http://en.wikipedia.org/wiki/Joseph_Renzulli" title="Joseph Renzulli"&gt;Joseph Renzulli&lt;/a&gt;&lt;sup id="cite_ref-8" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-8" title=""&gt;&lt;span&gt;[&lt;/span&gt;9&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt; recommended varying teaching strategies. &lt;a href="http://en.wikipedia.org/wiki/Howard_Gardner" title="Howard Gardner"&gt;Howard Gardner&lt;/a&gt;&lt;sup id="cite_ref-9" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-9" title=""&gt;&lt;span&gt;[&lt;/span&gt;10&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt; identified individual talents or aptitudes in his &lt;a href="http://en.wikipedia.org/wiki/Multiple_Intelligences" title="Multiple Intelligences" class="mw-redirect"&gt;Multiple Intelligences&lt;/a&gt; theories. Based on the works of &lt;a href="http://en.wikipedia.org/wiki/Jung" title="Jung" class="mw-redirect"&gt;Jung&lt;/a&gt;, the &lt;a href="http://en.wikipedia.org/wiki/Myers-Briggs_Type_Indicator" title="Myers-Briggs Type Indicator"&gt;Myers-Briggs Type Indicator&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Keirsey_Temperament_Sorter" title="Keirsey Temperament Sorter"&gt;Keirsey Temperament Sorter&lt;/a&gt;&lt;sup id="cite_ref-10" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-10" title=""&gt;&lt;span&gt;[&lt;/span&gt;11&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt; focused on understanding how people's personality affects the way they interact personally, and how this affects the way individuals respond to each other within the learning environment. The work of &lt;a href="http://en.wikipedia.org/wiki/David_Kolb" title="David Kolb"&gt;David Kolb&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Anthony_Gregorc" title="Anthony Gregorc"&gt;Anthony Gregorc&lt;/a&gt;'s Type Delineator&lt;sup id="cite_ref-11" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-11" title=""&gt;&lt;span&gt;[&lt;/span&gt;12&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt; follows a similar but more simplified approach.&lt;/p&gt; &lt;p&gt;It is currently fashionable to divide education into different learning "modes". The learning modalities&lt;sup id="cite_ref-12" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-12" title=""&gt;&lt;span&gt;[&lt;/span&gt;13&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt; are probably the most common:&lt;sup id="cite_ref-13" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-13" title=""&gt;&lt;span&gt;[&lt;/span&gt;14&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;&lt;a href="http://en.wikipedia.org/wiki/Kinesthetic" title="Kinesthetic" class="mw-redirect"&gt;Kinesthetic&lt;/a&gt;: learning based on hands-on work and engaging in activities.&lt;/li&gt;&lt;li&gt;&lt;a href="http://en.wikipedia.org/wiki/Visual" title="Visual" class="mw-redirect"&gt;Visual&lt;/a&gt;: learning based on observation and seeing what is being learned.&lt;/li&gt;&lt;li&gt;&lt;a href="http://en.wikipedia.org/wiki/Auditory" title="Auditory"&gt;Auditory&lt;/a&gt;: learning based on listening to instructions/information.&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;It is claimed that, depending on their preferred learning modality, different teaching techniques have different levels of effectiveness.&lt;sup id="cite_ref-14" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-14" title=""&gt;&lt;span&gt;[&lt;/span&gt;15&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt; A consequence of this theory is that effective teaching should present a variety of teaching methods which cover all three learning modalities so that different students have equal opportunities to learn in a way that is effective for them.&lt;sup id="cite_ref-15" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-15" title=""&gt;&lt;span&gt;[&lt;/span&gt;16&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt; &lt;p&gt;&lt;a name="Teaching" id="Teaching"&gt;&lt;/a&gt;&lt;/p&gt; &lt;h3&gt;&lt;span class="editsection"&gt;[&lt;a href="http://en.wikipedia.org/w/index.php?title=Education&amp;amp;action=edit&amp;amp;section=12" title="Edit section: Teaching"&gt;edit&lt;/a&gt;]&lt;/span&gt; &lt;span class="mw-headline"&gt;Teaching&lt;/span&gt;&lt;/h3&gt; &lt;p&gt;Teachers need the ability to understand a subject well enough to convey its essence to a new generation of students. The goal is to establish a sound knowledge base on which students will be able to build as they are exposed to different life experiences. The passing of knowledge from generation to generation allows students to grow into useful members of society. Good teachers can translate information, good judgment, experience and wisdom into relevant knowledge that a student can understand, retain and pass to others. Studies from the US suggest that the quality of teachers is the single most important factor affecting student performance, and that countries which score highly on international tests have multiple policies in place to ensure that the teachers they employ are as effective as possible. &lt;sup id="cite_ref-WRS_16-0" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-WRS-16" title=""&gt;&lt;span&gt;[&lt;/span&gt;17&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt; &lt;p&gt;&lt;a name="Learning_is_a_process_you_do.2C_not_a_process_that_is_done_to_you" id="Learning_is_a_process_you_do.2C_not_a_process_that_is_done_to_you"&gt;&lt;/a&gt;&lt;/p&gt; &lt;h3&gt;&lt;span class="editsection"&gt;[&lt;a href="http://en.wikipedia.org/w/index.php?title=Education&amp;amp;action=edit&amp;amp;section=13" title="Edit section: Learning is a process you do, not a process that is done to you"&gt;edit&lt;/a&gt;]&lt;/span&gt; &lt;span class="mw-headline"&gt;Learning is a process you do, not a process that is done to you&lt;/span&gt;&lt;/h3&gt; &lt;dl&gt;&lt;dd&gt; &lt;div class="noprint relarticle mainarticle"&gt;&lt;i&gt;Main article: &lt;a href="http://en.wikipedia.org/wiki/Sudbury_model" title="Sudbury model" class="mw-redirect"&gt;Sudbury model&lt;/a&gt;&lt;/i&gt;&lt;/div&gt; &lt;/dd&gt;&lt;/dl&gt; &lt;p&gt;Some critics of today's schools, of the concept of &lt;a href="http://en.wikipedia.org/wiki/Learning_disabilities" title="Learning disabilities" class="mw-redirect"&gt;learning disabilities&lt;/a&gt;, of &lt;a href="http://en.wikipedia.org/wiki/Special_education" title="Special education"&gt;special education&lt;/a&gt;, and of &lt;a href="http://en.wikipedia.org/wiki/Response_to_intervention" title="Response to intervention"&gt;response to intervention&lt;/a&gt;, take the position that every child has a different &lt;a href="http://en.wikipedia.org/wiki/Learning_styles" title="Learning styles"&gt;learning style&lt;/a&gt; and pace and that each child is &lt;a href="http://en.wikipedia.org/wiki/Individual_differences_psychology" title="Individual differences psychology"&gt;unique&lt;/a&gt;, not only capable of learning but also capable of succeeding.&lt;/p&gt; &lt;p&gt;&lt;a href="http://en.wikipedia.org/wiki/Sudbury_model" title="Sudbury model" class="mw-redirect"&gt;Sudbury model of democratic education&lt;/a&gt; schools assert that there are many ways to &lt;a href="http://en.wikipedia.org/wiki/Study" title="Study"&gt;study&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Learn" title="Learn" class="mw-redirect"&gt;learn&lt;/a&gt;. They argue that learning is a process you do, not a process that is done to you; That is true of everyone. It's basic.&lt;sup id="cite_ref-17" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-17" title=""&gt;&lt;span&gt;[&lt;/span&gt;18&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt; The experience of Sudbury model democratic schools shows that there are many ways to learn without the intervention of teaching, to say, without the intervention of a teacher being imperative. In the case of reading for instance in the Sudbury model democratic schools some children learn from being read to, memorizing the stories and then ultimately reading them. Others learn from cereal boxes, others from games instructions, others from street signs. Some teach themselves letter sounds, others syllables, others whole words. Sudbury model democratic schools adduce that in their schools no one child has ever been forced, pushed, urged, cajoled, or bribed into learning how to read or write, and they have had no dyslexia. None of their graduates are real or functional illiterates, and no one who meets their older students could ever guess the age at which they first learned to read or write.&lt;sup id="cite_ref-18" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-18" title=""&gt;&lt;span&gt;[&lt;/span&gt;19&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt; In a similar form students learn all the subjects, techniques and skills in these schools.&lt;/p&gt; &lt;p&gt;Describing current instructional methods as &lt;a href="http://en.wikipedia.org/wiki/Homogenization#Sociology_and_History" title="Homogenization"&gt;homogenization&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Lockstep" title="Lockstep"&gt;lockstep&lt;/a&gt; standardization, alternative approaches are proposed, such as the Sudbury model of democratic education schools, an alternative approach in which children, by &lt;a href="http://en.wikipedia.org/wiki/Sudbury_model#Individual_freedom.2C_freedom_of_choice.2C_learning_and_learning_through_experience" class="external text" title="http://en.wikipedia.org/wiki/Sudbury_model#Individual_freedom.2C_freedom_of_choice.2C_learning_and_learning_through_experience" rel="nofollow"&gt;enjoying personal freedom&lt;/a&gt; thus &lt;a href="http://en.wikipedia.org/wiki/Sudbury_model#Discipline" class="external text" title="http://en.wikipedia.org/wiki/Sudbury_model#Discipline" rel="nofollow"&gt;encouraged to exercise personal responsibility for their actions,&lt;/a&gt; &lt;a href="http://en.wikipedia.org/wiki/Literacy#Criticism_of_the_concept_of_teaching_literacy" class="external text" title="http://en.wikipedia.org/wiki/Literacy#Criticism_of_the_concept_of_teaching_literacy" rel="nofollow"&gt;learn at their own pace and style&lt;/a&gt; rather than following a compulsory and chronologically-based curriculum.&lt;sup id="cite_ref-19" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-19" title=""&gt;&lt;span&gt;[&lt;/span&gt;20&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt;&lt;sup id="cite_ref-20" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-20" title=""&gt;&lt;span&gt;[&lt;/span&gt;21&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt;&lt;sup id="cite_ref-21" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-21" title=""&gt;&lt;span&gt;[&lt;/span&gt;22&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt;&lt;sup id="cite_ref-22" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-22" title=""&gt;&lt;span&gt;[&lt;/span&gt;23&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt; Proponents of &lt;a href="http://en.wikipedia.org/wiki/Unschooling" title="Unschooling"&gt;unschooling&lt;/a&gt; have also claimed that children raised in this method learn at their own pace and style, and do not suffer from learning disabilities.&lt;/p&gt; &lt;p&gt;&lt;a name="Technology" id="Technology"&gt;&lt;/a&gt;&lt;/p&gt; &lt;h3&gt;&lt;span class="editsection"&gt;[&lt;a href="http://en.wikipedia.org/w/index.php?title=Education&amp;amp;action=edit&amp;amp;section=14" title="Edit section: Technology"&gt;edit&lt;/a&gt;]&lt;/span&gt; &lt;span class="mw-headline"&gt;Technology&lt;/span&gt;&lt;/h3&gt; &lt;dl&gt;&lt;dd&gt; &lt;div class="noprint relarticle mainarticle"&gt;&lt;i&gt;Main article: &lt;a href="http://en.wikipedia.org/wiki/Educational_technology" title="Educational technology"&gt;Educational technology&lt;/a&gt;&lt;/i&gt;&lt;/div&gt; &lt;/dd&gt;&lt;/dl&gt; &lt;p&gt;&lt;a href="http://en.wikipedia.org/wiki/Technology" title="Technology"&gt;Technology&lt;/a&gt; is an increasingly influential factor in education. &lt;a href="http://en.wikipedia.org/wiki/Computers" title="Computers" class="mw-redirect"&gt;Computers&lt;/a&gt; and mobile phones are being widely used in developed countries both to complement established education practices and develop new ways of learning such as &lt;a href="http://en.wikipedia.org/wiki/Online_education" title="Online education" class="mw-redirect"&gt;online education&lt;/a&gt; (a type of distance education). This gives students the opportunity to choose what they are interested in learning. The proliferation of computers also means the increase of programming and blogging. Technology offers powerful learning tools that demand new skills and understandings of students, including &lt;a href="http://en.wikipedia.org/wiki/Multimedia_learning" title="Multimedia learning"&gt;Multimedia&lt;/a&gt;, and provides new ways to engage students, such as &lt;a href="http://en.wikipedia.org/wiki/Virtual_learning_environment" title="Virtual learning environment"&gt;Virtual learning environments&lt;/a&gt;. Technology is being used more not only in administrative duties in education but also in the instruction of students. The use of technologies such as &lt;a href="http://en.wikipedia.org/wiki/Microsoft_PowerPoint" title="Microsoft PowerPoint"&gt;PowerPoint&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Interactive_whiteboard" title="Interactive whiteboard"&gt;interactive whiteboard&lt;/a&gt; is capturing the attention of students in the classroom. Technology is also being used in the assessment of students. One example is the &lt;a href="http://en.wikipedia.org/wiki/Audience_response#Audience_Response_Systems" title="Audience response"&gt;Audience Response System&lt;/a&gt; (ARS), which allows immediate feedback tests and classroom discussions.&lt;/p&gt; &lt;p&gt;Information and communication technologies (ICTs) are a “diverse set of tools and resources used to communicate, create, disseminate, store, and manage information.”&lt;sup id="cite_ref-23" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-23" title=""&gt;&lt;span&gt;[&lt;/span&gt;24&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt; These technologies include computers, the Internet, broadcasting technologies (radio and television), and telephony. There is increasing interest in how computers and the Internet can improve education at all levels, in both formal and non-formal settings.&lt;sup id="cite_ref-24" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-24" title=""&gt;&lt;span&gt;[&lt;/span&gt;25&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt; Older ICT technologies, such as radio and television, have for over forty years been used for open and distance learning, although print remains the cheapest, most accessible and therefore most dominant delivery mechanism in both developed and developing countries.&lt;sup id="cite_ref-25" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-25" title=""&gt;&lt;span&gt;[&lt;/span&gt;26&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt; &lt;p&gt;The use of computers and the Internet is still in its infancy in developing countries, if these are used at all, due to limited infrastructure and the attendant high costs of access. Usually, various technologies are used in combination rather than as the sole delivery mechanism. For example, the Kothmale Community Radio Internet uses both radio broadcasts and computer and Internet technologies to facilitate the sharing of information and provide educational opportunities in a rural community in Sri Lanka.&lt;sup id="cite_ref-26" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-26" title=""&gt;&lt;span&gt;[&lt;/span&gt;27&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt; The Open University of the United Kingdom (UKOU), established in 1969 as the first educational institution in the world wholly dedicated to open and distance learning, still relies heavily on print-based materials supplemented by radio, television and, in recent years, online programming.&lt;sup id="cite_ref-27" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-27" title=""&gt;&lt;span&gt;[&lt;/span&gt;28&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt; Similarly, the Indira Gandhi National Open University in India combines the use of print, recorded audio and video, broadcast radio and television, and audio conferencing technologies.&lt;sup id="cite_ref-28" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-28" title=""&gt;&lt;span&gt;[&lt;/span&gt;29&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt; &lt;p&gt;The term "computer-assisted learning" (CAL) has been increasingly used to describe the use of technology in teaching.&lt;/p&gt; &lt;p&gt;&lt;a name="History" id="History"&gt;&lt;/a&gt;&lt;/p&gt; &lt;h2&gt;&lt;span class="editsection"&gt;[&lt;a href="http://en.wikipedia.org/w/index.php?title=Education&amp;amp;action=edit&amp;amp;section=15" title="Edit section: History"&gt;edit&lt;/a&gt;]&lt;/span&gt; &lt;span class="mw-headline"&gt;History&lt;/span&gt;&lt;/h2&gt; &lt;dl&gt;&lt;dd&gt; &lt;div class="noprint relarticle mainarticle"&gt;&lt;i&gt;Main article: &lt;a href="http://en.wikipedia.org/wiki/History_of_education" title="History of education"&gt;History of education&lt;/a&gt;&lt;/i&gt;&lt;/div&gt; &lt;/dd&gt;&lt;/dl&gt; &lt;div class="thumb tright"&gt; &lt;div class="thumbinner" style="width: 182px;"&gt;&lt;a href="http://en.wikipedia.org/wiki/Image:Laurentius_de_Voltolina_001.jpg" class="image" title="A depiction of the University of Bologna, Italy"&gt;&lt;img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/Laurentius_de_Voltolina_001.jpg/180px-Laurentius_de_Voltolina_001.jpg" class="thumbimage" border="0" height="145" width="180" /&gt;&lt;/a&gt; &lt;div class="thumbcaption"&gt; &lt;div class="magnify"&gt;&lt;a href="http://en.wikipedia.org/wiki/Image:Laurentius_de_Voltolina_001.jpg" class="internal" title="Enlarge"&gt;&lt;img src="http://upload.wikimedia.org/skins/common/images/magnify-clip.png" alt="" height="11" width="15" /&gt;&lt;/a&gt;&lt;/div&gt; A depiction of the &lt;a href="http://en.wikipedia.org/wiki/University_of_Bologna" title="University of Bologna"&gt;University of Bologna&lt;/a&gt;, Italy&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;p&gt;The history of education according to &lt;a href="http://en.wikipedia.org/w/index.php?title=Dieter_Lenzen&amp;amp;action=edit&amp;amp;redlink=1" class="new" title="Dieter Lenzen (page does not exist)"&gt;Dieter Lenzen&lt;/a&gt;, president of the &lt;a href="http://en.wikipedia.org/wiki/Freie_Universit%C3%A4t_Berlin" title="Freie Universität Berlin" class="mw-redirect"&gt;Freie Universität Berlin&lt;/a&gt; 1994 "began either millions of years ago or at the end of 1770". Education as a science cannot be separated from the educational traditions that existed before. Education was the natural response of early civilizations to the struggle of surviving and thriving as a culture.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt; Adults trained the young of their society in the knowledge and skills they would need to master and eventually pass on.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt; The evolution of culture, and human beings as a species depended on this practice of transmitting knowledge.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt; In pre-literate societies this was achieved orally and through imitation. Story-telling continued from one generation to the next. Oral language developed into written symbols and letters. The depth and breadth of knowledge that could be preserved and passed soon increased exponentially.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt; When cultures began to extend their knowledge beyond the basic skills of communicating, trading, gathering food, religious practices, etc, formal education, and schooling, eventually followed.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt; Schooling in this sense was already in place in Egypt between 3000 and 500BC.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt;&lt;/p&gt; &lt;p&gt;&lt;a name="Philosophy" id="Philosophy"&gt;&lt;/a&gt;&lt;/p&gt; &lt;h2&gt;&lt;span class="editsection"&gt;[&lt;a href="http://en.wikipedia.org/w/index.php?title=Education&amp;amp;action=edit&amp;amp;section=16" title="Edit section: Philosophy"&gt;edit&lt;/a&gt;]&lt;/span&gt; &lt;span class="mw-headline"&gt;Philosophy&lt;/span&gt;&lt;/h2&gt; &lt;dl&gt;&lt;dd&gt; &lt;div class="noprint relarticle mainarticle"&gt;&lt;i&gt;Main articles: &lt;a href="http://en.wikipedia.org/wiki/Philosophy_of_education" title="Philosophy of education"&gt;Philosophy of education&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Epistemology" title="Epistemology"&gt;Epistemology&lt;/a&gt;&lt;/i&gt;&lt;/div&gt; &lt;/dd&gt;&lt;/dl&gt; &lt;div class="thumb tright"&gt; &lt;div class="thumbinner" style="width: 182px;"&gt;&lt;a href="http://en.wikipedia.org/wiki/Image:LockeEducation1693.jpg" class="image" title="John Locke's work Some Thoughts Concerning Education was written in 1693 and still reflects traditional education priorities in the Western world"&gt;&lt;img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/LockeEducation1693.jpg/180px-LockeEducation1693.jpg" class="thumbimage" border="0" height="348" width="180" /&gt;&lt;/a&gt; &lt;div class="thumbcaption"&gt; &lt;div class="magnify"&gt;&lt;a href="http://en.wikipedia.org/wiki/Image:LockeEducation1693.jpg" class="internal" title="Enlarge"&gt;&lt;img src="http://upload.wikimedia.org/skins/common/images/magnify-clip.png" alt="" height="11" width="15" /&gt;&lt;/a&gt;&lt;/div&gt; &lt;a href="http://en.wikipedia.org/wiki/John_Locke" title="John Locke"&gt;John Locke&lt;/a&gt;'s work &lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Some_Thoughts_Concerning_Education" title="Some Thoughts Concerning Education"&gt;Some Thoughts Concerning Education&lt;/a&gt;&lt;/i&gt; was written in 1693 and still reflects traditional education priorities in the Western world&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;p&gt;The &lt;a href="http://en.wikipedia.org/wiki/Philosophy_of_education" title="Philosophy of education"&gt;philosophy of education&lt;/a&gt; is the study of the purpose, nature and ideal &lt;a href="http://en.wikipedia.org/wiki/List_of_academic_disciplines" title="List of academic disciplines"&gt;content&lt;/a&gt; of education. Related topics include &lt;a href="http://en.wikipedia.org/wiki/Epistemology" title="Epistemology"&gt;knowledge itself&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Philosophy_of_mind" title="Philosophy of mind"&gt;the nature of the knowing mind&lt;/a&gt; and the human subject, problems of authority, and the relationship between education and society.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt; At least since &lt;a href="http://en.wikipedia.org/wiki/John_Locke" title="John Locke"&gt;Locke's&lt;/a&gt; time, the philosophy of education has been linked to theories of &lt;a href="http://en.wikipedia.org/wiki/Developmental_psychology" title="Developmental psychology"&gt;developmental psychology&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Human_development_%28psychology%29" title="Human development (psychology)" class="mw-redirect"&gt;human development&lt;/a&gt;.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt;&lt;/p&gt; &lt;p&gt;Fundamental purposes that have been proposed for education include:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;The enterprise of &lt;a href="http://en.wikipedia.org/wiki/Civil_society" title="Civil society"&gt;civil society&lt;/a&gt; depends on educating people to become &lt;a href="http://en.wikipedia.org/wiki/Social_responsibility" title="Social responsibility"&gt;responsible&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Thought" title="Thought"&gt;thoughtful&lt;/a&gt; and &lt;a href="http://en.wiktionary.org/wiki/enterprising" class="extiw" title="wiktionary:enterprising"&gt;enterprising&lt;/a&gt; &lt;a href="http://en.wikipedia.org/wiki/Citizen" title="Citizen" class="mw-redirect"&gt;citizens&lt;/a&gt;. This is an intricate, challenging task requiring deep understanding of &lt;a href="http://en.wikipedia.org/wiki/Ethics" title="Ethics"&gt;ethical&lt;/a&gt; principles, &lt;a href="http://en.wikipedia.org/wiki/Moral" title="Moral"&gt;moral&lt;/a&gt; &lt;a href="http://en.wikipedia.org/wiki/Value_%28personal_and_cultural%29" title="Value (personal and cultural)"&gt;values&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Politics" title="Politics"&gt;political&lt;/a&gt; theory, &lt;a href="http://en.wikipedia.org/wiki/Aesthetics" title="Aesthetics"&gt;aesthetics&lt;/a&gt;, and &lt;a href="http://en.wikipedia.org/wiki/Economics" title="Economics"&gt;economics&lt;/a&gt;, not to mention an understanding of who &lt;a href="http://en.wikipedia.org/wiki/Child" title="Child"&gt;children&lt;/a&gt; are, in themselves and in &lt;a href="http://en.wikipedia.org/wiki/Society" title="Society"&gt;society&lt;/a&gt;.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since December 2007" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt;&lt;/li&gt;&lt;li&gt;Progress in every practical field depends on having capacities that &lt;a href="http://en.wikipedia.org/wiki/School" title="School"&gt;schooling&lt;/a&gt; can develop. Education is thus a means to foster the individual's, society's, and even &lt;a href="http://en.wikipedia.org/wiki/Human" title="Human"&gt;humanity's&lt;/a&gt; future development and &lt;a href="http://en.wikipedia.org/wiki/Prosperity" title="Prosperity" class="mw-redirect"&gt;prosperity&lt;/a&gt;. Emphasis is often put on economic &lt;a href="http://en.wikipedia.org/wiki/Social_status" title="Social status"&gt;success&lt;/a&gt; in this regard.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since December 2007" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt;&lt;/li&gt;&lt;li&gt;One's &lt;a href="http://en.wikipedia.org/wiki/Human_development" title="Human development"&gt;individual development&lt;/a&gt; and the capacity to fulfill one's own purposes can depend on an adequate preparation in childhood. Education can thus attempt to give a firm foundation for the &lt;a href="http://en.wikipedia.org/wiki/Goal_%28management%29" title="Goal (management)" class="mw-redirect"&gt;achievement&lt;/a&gt; of &lt;a href="http://en.wikipedia.org/wiki/Maslow%27s_hierarchy_of_needs" title="Maslow's hierarchy of needs"&gt;personal fulfillment&lt;/a&gt;. The better the foundation that is built, the more successful the child will be. Simple basics in education can carry a child far.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since December 2007" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt;&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;A central tenet of education typically includes “the imparting of &lt;a href="http://en.wikipedia.org/wiki/Knowledge" title="Knowledge"&gt;knowledge&lt;/a&gt;.” At a very basic level, this purpose ultimately deals with the nature, origin and scope of knowledge.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt; The branch of &lt;a href="http://en.wikipedia.org/wiki/Philosophy" title="Philosophy"&gt;philosophy&lt;/a&gt; that addresses these and related issues is known as &lt;a href="http://en.wikipedia.org/wiki/Epistemology" title="Epistemology"&gt;epistemology&lt;/a&gt;. This area of study often focuses on analyzing the nature and variety of knowledge and how it relates to similar notions such as &lt;a href="http://en.wikipedia.org/wiki/Truth" title="Truth"&gt;truth&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Belief" title="Belief"&gt;belief&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;While the term, &lt;i&gt;knowledge&lt;/i&gt;, is often used to convey this general purpose of education, it can also be viewed as part of a continuum of knowing that ranges from very specific &lt;a href="http://en.wikipedia.org/wiki/Data" title="Data"&gt;data&lt;/a&gt; to the highest levels. Seen in this light, the continuum may be thought to consist of a general hierarchy of overlapping levels of knowing.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt; Students must be able to connect new information to a piece of old information to be better able to learn, understand, and retain information.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt; This continuum may include notions such as &lt;a href="http://en.wikipedia.org/wiki/Data" title="Data"&gt;data&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Information" title="Information"&gt;information&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Knowledge" title="Knowledge"&gt;knowledge&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Wisdom" title="Wisdom"&gt;wisdom&lt;/a&gt;, and &lt;a href="http://en.wikipedia.org/wiki/Self-realization" title="Self-realization"&gt;realization&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;The ideal or holistic education [Cf: Conceptual Stress-Understanding and Management: Dr. Shriniwas Kashalikar] is conscious evolutionary transformation that aims at holistic health i.e. simultaneous welfare of one and all. This requires conscious development of fitness of one's body, refinements of instincts, broadening and profoundness of emotions, blossoming of intelligence and liberating perspective of universal oneness. Besides, cognitive, affective and psychomotor the productive domain also must be nurtured for this.&lt;/p&gt; &lt;p&gt;&lt;a name="Psychology" id="Psychology"&gt;&lt;/a&gt;&lt;/p&gt; &lt;h2&gt;&lt;span class="editsection"&gt;[&lt;a href="http://en.wikipedia.org/w/index.php?title=Education&amp;amp;action=edit&amp;amp;section=17" title="Edit section: Psychology"&gt;edit&lt;/a&gt;]&lt;/span&gt; &lt;span class="mw-headline"&gt;Psychology&lt;/span&gt;&lt;/h2&gt; &lt;dl&gt;&lt;dd&gt; &lt;div class="noprint relarticle mainarticle"&gt;&lt;i&gt;Main article: &lt;a href="http://en.wikipedia.org/wiki/Educational_psychology" title="Educational psychology"&gt;Educational psychology&lt;/a&gt;&lt;/i&gt;&lt;/div&gt; &lt;/dd&gt;&lt;/dl&gt; &lt;div class="thumb tright"&gt; &lt;div class="thumbinner" style="width: 182px;"&gt;&lt;a href="http://en.wikipedia.org/wiki/Image:FinnGerberBoydZaharias2005.png" class="image" title="A class size experiment in the United States found that attending small classes for 3 or more years in the early grades increased high school graduation of students from low income families."&gt;&lt;img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/2/22/FinnGerberBoydZaharias2005.png/180px-FinnGerberBoydZaharias2005.png" class="thumbimage" border="0" height="173" width="180" /&gt;&lt;/a&gt; &lt;div class="thumbcaption"&gt; &lt;div class="magnify"&gt;&lt;a href="http://en.wikipedia.org/wiki/Image:FinnGerberBoydZaharias2005.png" class="internal" title="Enlarge"&gt;&lt;img src="http://upload.wikimedia.org/skins/common/images/magnify-clip.png" alt="" height="11" width="15" /&gt;&lt;/a&gt;&lt;/div&gt; A class size experiment in the United States found that attending small classes for 3 or more years in the early grades increased high school graduation of students from low income families.&lt;sup id="cite_ref-finn_29-0" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-finn-29" title=""&gt;&lt;span&gt;[&lt;/span&gt;30&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt;&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;p&gt;&lt;a href="http://en.wikipedia.org/wiki/Educational_psychology" title="Educational psychology"&gt;Educational psychology&lt;/a&gt; is the study of how humans learn in educational settings, the effectiveness of educational interventions, the psychology of teaching, and the &lt;a href="http://en.wikipedia.org/wiki/Social_psychology" title="Social psychology"&gt;social psychology&lt;/a&gt; of &lt;a href="http://en.wikipedia.org/wiki/School" title="School"&gt;schools&lt;/a&gt; as &lt;a href="http://en.wikipedia.org/wiki/Organization" title="Organization"&gt;organizations&lt;/a&gt;. Although the terms "educational psychology" and "school psychology" are often used interchangeably, researchers and theorists are likely to be identified as &lt;a href="http://en.wikipedia.org/wiki/Category:Educational_psychologists" title="Category:Educational psychologists"&gt;educational psychologists&lt;/a&gt;, whereas practitioners in schools or school-related settings are identified as &lt;a href="http://en.wikipedia.org/wiki/School_psychologist" title="School psychologist" class="mw-redirect"&gt;school psychologists&lt;/a&gt;.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt; Educational psychology is concerned with the processes of educational attainment in the general population and in sub-populations such as &lt;a href="http://en.wikipedia.org/wiki/Gifted" title="Gifted" class="mw-redirect"&gt;gifted&lt;/a&gt; children and those with specific &lt;a href="http://en.wikipedia.org/wiki/Disabilities" title="Disabilities" class="mw-redirect"&gt;disabilities&lt;/a&gt;.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt;&lt;/p&gt; &lt;p&gt;Educational psychology can in part be understood through its relationship with other disciplines. It is informed primarily by &lt;a href="http://en.wikipedia.org/wiki/Psychology" title="Psychology"&gt;psychology&lt;/a&gt;, bearing a relationship to that discipline analogous to the relationship between &lt;a href="http://en.wikipedia.org/wiki/Medicine" title="Medicine"&gt;medicine&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Biology" title="Biology"&gt;biology&lt;/a&gt;.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt; Educational psychology in turn informs a wide range of specialities within educational studies, including &lt;a href="http://en.wikipedia.org/wiki/Instructional_design" title="Instructional design"&gt;instructional design&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Educational_technology" title="Educational technology"&gt;educational technology&lt;/a&gt;, curriculum development, &lt;a href="http://en.wikipedia.org/wiki/Organizational_learning" title="Organizational learning"&gt;organizational learning&lt;/a&gt;, &lt;a href="http://en.wikipedia.org/wiki/Special_education" title="Special education"&gt;special education&lt;/a&gt; and &lt;a href="http://en.wikipedia.org/wiki/Classroom_management" title="Classroom management"&gt;classroom management&lt;/a&gt;.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt; Educational psychology both draws from and contributes to &lt;a href="http://en.wikipedia.org/wiki/Cognitive_science" title="Cognitive science"&gt;cognitive science&lt;/a&gt; and the &lt;a href="http://en.wikipedia.org/wiki/Learning_sciences" title="Learning sciences"&gt;learning sciences&lt;/a&gt;.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt; In universities, departments of educational psychology are usually housed within faculties of education, possibly accounting for the lack of representation of educational psychology content in introductory psychology textbooks (Lucas, Blazek, &amp;amp; Raley, 2006).&lt;/p&gt; &lt;p&gt;&lt;a name="Economic_implications_of_Education" id="Economic_implications_of_Education"&gt;&lt;/a&gt;&lt;/p&gt; &lt;h2&gt;&lt;span class="editsection"&gt;[&lt;a href="http://en.wikipedia.org/w/index.php?title=Education&amp;amp;action=edit&amp;amp;section=18" title="Edit section: Economic implications of Education"&gt;edit&lt;/a&gt;]&lt;/span&gt; &lt;span class="mw-headline"&gt;Economic implications of Education&lt;/span&gt;&lt;/h2&gt; &lt;dl&gt;&lt;dd&gt; &lt;div class="noprint relarticle mainarticle"&gt;&lt;i&gt;Main article: &lt;a href="http://en.wikipedia.org/w/index.php?title=Economics_of_education&amp;amp;action=edit&amp;amp;redlink=1" class="new" title="Economics of education (page does not exist)"&gt;Economics of education&lt;/a&gt;&lt;/i&gt;&lt;/div&gt; &lt;/dd&gt;&lt;/dl&gt; &lt;p&gt;It has been argued that high rates of education are essential for countries to be able to achieve high levels of economic growth. &lt;sup id="cite_ref-30" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-30" title=""&gt;&lt;span&gt;[&lt;/span&gt;31&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt; In theory poor countries should grow faster than rich countries because they can adopt cutting edge technologies already tried and tested by rich countries.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt; But economists argue that if the gap in education between a rich and a poor nation is too large, as is the case between the poorest and the richest nations in the world, the transfer of these technologies that drive economic growth becomes difficult, thus the economies of the world's poorest nations stagnate.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt;&lt;/p&gt; &lt;p&gt;&lt;a name="Sociology_of_education" id="Sociology_of_education"&gt;&lt;/a&gt;&lt;/p&gt; &lt;h2&gt;&lt;span class="editsection"&gt;[&lt;a href="http://en.wikipedia.org/w/index.php?title=Education&amp;amp;action=edit&amp;amp;section=19" title="Edit section: Sociology of education"&gt;edit&lt;/a&gt;]&lt;/span&gt; &lt;span class="mw-headline"&gt;Sociology of education&lt;/span&gt;&lt;/h2&gt; &lt;dl&gt;&lt;dd&gt; &lt;div class="noprint relarticle mainarticle"&gt;&lt;i&gt;Main article: &lt;a href="http://en.wikipedia.org/wiki/Sociology_of_education" title="Sociology of education"&gt;Sociology of education&lt;/a&gt;&lt;/i&gt;&lt;/div&gt; &lt;/dd&gt;&lt;/dl&gt; &lt;div class="thumb tright"&gt; &lt;div class="thumbinner" style="width: 182px;"&gt;&lt;a href="http://en.wikipedia.org/wiki/Image:Graduates_in_tertiary_education-thousands.jpg" class="image" title="Russia has more academic graduates than any other country in Europe."&gt;&lt;img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/2/22/Graduates_in_tertiary_education-thousands.jpg/180px-Graduates_in_tertiary_education-thousands.jpg" class="thumbimage" border="0" height="109" width="180" /&gt;&lt;/a&gt; &lt;div class="thumbcaption"&gt; &lt;div class="magnify"&gt;&lt;a href="http://en.wikipedia.org/wiki/Image:Graduates_in_tertiary_education-thousands.jpg" class="internal" title="Enlarge"&gt;&lt;img src="http://upload.wikimedia.org/skins/common/images/magnify-clip.png" alt="" height="11" width="15" /&gt;&lt;/a&gt;&lt;/div&gt; Russia has more academic graduates than any other country in Europe.&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;p&gt;The &lt;a href="http://en.wikipedia.org/wiki/Sociology_of_education" title="Sociology of education"&gt;sociology of education&lt;/a&gt; is the study of how social institutions and forces affect educational processes and outcomes, and vice versa. By many, education is understood to be a means of overcoming handicaps, achieving greater equality and acquiring wealth and status for all (Sargent 1994). Learners may be motivated by aspirations for progress and betterment. Education is perceived as a place where children can develop according to their unique needs and potentialities.&lt;sup id="cite_ref-31" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-31" title=""&gt;&lt;span&gt;[&lt;/span&gt;32&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt; The purpose of education can be to develop every individual to their full potential.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt; The understanding of the goals and means of educational &lt;a href="http://en.wikipedia.org/wiki/Socialization" title="Socialization"&gt;socialization&lt;/a&gt; processes differs according to the &lt;a href="http://en.wikipedia.org/wiki/Sociological_paradigm" title="Sociological paradigm"&gt;sociological paradigm&lt;/a&gt; used.&lt;/p&gt; &lt;p&gt;&lt;a name="Education_in_developing_countries" id="Education_in_developing_countries"&gt;&lt;/a&gt;&lt;/p&gt; &lt;h3&gt;&lt;span class="editsection"&gt;[&lt;a href="http://en.wikipedia.org/w/index.php?title=Education&amp;amp;action=edit&amp;amp;section=20" title="Edit section: Education in developing countries"&gt;edit&lt;/a&gt;]&lt;/span&gt; &lt;span class="mw-headline"&gt;Education in developing countries&lt;/span&gt;&lt;/h3&gt; &lt;div class="thumb tright"&gt; &lt;div class="thumbinner" style="width: 202px;"&gt;&lt;a href="http://en.wikipedia.org/wiki/Image:Education_index_UN_HDR_2007_2008.PNG" class="image" title="World map indicating Education Index (according to 2007/2008 Human Development Report)"&gt;&lt;img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Education_index_UN_HDR_2007_2008.PNG/200px-Education_index_UN_HDR_2007_2008.PNG" class="thumbimage" border="0" height="93" width="200" /&gt;&lt;/a&gt; &lt;div class="thumbcaption"&gt; &lt;div class="magnify"&gt;&lt;a href="http://en.wikipedia.org/wiki/Image:Education_index_UN_HDR_2007_2008.PNG" class="internal" title="Enlarge"&gt;&lt;img src="http://upload.wikimedia.org/skins/common/images/magnify-clip.png" alt="" height="11" width="15" /&gt;&lt;/a&gt;&lt;/div&gt; World map indicating Education Index (according to 2007/2008 &lt;a href="http://en.wikipedia.org/wiki/Human_Development_Report" title="Human Development Report"&gt;Human Development Report&lt;/a&gt;)&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;p&gt;In some developing countries, the number and seriousness of the problems faced are naturally greater.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt; People in more remote or agrarian areas are sometimes unaware of the importance of education. However, many countries have an active &lt;a href="http://en.wikipedia.org/wiki/Ministry_of_Education" title="Ministry of Education"&gt;Ministry of Education&lt;/a&gt;, and in many subjects, such as foreign language learning, the degree of education is actually much higher than in industrialized countries; for example, it is not at all uncommon for students in many developing countries to be reasonably fluent in multiple foreign languages, whereas this is much more of a rarity in the supposedly "more educated" countries where much of the population is in fact monolingual.&lt;/p&gt; &lt;p&gt;There is also economic pressure from those parents who prefer their children making money in the short term over any long-term benefits of education.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt; Recent studies on child labor and poverty have suggested that when poor families reach a certain economic threshold where families are able to provide for their basic needs, parents return their children to school.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt; This has been found to be true, once the threshold has been breached, even if the potential economic value of the children's work has increased since their return to school.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt; Teachers are often paid less than other similar &lt;a href="http://en.wikipedia.org/wiki/Profession" title="Profession"&gt;professions&lt;/a&gt;.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt;&lt;/p&gt; &lt;p&gt;A lack of good universities, and a low acceptance rate for good universities, is evident in countries with a relatively high population density.&lt;sup class="noprint Template-Fact"&gt;&lt;span title="This claim needs references to reliable sources since February 2008" style="white-space: nowrap;"&gt;[&lt;i&gt;&lt;a href="http://en.wikipedia.org/wiki/Wikipedia:Citation_needed" title="Wikipedia:Citation needed"&gt;citation needed&lt;/a&gt;&lt;/i&gt;]&lt;/span&gt;&lt;/sup&gt; In some countries, there are uniform, over structured, inflexible centralized programs from a central agency that regulates all aspects of education.&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Due to &lt;a href="http://en.wikipedia.org/wiki/Globalization" title="Globalization"&gt;globalization&lt;/a&gt;, increased pressure on students in curricular activities&lt;/li&gt;&lt;li&gt;Removal of a certain percentage of students for improvisation of academics (usually practised in schools, after 10th grade)&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;India is now developing technologies that will skip land based phone and internet lines. Instead, India launched &lt;a href="http://en.wikipedia.org/wiki/EDUSAT" title="EDUSAT" class="mw-redirect"&gt;EDUSAT&lt;/a&gt;, an education satellite that can reach more of the country at a greatly reduced cost. There is also an initiative started by a group out of MIT and supported by several major corporations to develop a &lt;a href="http://en.wikipedia.org/wiki/$100_laptop" title="$100 laptop" class="mw-redirect"&gt;$100 laptop&lt;/a&gt;. The laptops should be available by late 2006 or 2007. The laptops, sold at cost, will enable developing countries to give their children a digital education, and to close the digital divide across the world.&lt;/p&gt; &lt;p&gt;In Africa, &lt;a href="http://en.wikipedia.org/wiki/NEPAD" title="NEPAD" class="mw-redirect"&gt;NEPAD&lt;/a&gt; has launched an "&lt;a href="http://en.wikipedia.org/wiki/NEPAD_e-school_programme" title="NEPAD e-school programme" class="mw-redirect"&gt;e-school programme&lt;/a&gt;" to provide all 600,000 primary and high schools with computer equipment, learning materials and internet access within 10 years. Private groups, like &lt;a href="http://en.wikipedia.org/wiki/The_Church_of_Jesus_Christ_of_Latter-day_Saints" title="The Church of Jesus Christ of Latter-day Saints"&gt;The Church of Jesus Christ of Latter-day Saints&lt;/a&gt;, are working to give more individuals opportunities to receive education in developing countries through such programs as the &lt;a href="http://en.wikipedia.org/wiki/Perpetual_Education_Fund" title="Perpetual Education Fund"&gt;Perpetual Education Fund&lt;/a&gt;. An International Development Agency project called &lt;a href="http://www.nabuur.com/" class="external text" title="http://www.nabuur.com/" rel="nofollow"&gt;nabuur.com&lt;/a&gt;, started with the support of American President &lt;a href="http://en.wikipedia.org/wiki/Bill_Clinton" title="Bill Clinton"&gt;Bill Clinton&lt;/a&gt;, uses the &lt;a href="http://en.wikipedia.org/wiki/Internet" title="Internet"&gt;Internet&lt;/a&gt; to allow co-operation by individuals on issues of social development.&lt;/p&gt; &lt;p&gt;&lt;a name="Internationalisation" id="Internationalisation"&gt;&lt;/a&gt;&lt;/p&gt; &lt;h3&gt;&lt;span class="editsection"&gt;[&lt;a href="http://en.wikipedia.org/w/index.php?title=Education&amp;amp;action=edit&amp;amp;section=21" title="Edit section: Internationalisation"&gt;edit&lt;/a&gt;]&lt;/span&gt; &lt;span class="mw-headline"&gt;Internationalisation&lt;/span&gt;&lt;/h3&gt; &lt;p&gt;Education is becoming increasingly international. Not only are the materials becoming more influenced by the rich international environment, but exchanges among students at all levels are also playing an increasingly important role. In Europe, for example, the &lt;a href="http://www.erasmus.ac.uk/" class="external text" title="http://www.erasmus.ac.uk" rel="nofollow"&gt;Socrates-Erasmus Programme&lt;/a&gt; stimulates exchanges across European universities. Also, the &lt;a href="http://www.soros.org/" class="external text" title="http://www.soros.org/" rel="nofollow"&gt;Soros Foundation&lt;/a&gt; provides many opportunities for students from central Asia and eastern Europe. Some scholars argue that, regardless of whether one system is considered better or worse than another, experiencing a different way of education can often be considered to be the most important, enriching element of an international learning experience.&lt;sup id="cite_ref-32" class="reference"&gt;&lt;a href="http://en.wikipedia.org/wiki/Education#cite_note-32" title=""&gt;&lt;span&gt;[&lt;/span&gt;33&lt;span&gt;]&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;http://dayaprime.com&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3709878533190869705-770853882247363973?l=primadaya.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://primadaya.blogspot.com/feeds/770853882247363973/comments/default' title='Poskan Komentar'/><link rel='replies' type='text/html' href='http://primadaya.blogspot.com/2008/11/education-is.html#comment-form' title='0 Komentar'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/770853882247363973'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3709878533190869705/posts/default/770853882247363973'/><link rel='alternate' type='text/html' href='http://primadaya.blogspot.com/2008/11/education-is.html' title='Education is?'/><author><name>Primadaya</name><uri>http://www.blogger.com/profile/08488032866171028222</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='27' height='32' src='http://1.bp.blogspot.com/_vjBazn8tW90/STeJTwfEknI/AAAAAAAAAAo/e0SlKLyKRxo/S220/08.01.2406.jpg.bmp'/></author><thr:total>0</thr:total></entry></feed>
