Kampus D3-Cilibende, Jl. Kumbang,Cilibende

Kampus Diploma IPB-Cilibende.

Kampus S2-S1 Ekstensi BaranangSiang, Jl. Padjajaran

Kampus IPB BaranangSiang.

Kampus Dramaga IPB-S1 Reguler

Kampus Dramaga IPB.

Kampus S3 Gunung Gede

Kampus Gunung Gede S3 MB-IPB, Jl. Padjajaran.

Rektor IPB

Prof. Dr. Ir. Herry Suhardiyanto, Msc.

Senin, 19 Desember 2011

Jadwal UAS INF 1B Manajemen Informatika


  1. Hari Rabu, 4 Januari 2012 : Aplikasi Komputer (Ruang CB K01)
  2. Hari Kamis, 5 Januari 2012 : Bahasa Indonesia (Ruang BS B03)
  3. Hari Jum'at, 6 Januari 2012 : PAI (Ruang CA B03)
  4. Hari Senin, 9 Januari 2012: Probabilitas & Statistika (Ruang CB B05)
  5. Hari Selasa, 10 Januari 2012: Algoritma dan pemrograman (Ruang GG B03)
  6. Hari Rabu, 11 Janurai 2012: Matematika Diskrit (Ruang CA B03)
  7. Hari Kamis, 12 Januari 2012:  Dasar Manajemen Informatika (Ruang CA B03) -> AUTODEBET SPP
  8. Hari Jum'at, 13 Januari 2012: Algoritma & Pemrograman-Praktikum (CB K70)

Selasa, 13 Desember 2011

InsertionSort Bahasa C (versi lain)

#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
void insertionSort(int data[10],int max)
{
     int i,j,temp;
         for(i=1;i<=max;i++)
         {
         temp=data[i];
         for(j=i-1;j>=0;j--)
                            {
                                             if(data[j]>temp)
                                             data[j+1]=data[j];
                                             else break;
                                             }
                                             data[j+1]=temp;
         }
}
main()
{
      const int max=5;
      int i, data[max];
     
      for(i=0;i<max;i++)
      scanf("%d",&data[i]);
     
       printf("\nSebelum\n");
      
       for(i=0;i<max;i++)
       printf("%d ",data[i]);
     
      insertionSort(data,max);
      printf("\nSesudah\n");
      for(i=0;i<max;i++)
      printf("%d ",data[i]);
     
      getch();
      return 0;
}

InsertionSorting plus penjumlahan string yang ada Bahasa C

#include<stdio.h>
#include<stdlib.h>
#include<conio.h>

int main(){

char s[255],k;
int a,j,l;
printf("masukkan string = ");
gets(s);//masukkan string
l=0;//inisialisasi
for (a=1;a<(strlen(s));a++){
j=a;
k=s[a];
while(s[j-1]>k && j>0){s[j]=s[j-1];j=j-1;}
s[j]=k;
}
for(a=0;a<(strlen(s));a++){
printf("%c",s[a]);
}
for(a=0;a<(strlen(s));a++){
if((s[a]=='i') ||( s[a]=='I')){
l=l+1;
}
}
printf("\n");
printf("jumlah huruf I atau i = %d",l);

getch();
return 1;
}

InsertionSorting pada Bahasa C

#include<stdio.h>
#include<conio.h>

void main() {
int i, j, iMin; //Deklarasi index untuk array
int n, Urut; //Deklarasi untuk banyak data
int Tmp; //Tmp penampung elemen array
int Arr[50]; //Deklarasi Array

//Aplikasi dimulai
printf("program by: www.tianissac.blogspot.com\n\n");
printf("Inputkan banyak data yang akan diurutkan : ");
scanf("%i", &n);
//Input array
Urut = 1;
for(i = 0; i < n; i++) { //Perulangan untuk inputan array
printf("Masukan data ke %i : ", i + 1);
scanf("%i", &Arr[i]);
}
//Lakukan sorting ascending dengan metode selection
for(i = 0; i < n - 1; i++) { //n - 1 artinya elm terakhir tidak dihitung
iMin = i; //Set min = index array
for(j = Urut; j < n; j++) { //Lakukan perulangan sebagai pembanding
if(Arr[j] < Arr[iMin]) { //Cari data yang kecil
iMin = j; //min diganti dengan yang lebih kecil
if(Arr[i] != Arr[iMin]) { //Cek untuk data yang berbeda
Tmp = Arr[i]; //Tampung Array yang lama
if(Arr[i] > Arr[iMin]) { //Jika Array lama lebih besar dari yang baru
Arr[i] = Arr[iMin]; //Ganti Array lama dengan Array baru
Arr[iMin] = Tmp; //Ganti Array baru dengan Array lama
}
}
}
}
Urut = Urut + 1; //Tambah urut dengan 1
}
//Tampilkan Hasil
printf("\nSetelah Pengurutan\n");
for(i = 0; i < n; i++) { //Perulangan untuk tampilan Array
printf("Elemen ke %i : %i\n", i + 1, Arr[i]);
}
getch(); //Tahan tampilan
}
2

Peebedaan tracing antara BubbleSorting dan InsertionSorting

