STUDENT! LOVE, CARE, and KEPO about TECHNOLOGY! WHAT ABOUT YOU?
RSS
content top

Cyber Technology Article

Hello viewer, visitor, and blogger.
Thank you for see my blog. I just want to share what I've read just now.
It an article about cyber technology.
As we know that technology rapidly developed.  Of course there are profit and drawbacks.  It can make human duties (tugas - tugas) easier, more effective, and more efficient.
As the article say, I can conclude like this one.

     The prime benefit we can get, is the access of lavish amount of information including long distance learning, discussion forums, mailing lists and also e-news. Beside that, we can get a lot of advantages if we adopt the Internet technology in doing business. Predict the future, implementations (pelaksanaan) of cyber technology may include virtual office, virtual school, and also cybercity. In virtual office, attendance (kehadiran) of the employees is not compulsory (wajib)
     As I say before, there always profit and drawback, so there are some advice for you guys to face this.
hold our idealism and principle tightly
Internet would influence us and replace our idealism. Commonly, people have tendency (kecenderungan) to bad
 know your objective well
Since a web site has a lot of advertisements and links, writing down the Internet address might be a good idea. Don’t glance (mudah tertarik) to another link or address

Want to read more? You may CLICK HERE

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS
Read comments

Happy Birthday Girl!

Hello Viewer!!
After long time no post, finally I decided to post something.

Once upon a time (I DON'TT REMEMBER WHEN IT WAS) I met a friend on Facebook. It has happened since 2 years I ago, I guess. Till now, we never met each other.
Yesterday, this girl celebrated her birthday. So last night I decided to make this for her.
So simple, but hope she will like it. 
Alles Gute zum Geburstag DITA EKA OCTALINA!!

And this quote I hope will make you feel better.
Taken from Daily Bread a years ago
JBU Dear

Ketika tujuan hidup kita adalah untuk memuliakan Tuhan, Dia menuntun dan menjaga setiap langkah yang kita tempuh. Apa pun harapan dan impian kita, ketika kita menyerahkannya dalam tangan Tuhan, kita tahu bahwa segala sesuatu, termasuk kegagalan dan keberhasilan, ada di bawah kendali tangan-Nya. —DCM
Kala kita ungkapkan harapan dan impian kepada Allah
Lalu menyerahkan semua itu ke dalam tangan-Nya,
Kita dapat percaya pada kasih pemeliharaan-Nya atas kita
Untuk menggenapi apa yang telah dirancangkan-Nya. —Sper

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS
Read comments

Basic Programming 4

Tuesday, August 28th. 23:29 (add the time, for more 'GREGET')

Holla hop everyone!!
Finally, touch down “Basic Programming 4”
I am going to continue our last topic. Do you remember??
Correct!! About the operator. I have told you about, arithmetic, increment and decrement operator. There are two operator left, Logic operator, and relations operator.
Relations operator is used to compare two values and to show the connection between them.
Relations operator consist of : >, >=, <, <=, ==(are equal), != (aren’t equal)
This is the example how to use this operator.
public class Relasi
{
public static void main (String [] args)
                {
                int a=10;
                int b=5;




                if (a>b)
                {System.out.print ("Ya, a>b");}
                else
                {System.out.print ("Tidak benar a>b");}
                }
}
 


That the simple explanation about relations operator.

How about this one?
This codes will show us the different between x++ and ++x (our last topic about Decrement and increment)

import java.util.Scanner;
public class Relasi1
{
public static void main (String [] args)
{
                int a;
                System.out.println("Masukkan bilangan 1: ");
                Scanner scan = new Scanner (System.in);
                a= scan.nextInt();
                //Lebih besar sama dengan
                if (a>=++a)
                {
                                System.out.print("True");
                }
                else
                {
                System.out.println("False");
                }
                if (a>=a++)
                {
                                System.out.println("True");
                }
                else
                {
                System.out.println("False");
                }
}

}

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS
Read comments