This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Senin, 24 November 2014

Pengantar TI - Empressr Aplication Web-Based Online

Tutorial Pembuatan Presentasi Online Menggunakan Empressr

1. Buka situs empressr.com
2. Masuk akun anda atau jika belum memiliki akun empressr maka dapat mendaftar terlebih dahulu
a. Masuk akun anda, atau







b. Daftar akun baru


c. Masukan data diri anda sesuai borang pendaftaran








3. Jika sudah, untuk memulai pembuatan pilih Create New






4. Untuk pembuatan presentasi baru pilih Start with a Blank Page







5. Presentasi sudah dapat mulai dibuat







6. Berikut toolbar yang tersedia di jendela empressr
    a. toolbar bagian atas berisi: file, edit, preview, share, master properties, dan zoom








   b. toolbar sebelah kiri berisi: add, copy, delete, dan setting















c. toolbar sebelah kiri berisi: text, shape, table, dan chart












d. toolbar bagian bawah berisi: library, upload, import, record









sekian. semoga bermanfaat ~

Minggu, 16 November 2014

Algoritma dan Pemrograman - Matriks



Tutorial pembuatan program menggunakan aplikasi Code Block Bahasa C
Program yang akan saya buat adalah sebuah matriks dimana pada bagian diagonal bernilai 0 sedang vertikal dan horisontalnya bernilai 1, seperti gambar berikut: 










Pembuatan  program tersebut menggunakan perintah “looping dalam looping” disertai fungsi “if else” . Berikut langkah-langkahnya:

  1.  Buka aplikasi Code Block











  2.           Buat project baru dengan perintah “ file-new-project” pilih “console aplications” lalu “go”.











    3.    Pilih “C” sebagai bahasa yang akan digunakan lalu masukan nama folder penyimpanannya lali ikuti langkah selanjutnya hingga muncul tampilan sebagai berikut :
     













    4.    Tuliskan scriptnya sebagai berikut:
      int main()
      {
        int i, j, a[5][5];
        printf("       \t\tMATRIKS\n\n");
        for(i=0;i<5;i++)
        {
            for(j=0;j<5;j++)
            {
                if(i==j)
                {
                    a[i][j]=0;
                }
                else
                {
                    a[i][j]=1;
                }
                printf("%6d\t",a[i][j]);
            }
            printf("\n");
        }
        return 0;
     }
    berikut gambarnya:













    5.      Lalu jalankan program dengan perintah “built and run”.
    6.      Lalu akan tampil program yang telah kita buat seperti berikut: 
      
    selesai dan selamatt mencoba, semoga bermanfaat :)