Bubble:  (Jumlah Interaksi = n-1)
0 =  5 4 3 2 1
1 =  1 5 4 3 2
2 =  1 2 5 4 3
3 =  1 2 3 5 4
4 =  1 2 3 4 5
Dari atas (Jumlah interaksi = 4)

Insertion:
0 =  5 4 3 2 1
1 =  4 5 3 2 1
2 =  3 4 5 2 1
3 =  2 3 4 5 1
4 =  1 2 3 4 5


Fungsi BubbleSorting pada Bahasa C (Versi Lain)

#include <stdio.h>
#define N 20

int bubble(int n);
int i,j,A[N];

main()
{
int jml;
printf("METODA BUBBLE SORT \n\n");
printf("Masukkan jumlah bilangan (maks 20) : ");
scanf("%d",&jml);
printf("\n");
 
// input data
 
for (i=0;i<jml;i++)
{
   printf("Bilangan ke %d : ",i+1);
   scanf("%d",&A[i]);
}
printf("\n");
 
// mengurutkan data
 
bubble(jml);

// menampilkan data
 
printf("Data yang sudah terurut : \n");
for (i=0;i<jml;i++)
{
   printf("%d\n",A[i]);
}
}

// fungsi bubble

int bubble(int n)
{
int temp;
for (i=1;i<=n-1;i++)
{
   for (j=i;j<n;j++)
   {
               if (A[i-1]>A[j])
               {
                           temp = A[i-1];
                           A[i-1] = A[j];
                           A[j] = temp;
               }
   }
}
   getch();
}

Fungsi SWAP pada BubbleSorting Bahasa C

#include<stdio.h>
#include<conio.h>
#include<stdlib.h>

void swap (int*x, int*y)
{
     int temp;
     temp = *x;
     *x = *y;
     *y = temp;
}

void bubblesort(int list[], int n)
{
     int i,j;
     for(i=0;i<(n-1);i++)
     for(j=0;j<(n-(i+1);j++)
     if(list[j]>list[j+1])
     swap(&list[j],&list[j+1]);
}

void printlist(int list[], list n)
{
     int i;
     for(i=0;i<n;i++);
     }
   
main()
{
      const int max elements =5;
      int list[max_elements];
      int i =0;
      printf("Masukkan data (5 angka):\n");
      for(i = 0; i<max_elements;i++)
      scanf("%d",&list[i]);
     
      printf("\n list sebelum di sorting\n");
      printlist(list,max_elements);
      bubblesort(list,max_elements);
      printf("\nlist setelah di sorting\n");
      printlist(list,max_elements);
     
      getch();
      return 0;
}
         

Selasa, 06 Desember 2011

Jarak antar kedua titik x1, y1, x2, y2 memakai struc


#include<stdio.h>
#include<conio.h>
#include<math.h>

struct{
       int x,y;
}titik[5];

main()
{
      float s;
 printf("Titik 1 : ");
 printf("\n\tx = ");
 scanf("%d",&titik[0].x);
 printf("\n\ty = ");
 scanf("%d",&titik[0].y);
 printf("\nTitik 2 : ");
 printf("\n\tx = ");
 scanf("%d",&titik[1].x);
 printf("\n\ty = ");
 scanf("%d",&titik[1].y);
 s = sqrt(pow((titik[1].x-titik[0].x),2)+pow((titik[1].y-titik[0].y),2));
 printf("\nJarak (%d,%d) dan (%d,%d) = %f",titik[0].x, titik[1].x, titik[0].y, titik[1].y, s);
 getche();
 return 0;  
}

Entri Nilai untuk Struct


#include<stdio.h>
struct data_mahasiswa
{
       char nim[10];
       char nama[30];
       float nilai;
}mahasiswa[10]; //cara pertama menuliskan variabel dari struct data_mahasiswa
//struct data_mahasiswa mahasiswa; //cara kedua menuliskan variabel dari struct data_mahasiswa

main()
{
      int i, j, n;
      printf("Masukkan banyak data : ");
      scanf("%d",&n);
      for (i=0;i<n;i++)
      {
          printf("Masukkan data ke %d\n",i+1);
          printf("Masukkan NIM: ");
          scanf("%s",&mahasiswa[i].nim); //ambil nIM dari struct data_mahasiswa
          printf("Masukkan Nama: ");
          scanf("%s",&mahasiswa[i].nama);
          printf("Masukkan Nilai: ");
          scanf("%f",&mahasiswa[i].nilai);
          printf("\n");
          }
      for (j=0;j<n;j++)
      {
          printf("\n\nNIM: %s\n",mahasiswa[j].nim);
          printf("Nama: %s",mahasiswa[j].nama);
          printf("\nNilai: %f",mahasiswa[j].nilai);
          }
      getche();
      return 0;
}

PENGENALAN STRUCT pada Bahasa C


#include<stdio.h>
struct data_mahasiswa
{
       char nim[10];
       char nama[30];
       float nilai;
}mahasiswa; //cara pertama menuliskan variabel dari struct data_mahasiswa
//struct data_mahasiswa mahasiswa; //cara kedua menuliskan variabel dari struct data_mahasiswa

main()
{
      printf("Masukkan NIM: ");
      gets(mahasiswa.nim); //ambil nIM dari struct data_mahasiswa
      printf("Masukkan Nama: ");
      gets(mahasiswa.nama);
      printf("Masukkan Nilai: ");
      scanf("%f",&mahasiswa.nilai);
    
      printf("\nHasilnya \n");
      printf("NIM :%s\n",mahasiswa.nim);
      printf("Nama :%s\n",mahasiswa.nama);
      printf("Nilai :%.2f\n",mahasiswa.nilai);
      getche();
      return 0;
}

Selasa, 29 November 2011

Permainan Karakter String with Array+For

/*input:
      sebuah kata dengan jumlah huruf diketahui
output:
       per huruf

misal
input:
      jumlah huruf?
      teks : Algoritma
output:
       A
       AL
       ALG
       ALGO
       ALGOR
       ALGORI
       ALGORIT
       ALGORITM
       ALGORITMA
*/

#include<stdio.h>
main()
{
      char teks[9];
      int i,n,j;
      printf("Jumlah Karakter: ");
      scanf("%d",&n);
      printf("Masukkan teks: ");
      scanf("%s",teks);
      for(i=0;i<n;i++)
      {
                      for(j=0;j<=i;j++)
                      {
                      printf("%c",teks[j]);
                      }
                      printf("\n");
                      }
                      getche();
}

Array of Character


/* String = array of character

char namaVariabel[jumlahElemen];
example:
        char[10];
        akan menampung karakter sampai 9 buah. Karena karakter terakhir berisi ('\0') atau null.

inisialisasi:
             char kota[6]={'b','o','g','o','r','\0'};
             char mkota[6]="bogor";

output:
       printf("Kota : %s",kota); -----------> outputnya bogor
       printf("%c",kota[2]);------------------> outputnya g
*/

#include<stdio.h>
main()
{
      char nama[20];
      printf("Nama Anda : ");
      scanf("%s",nama);
      printf("Hai %s apa Kabar?",nama);
      getche();
      return 0;
}


Bandingkan outputannya dengan script di bawah ini:

#include<stdio.h>
main()
{
      char nama[20];
      //printf("Nama Anda : ");
      //scanf("%s",nama);
      puts("Nama Anda: ");
      gets(nama);
      printf("Hai %s apa Kabar?",nama);
      getche();
      return 0;
}


Mencari nilai minimum & maksimum menggunakan array


/*Buatlah program untuk menentukan nilai elemen minimum dari sebuah
array.
contoh:
       Terdapat sebuah array dengan nilai setiap elemennya adlah  sebagai berikut :
                2      4     6      8     10
       Maka program yang akan Anda buat nanti akan menghasilkan output sbb=
       Nilai minimum = 2
       Nilai Maksimum = 10
*/

#include <stdio.h>
#include <conio.h>
#define n 20
main()
{
      int b,nmaks,nmin,a[n],i;
      printf("Masukkan nilai maksimum 10: ");
      scanf("%d",&b);
      for(i=0;i<b;i++)
      {
      printf("Bilangan ke-%d: ",i+1);
      scanf("%d",&a[i]);
      }
      nmin=a[0];
      for(i=1;i<b;i++)
      {
                      if(nmin>a[i])
                      nmin=a[i];
                      }
      nmaks=a[0];
      for(i=1;i<b;i++)
      {
                      if(nmaks<a[i])
                      nmaks=a[i];
                      }
      printf("Nilai minimum : %d",nmin);
      printf("\nNilai Maksimum : %d",nmaks);
      getche();
      }

Menjumlahkan dua Matriks


/*Buatlah Program untuk menjumlahkan 2 matriks persegi.
Input :
      Masukkan Dimensi Matrik(1-10) = 2
      Matiks Pertama :
             Baris ke-1:
                   Elemen [1][1]=1
                   Elemen [1][2]=2
             Baris ke-2:
                   Elemen [2][1]=3
                   Elemen [2][2]=4
      Matriks Kedua:
              Baris Ke-1:
                    Elemen [1][1]=5
                    Elemen [1][2]=6
              Baris ke-2:
                    Elemen [2][1]=7
                    Elemen [2][2]=8
    
Proses :
Matriks Pertama + Matriks Kedua = Matriks Hasil
1       2       5         6       6         8
3       4       7         8       10        12
      
Output :
      
       Hasil Penjumlahan MAtriks Pertama
       Dengan Matriks Keddua Adalah:
              6       8
              10      12*/
            
#include<stdio.h>
#define n 10
main()
{
      int a[n][n],b[n][n],c[n][n],d,i,j; //a & b--> Inputan sedangkan c--> Hasil Outpit
      //input dimensi
      printf("Masukkan Dimensi Matriks (1-10): ");
      scanf("%d",&d);
    
      //input elemen matriks pertama
      printf("\nMatriks Pertama : ");
      for(i=0;i<d;i++)
      {
                      printf("\nBaris ke-%d\n",i+1);
                      for(j=0;j<d;j++)
                      {
                                      printf("\tElemen [%d][%d] : ",i+1,j+1);
                                      scanf("%d",&a[i][j]);
                      }
                      }
    
    
      //input elemen matriks kedua
      printf("\nMatriks Kedua : ");
      for(i=0;i<d;i++)
      {
                      printf("\nBaris ke-%d\n",i+2);
                      for(j=0;j<d;j++)
                      {
                                      printf("\tElemen [%d][%d] : ",i+1,j+1);
                                      scanf("%d",&b[i][j]);
                      }
                      }
    
    
      //proses menjumlahkan matriks
      for(i=0;i<d;i++)
      for(j=0;j<d;j++)
      c[i][j]=a[i][j]+b[i][j];
    
      //output
      for(i=0; i<d; i++)
      {
      printf("\n");
         for(j=0; j<d; j++)
            printf("%d\t ", c[i][j]);
      }
    
      system("pause");
}

Selasa, 15 November 2011

Call By Value dan Call by Reference

Call By Value:

#include<stdio.h>
#include<conio.h>
main()
{
      int bil,pang,hasil;
      printf("Masukkan bilangan yang akan Anda pangkatkan: ");
      scanf(" %d",&bil);
      printf("Masukkan bilangan yang akan menjadi pangkat: ");
      scanf(" %d",&pang);
      hasil=perpangkatan(bil,pang);
      printf("Hasil perpangkatan %d dari %d = %d",bil,pang,hasil);
      getche();
}
int perpangkatan(int bil, int pang)
{
    if (pang==1)
    return bil;
    else
    return bil*perpangkatan(bil,pang-1);
}
  
Dengan output
a=5
b=15

Call By Reference:
int incr10(int *x){
    *x=*x+10;
    return *x;
}

int main(){
    int a,b;
    a=5;
    b=incr10(&a);
    printf("a = %d\n",a);
    printf("b = %d\n",b);
    getche();
    return 0;
}

Dengan Output:
a=15
b=15

Perpangkatan


#include<stdio.h>
#include<conio.h>
main()
{
      int bil,pang,hasil;
      printf("Masukkan bilangan yang akan Anda pangkatkan: ");
      scanf(" %d",&bil);
      printf("Masukkan bilangan yang akan menjadi pangkat: ");
      scanf(" %d",&pang);
      hasil=perpangkatan(bil,pang);
      printf("Hasil perpangkatan %d dari %d = %d",bil,pang,hasil);
      getche();
}
int perpangkatan(int bil, int pang)
{
    if (pang==1)
    return bil;
    else
    return bil*perpangkatan(bil,pang-1);
}
  

Faktorial dalam Bahasa C

Untuk Koding Sederhana:


#include<stdio.h>
int main()
{
    int hasil=1,bil;
    printf("Masukkan bilangan faktorial: ");
    scanf(" %d",&bil);
    int i;
    for(i=1;i<=bil;i++)
    {
                       hasil=i*hasil;
                       }
                       printf("Hasil %d! = %d",bil,hasil);
                       system("pause");
}

Untuk modifikasi Koding :
#include<stdio.h>
int main()
{
    int hasil=1,bil;
    printf("Masukkan bilangan faktorial: ");
    scanf(" %d",&bil);
    hasil=faktorial(bil);
                       printf("Hasil %d! = %d",bil,hasil);
                       system("pause");
}

int faktorial(bil_f)
{
    int i,hasil_f=1;
    for(i=1;i<=bil_f;i++)
    {
                       hasil_f=i*hasil_f;
                       }
    return hasil_f;
}

Selasa, 08 November 2011

If dalam fungsi


/*
Buat sebuah program untuk menghitung besarnya diskon yang diberikan atas sejumlah pembelian.
Ketentuan yang berlaku adalah sebagai berikut:
          (1) Belanja dibawah Rp 100.000 tidak dapat diskon
          (2) Belanja mulai Rp 100.000 sampai Rp 500.000 mendapatkan diskon 10%
          (3) belanja lebih dari Rp. 500.000 dapat diskon 15%.

Program yang Anda rancang harus terdiri dari 2 fungsi yaitu main() dan potong().
Besarnya belanja diinputkan di fungsi main().
Data belanja diteruskan ke fungsi potong() untuk dihitung besarnya diskon yang didapatkan.
Besarnya uang yang harus dibayar dihitung di fungsi main().

Sebagai output:
        Total Belanja         :.....
        Diskon                :.....
        Uang yang dibayar     :.....
      
*/

#include<stdio.h>
#include<conio.h>
float potong(float Total_Belanja);

main()
{
      float Total_Belanja,Diskon,Uang_Bayar;
    
      printf("Total Belanja\t: Rp. ");
      scanf("%f",&Total_Belanja);
    
      Diskon=potong(Total_Belanja);
      Uang_Bayar=Total_Belanja-Diskon;
    
      printf("\nDiskon\t\t: %.2f",Diskon);
      printf("\nUang Bayar\t:Rp. %.2f",Uang_Bayar);
    
      getche();
      return 0;
}
float potong(float Total_Belanja)
{
      float Diskon;
    
      if(Total_Belanja<100000)
      {
      Diskon=0;
                   }
      else if(Total_Belanja<500000)
      {
      Diskon=0.1;
      }
      else
      {
      Diskon=0.15;
      }
      return Diskon*Total_Belanja;
}

Penggunaan Protype


#include<stdio.h>
float luas(float);//prototype : rancangan dari fungsi (sunnah)


main()
{
      //variabel Lokal
    float luas_a,sisi;
  
    //Mencetak Variabel Lokal
      printf("\nSisi Bujur Sangkar=  ");
      scanf(" %f",&sisi);
    
    //menyimpan nilai fungsi ke dalam suatu variabe
    luas_a=luas(sisi);
  
    //Mencetak variabel lokal
    printf("\n\n Luas Bujur Sangkar = %10.2f\n",luas_a);
  
  
    getche();
    return 0;
}

//Fungsi menentukan luas bujur sangkar
float luas(sisi_b)
float sisi_b; //tipe data untuk argumen
{
      //Variabel Lokal
      float luas_b;
    

      luas_b=sisi_b*sisi_b;
      return(luas_b);
}

Contoh Permainan Fungsi dengan 1 argumen



#include<stdio.h>
//Variabel Global
int i=10;

main()
{
      //variabel Lokal
    float luas_a,sisi;
  
    //Mencetak Variabel Lokal
      printf("\nSisi Bujur Sangkar=  ");
      scanf(" %f",&sisi);
    
    //menyimpan nilai fungsi ke dalam suatu variabe
    luas_a=luas(sisi);
  
    //Mencetak variabel lokal
    printf("\n\n Luas Bujur Sangkar = %10.2f\n",luas_a);
  
    //Mencetak Variabel Global untuk pembuktian bisa/tidak di cetak di fungsi main
    printf("\nCetak nilai i pada fungsi main= %d",i);
  
    getche();
    return 0;
}

//Fungsi menentukan luas bujur sangkar
luas(sisi_b)
float sisi_b;
{
      //Variabel Lokal
      float luas_b;
    
      //Mencetak Variabel Global untuk pembuktian bisa/tidak di cetak di fungsi luas
      printf("\nCetak nilai i pada fungsi luas= %d",i);
      luas_b=sisi_b*sisi_b;
      return(luas_b);
}


mennetukan luas bujur Sangkar dengan permainan fungsi di Bahasa C


/*
Buatlah program menggunakan fungsi
Program untuk menghitung luas bujur sangkar
Input
     Sisi:.....

Output
      Luas:....
*/

#include<stdio.h>
int main()
{
    float luas_bujursangkar;
  
    /*menyimpan nilai fungsi ke dalam suatu variabe*/
    luas_bujursangkar=luas();
  
    printf("\n\n Luas Bujur Sangkar = %10.2f",luas_bujursangkar);
  
    getche();
    return 0;
}

/*Fungsi menentukan luas bujur sangkar */
luas()
{
      float sisi,luas_bujursangkar;
      printf("Sisi Bujur Sangkar=  ");
      scanf(" %f",&sisi);
      luas_bujursangkar=sisi*sisi;
      return(luas_bujursangkar);
}



/*Bisa penjelasan sebagai berikut:
#include<stdio.h>
//Variabel Global
int i=10;

main()
{
      //variabel Lokal
    float luas_a;
  
    //menyimpan nilai fungsi ke dalam suatu variabe
    luas_a=luas();
  
    //Mencetak variabel lokal
    printf("\n\n Luas Bujur Sangkar = %10.2f",luas_a);
  
    //Mencetak Variabel Global untuk pembuktian bisa/tidak di cetak di fungsi main
    printf("Cetak nilai i pada fungsi main= %d",i);
  
    getche();
    return 0;
}

//Fungsi menentukan luas bujur sangkar
luas()
{
      //Variabel Lokal
      float sisi,luas_b;
    
      //Mencetak Variabel Lokal
      printf("Sisi Bujur Sangkar=  ");
      scanf(" %f",&sisi);
    
      //Mencetak Variabel Global untuk pembuktian bisa/tidak di cetak di fungsi luas
      printf("Cetak nilai i pada fungsi main= %d",i);
      luas_b=sisi*sisi;
      return(luas_b);
}
*/

Output Koding Pertama:

Output Koding Kedua:

FUNGSI PADA BAHASA C


/*struktur fungsi

main()
{
    
}

argumen untuk menampung nilai-----> argumen berisi di dalam kurung ()

contoh :
       main()
       {
             int nilai1,nilai2,hasil;
             hasil-nilai1+nilai2;-----> jika tidak ada argumen (tidak perlu)
             printf("Hasilnya adalah : %d".hasil);
             cetak(hasil);
             system("pause");
             }
definisi fungsi
int tambah(x,y)
{
    return x+y;
}

fungsi dengan 1 argumen:
       cetak(z)
       {
               printf("Hasilnya adalah: %d",hasil);
               system("pause");
               }
              
fungsi tanpa argumen
hello()
{
       printf("Hello World\n");
       system("pause");
}
  fungsi---->
  mendefinisikan fungsi
  namafungsi(argumen1,argumen2,)
  {
                                perintah;
                                perintah;
   }                                      




NOTE: JIKA ADA PERTANYAAN AJUKAN SAJA SAMA SAYA :D

Sabtu, 05 November 2011

alasan kenapa tidak boleh mengulang mata kuliah


TIPS MAHASISWA : 10 ALASAN KENAPA KAMU SEBAIKNYA JANGAN SAMPAI “MENGULANG MATA KULIAH!!”

oleh Katalis Corp New Directions pada 02 Oktober 2011 jam 2:24
  1. Belajar materi kuliah yg sama dg adik angkatan yg lebih muda akan menimbulkan rasa minder yg tinggi & antusiasme belajar lebih rendah.
2.  Orang tua akan menilai kamu kurang serius menjalani kuliah di IPB padahal mereka berharap banyak dari kamu.

3.  Pemborosan uang! mengulang mata kuliah artinya menambah beban sks di tahun berikutnya yang artinya menambah biaya kuliah (blm kalau tugas etc berbiaya juga). Apalagi kalau kamu memutuskan mengulang di semester pendek biasanya biaya SKS-nya sampai 3kali lipat lebih mahal daripada semester reguler.

4.  Pemborosan waktu, seharusnya kamu bisa meluangkan waktu kamu untuk kegiatan non-akademik, tapi terkuras karena kuliah semakin padat dan beban tugas/UTS/UAS pun bertambah.

5.  Dengan mengulang 1 mata kuliah saja, artinya gelar cumlaude lepas dari tangan kamu meski nilai yang lain bagus.

6.  Meski IPK bukan segalanya untuk sukses, tapi bayangkan : saat ini semakin banyak yang akademik bagus tapi softskill bagus. kalau keduanya bisa kenapa harus mengorbankan akademik. Point ini penting untuk yg suka berbisnis atau organisas

Kamis, 03 November 2011

Festival Nasyid Nusantara IPB


Persyaratan Lomba FNN (Festival Nasyid Nusantara)-IPB
  1. 1 tim terdiri dari 3 – 6 orang (laki-laki, muslim), Usia 16 – 25 tahun;
  2. Tim nasyid yang mengikuti festival belum pernah membuat/ mengeluarkan album;
  3. Mengirimkan rekaman 1 lagu nasyid bebas (boleh hasil kreasi sendiri) dalam bentuk video (audio visual) berdurasi maks. 6 menit, tanpa menggunakan rekayasa studio rekaman. Karya diterima paling lambat tanggal 17 November 2011 (cap pos kilat) ) ke alamat Panitia IPB Islamic Festival (IIF) 2011 (Jalan Tanjung No.2 Asrama Masjid Al-Hurriyyah IPB Dramaga, Bogor 16680, Telp: (0251) 8621748);
  4. Atau Upload di Youtube dengan menyertakan keterangan  : nama Grup, Alamat  Grup, Cp Grup_link Youtube_akunFB, dan lama berdiri. Link di sms-kan ke PJ FNN : Yulinda (085297340975);
  5. Karya yang berupa video rekaman merupakan hasil live recording dan bukan hasil rekayasa rekaman;
  6. Penampilan nasyid merupakan acapella (tidak menggunakan minus one, music, ataupun alat instrument lainnya);
  7. Setelah mengirimkan karya dsb, wajib melakukan konfirmasi ke panitia FNN: Yulinda (085297340975);
  8. Seleksi terdiri dari dua tahap, yaitu penyisihan dan final;
  9. Hasil seleksi tahap awal akan diumumkan melalui blog IIF 2011 http://iif.event.ipb.ac.id dan dihubungi langsung ke ketua tim via sms pada tanggal 21 November 2011;
  10. Dari babak penyisihan akan diambil 20 tim yang berhak tampil secara live di final yaitu di acara “Festival Nasyid Nusantara (FNN)” pada tanggal 26 November 2011 di Kampus IPB Dramaga, Bogor;
  11. Seluruh biaya akomodasi ke tempat pelaksanaan final ditanggung oleh peserta final;
  12. Peserta final wajib hadir di Technical Meeting yang tanggal dan  tempatnya  akan diberitahu kemudian;
  13. Setiap peserta final dikenakan biaya sebesar Rp 70.000,00 per tim;
  14. Juara 1,2,3 berhak tampil di acara puncak IPB Islamic Festival (IIF) yaitu di “Spirit of Live Music Concert (SOL-MC)”;
  15. Keputusan dewan juri (Asosiasi Nasyid Nusantara dan Bogor Nasheed Centre) bersifat mutlak dan tidak dapat diganggu gugat;
  16. Tidak sedang terikat kontrak dengan label manapun, dengan membuat surat pernyataan bahwa ketika mengikuti festival ini dan jika nanti menjadi pemenang, peserta tidak sedang dalam ikatan kontrak dengan label rekaman manapun.

Hari, Tanggal: Sabtu, 26 November 2011

WaktuKegiatanDeskripsi kegiatan
07.00-07.30Registrasi pesertaAkomodasi peserta dari penginapan ke AHN
Backsound nasyid diputar di AHN
07.30 – 07.40Pembukaan oleh MCMC : Bogor Nasyid Center (BNC)
07.40 – 07.50TilawahTilawah
07.50 – 08.00SambutanSambutan dari ketua panitia sekaligus membuka FNN
08.00 – 08.10Prkenalan dari dewan juri
+ pengarahan teknis lomba
Dewan juri : BNC, Agriaswara, Asosiasi Nasyid Nasional
08.10 – 11.55Festival nasyidPenampilan 10 tim nasyid dan komentar juri
11.55- 12.40ISHOMASholat dan Makan
12.40 – 13.10Penampilan bintang tamuJustice voice
13.10 – 15.00Festival nasyidPenampilan 5 tim nasyid + komentar juri
15.00 – 15.30Sholat ashar 
15.30 – 17.20Festival nasyidPenampilan 5 tim nasyid + komentar juri
17.20 – 17.35Penampilan bintang tamuPenampilan perkusi dari Smart excelensia
17.35 – 17.45Pengumuman pemenangPengumuman pemenang oleh juri
Pemberian hadiah pada SOL MC
17.45 – 17.55PenutupanPengumuman
 

Rabu, 02 November 2011

Nikmati Jazz di Bulan Bahasa

CINTAI BANGSAMU, CINTAI BAHASAMU : BAHASA INDONESIA

Hadirilah GEMPITA BULAN BAHASA....
Meliputi:
  1. Teater
  2. Seni Tradisional
  3. Musikalisasi Puisi
  4. Konser Jazz
Dihadiri oleh para pakar Bahasa Indonesia, salah satunya ialah Ivan Lanin-Pendiri Wikipedia, Editor Google Bahasa Indonesia.
Dimeriahkan oleh : rumah kata Bogor, calung grobog, bale seni budaya puncak.

Di Jl. Pandu Raya Indrapasta 2 Bogor Utara.
Pada tanggal 4 November 2011.
Pukul 13.00-22.00 WIB

Kontak Panitia:
  1. Limanov (0251-3680855)
  2. Ifan Musyarief (081383469998)
  3. Erfano (0852172662404)

IT Competition by UNY

Photo Competition by POS INDONESIA





POS INDONESIA PHOTO CONTEST 2011 - Competition Photo Pos Indonesia Activities & Services in the country
PT Pos Indonesia (Persero) in collaboration with APC Institute invites the friends to collaborate on the program:
POS INDONESIA PHOTO CONTEST 2011Photo Contest Activities & Services Pos Indonesia in the country
THEMESTransformation Pos Indonesia
OBJECT PHOTOSObject images are all the activities and services throughout Pos Indonesia country. Entries are expected to reflect the spirit of change, optimism & good wishes for the continuation of Pos Indonesia in the future.
PHOTO CONTEST PRIZESWinner to-1Trophy & Cash Rp 15.000.000, -
Winner of the 2ndTrophy & Cash Rp 10.000.000, -
Winner of the 3rdTrophy & Cash Rp 7,000,000 -
Hope championTrophy & Cash Rp 2.500.000, - (2 winners)
Champion FavoritesTrophy & Cash Rp 500.000, - (20 winners)
* Tax borne by the prize winner
BOARD OF JUDGESDudi Sugandi (Photo Journalist Newspapers Mind)Galih Sedayu (APC Photographers & Management Institute)Jay Subiyakto (Artistic Director & stylist)Oscar Motuloh (Reuters Journalism Photo Gallery Curator)
LIMIT END PHOTO COLLECTIONThursday, December 1, 2011 (postmark)
SUPPORT PROGRAMCHIP Photo & VideoPeople's minds
CONDITION RACE PHOTOSPhoto contest is open to the general public throughout Indonesia.
Participants are not charged race (free).
The work that is sent in the form of hardcopy photos / 8R size prints (20 x 25 cm) or 8RP (20 x 30 cm) along with the softcopy files JPG format (minimum resolution of 2000 pixels longest) are saved into a CD.
Behind the work of the data written in the form of mandatory photo photo titles, captions, full name, address, phone / email & phone of each participant.
Photos submitted works can be color or black and white photographs and the number of photos submitted by each applicant is free.
Digital Sports is allowed as long as no increase or decrease the image in a photograph.
Delivery of entries to the committee shall use the Special Quick Service Pos Indonesia.
Works Photo & File Photo CD is inserted into a sealed envelope and on the back of the envelope was written the name, address, telephone and addressed to:
POS INDONESIA COMMITTEE PHOTO CONTEST 2011APC InstituteSurapati Core Block M32PHH.Mustofa Road 39Bandung 40 192
The photo entry will not be returned by the committee / Pos Indonesia but the copyrights of photographs remain the property of the photographer.
The committee reserves the right to use winning entries for promotional purposes & publications for 2 years.
For participants who became the winner of the photo contest shall send the photo file in the form of hi-res, a copy of an affidavit of identity and ownership of the photos before giving out the work done.
Judging the photo contest held in Bandung on Friday the 9th of December 2011.
Announcement of the winner's photograph can be seen in www.apc-institute.com on Sunday, December 11, 2011.
Jury's decision is absolute, legitimate & inviolable

Essay Competition by UNAIR

One of schedule of  “GebyarAcSES Satu Dasawarsa” event. This is Essay Competition National where Essay with the theme of “Inovasi produk syariah dalam Upaya Pengembangan sektor riil”.


This Competition is show up the student's talent of writing event and ideas in part of economy, regulation, culture, etc. for made a product/idea/solutif concept that don't conflict with syariah ruler to increase of rill sector develop. The student have to write their ideas in the paper be essay. 


All student of university from Indonesia can be participant in this competition. Implementation of competition are 3 parts. That are solicitation, announcement, and final. The deadline time of accumulation of essay is November 21th 2011. 


If you wanna know more look at that http://www.rnborganizer.com/index.php?view=article&catid=38:info-lomba&id=311:essay-fiesta-national-2011-&option=com_content&Itemid=86

Accounting & Business Competition by BINUS


Definition:
D’abc is a prestigious accounting competition held annually by Bina Nusantara International University; an iconic event organized by the Accounting Student Club (ASC) and supported by the Student Committee. In its 7th year of existence, D’abc comes with a new fresh concept: “Challenge Your Excellence”. Embodied in this concept is the intention to encourage students to challenge themselves, to give out the best in each of their capabilities and competence, to move one step further beyond their excellence; by being a part of an internationally-based accounting competition.
D’abc 2012: Challenge Your Excellence aims to broaden students’ accounting comprehension, sharpen their analytical skill in problem solving, as well as foster good interrelationship among various high school and university students—not only to enrich their academic experiences, but also to build their competitive and champion mentality. 

Concept:
GENERAL RULES AND REGULATIONS
1. Each high school / university can send more than one (1) team to compete, with a maximum of three (3) teams.
2. Each high school / university is allowed to send a teacher to accompany and support the team(s).
3. Each team consists of three (3) students from the same school / three (3) students from the same university majoring in Accounting.
4. Only teams who have registered during the registration period and/or on the technical meeting day are eligible to join the competition.
5. Each team members should bring their ID tags during the competition days, which will be distributed at the first day of the competition.
6. Each participant should wear a collar-shirt or proper and neat clothes, long pants for men, and knee-length skirt (no mini-skirt) for women, or school uniform ( for high school).
7. Each participant should wear an almamater jacket with near outwear (for university students).
8. Maximum tolerate time for lateness is 15 minutes.
9. Should there be a team who is late more than 15 minutes, they still can attend the competition with permission from the head of the competition AND liaison officer. Thus, there will be no additional time.
10. Should there be a team member who cannot attend the competition, he/she can be replaced, with early notification to the committee and approval from the head of the competition. In addition, the substitute participant should continue the rest of the competition and cannot be replaced.
11. Should there be a team member who is late to enter the competition room (more than 15 minutes after the competition begin), the rest of the team members are still allowed to compete, and hence he/she is not allowed to participate in the competition. And the team member who did late to attend the competition is still allowed to join the competition in the next level if the other two members go to the next level.
12. Each team has to come 30 to 60 minutes before the competition to fulfill registration requirements.
13. The team that is late for registration will be disqualified, unless giving confirmation to the competition division or liaison officer.
14. Participants have to bring their own stationery. The committee only provides scratch paper for the calculations. They cannot borrow anything from other teams.
15. Participants are not allowed to bring a scientific or programmable calculator during the competition.
16. Participants are not allowed to bring any note, book and/or other resource into the competition room. All belongings that are prohibited have to be kept inside their bags.
17. All bags should be left in front of the competition room; they will be guarded by the committee members.
18. Participants are allowed to bring communication and electronic devices (e.g. cell phone, PDA, pager, etc.) but they have to deactivate it during in the competition room. Or they should be kept in their bag or placed on the table.
19. Participants are not allowed to cheat or perform any misappropriate conduct throughout the competition.
20. Participants are not allowed to talk to other teams during the competition.
21. If the committee find any form of cheating and other misappropriate conduct by any team member before, during and after the competition, thus the team will be disqualified.
22. Participants are not allowed to disrupt the competition process.
23. Participants and proctor are not allowed to leave the room during the competition.
24. Participants may bring their own medication with the brand or any information from doctors attached to the medicine package.
25. Participants are prohibited to litter, to damage or to vandalize the building with all of its facilities. If the committee finds any such activities, the team will be disqualified.
26. Participants are prohibited to smoke anywhere inside the JWC area except in the smoking room, which is located in the back lobby.
27. Should there be any participant who does not follow the rules and regulation, the committee has the right to disqualify the team before or during the competition.
28. All decisions that have been made by the judges are absolute and cannot be overruled or changed.
29. All rules and regulation that have not been presented above will be discussed during the technical meeting.
30. Representative from team(s) or school must attend the technical meeting.
31. The committee guarantees that all of the materials will be kept confidential and give a 100% assurance for the competency of the solutions.

Accomodation:
  1. Standard Single ---> IDR 310.000-IDR 270.000 (After Discount)
  2. Standard Twin --> IDR 390.000-350.000 (After Discount)
  3. Superior Twin --->  IDR 425.000
  4. Deluxe -->  IDR 525.000
Competition:
Time

Friday - Saturday, Febuary,17-18th 2012

Venue
The Joseph Wibowo Center for Advanced Learning
Jl. Hang Lekir I No. 6
KebayoranBaru, JakartaSelatan 12120


Prize

University :
1st Place : USD 1000
2nd Place : USD 750
3rd Place : USD 500

Registration:

Contact Person:
DABC 2012 
e-Mail : dabc2012@gmail.com 
Website : www.binus-dabc.com

Share

Twitter Delicious Facebook Digg Stumbleupon Favorites More