Senin, 05 Desember 2011

resume seminar " TELKOMSEL cloud computing"

all about cloud is global interview.
keuntungan yang didapat cloud computing adalah :
1. orang tidak perlu lagi datang ke provider
2. orang tidak perlu lagi membangun jariangan sendiri dalam waktu yang lama
3. orang tidak perlu lagi membangun infrastruktur fisik
4. orang tidak perlu lagi membeli perangkat-perangkat teknologi dengan kapasitas yang cukup besar.
dalam hal ini sebagai pengiriman model komputasi menjadi lebih populer untuk memperluas pelayanannya, sehingga diharapkan akan ada peningkatan jumlah vendor dalam penggunaan " cloud computing "
beberapa point of departure dari cloud computing dalam segi industri adalah:
a. acces centric
b. walled gardens
c. dumb pipe
d. comoditization of networks
dalam as[ek dari point of arrival adalah :
a. user centric of services
b. global, cloud-based services
c. intelligent preference network
d. full value for network assets

resume seminar " PERANAN DAN PELUANG ILMU KOMPUTASI DALAM ERA KONVERGENSI"

kecerdasan adalah kemampuan sistem untuk beradaptasi perilaku untuk memenuhi tujuannya dalam berbagai lingkungan, dan salah satu tinjauan dalam mengambil keputusan. sedangkan arti dari kecerdasan komputasi adalah metodologi yang melibatkan komputasi yang menunjukkan kemampuan untuk belajar dan atau menghadapi situasi baru, seperti sistem yang dianggap memiliki satu atau lebih atribut dari alasan seperti generalisasi, penemuan, asosiasi, dan abstraksi..
peranan dan peluang kecerdasan komputasi yaitu sebagai pemecah masalah, bahan penalaran, pertimbangan, dan prediksi, serta pelatihan implementasi dan aplikasi. 
salah satu contoh pemanfaatan ilmu komputasi di era konvergensi adalah prototipe sistem pendeteksian dini penyakit jantung (heart disease) berdasarkan sinyal EKG (elektrokardiogram) menggunakan algoritma FUZZY LEARNING VECTOR QUANTIZATION.
alur kerja sistem diatas adalah : pertama detak jantung manusia diukur / diketahui polanya menggunakan alat EKG (elektrokardiogram), kemudian dalam pemrosesan data dikirim melalui piranti cerdas yang terlebih dahulu data analog tersebut diubah ke digital, serta pengklasifikasian pola detak jantung, kemudian akan keluar outputan dari alur diatas yaitu visualisasi data mentah, hasil klasifikasi detak jantung, serta hasil analisis detak jantung. 

Jumat, 30 September 2011

macam operator

source :
http://www.tutorialspoint.com/ansi_c/c_operator_types.htm


*bitwise operators



OperatorDescriptionExample
& Binary AND Operator copies a bit to the result if it exists in both operands. (A & B) will give 12 which is 0000 1100
| Binary OR Operator copies a bit if it exists in eather operand. (A | B) will give 61 which is 0011 1101
^ Binary XOR Operator copies the bit if it is set in one operand but not both. (A ^ B) will give 49 which is 0011 0001
~ Binary Ones Complement Operator is unary and has the efect of 'flipping' bits. (~A ) will give -60 which is 1100 0011
<< Binary Left Shift Operator. The left operands value is moved left by the number of bits specified by the right operand. A << 2 will give 240 which is 1111 0000
>> Binary Right Shift Operator. The left operands value is moved right by the number of bits specified by the right operand. A >> 2 will give 15 which is 0000 1111
 * Binary Operator

* Assignment Operators :

OperatorDescriptionExample
=Simple assignment operator, Assigns values from right side operands to left side operand C = A + B will assigne value of A + B into C
+=Add AND assignment operator, It adds right operand to the left operand and assign the result to left operand C += A is equivalent to C = C + A
-=Subtract AND assignment operator, It subtracts right operand from the left operand and assign the result to left operand C -= A is equivalent to C = C - A
*=Multiply AND assignment operator, It multiplies right operand with the left operand and assign the result to left operand C *= A is equivalent to C = C * A
/=Divide AND assignment operator, It divides left operand with the right operand and assign the result to left operand C /= A is equivalent to C = C / A
%=Modulus AND assignment operator, It takes modulus using two operands and assign the result to left operand C %= A is equivalent to C = C % A
<<=Left shift AND assignment operator C <<= 2 is same as C = C << 2
>>=Right shift AND assignment operator C >>= 2 is same as C = C >> 2
&=Bitwise AND assignment operator C &= 2 is same as C = C & 2
^=bitwise exclusive OR and assignment operator C ^= 2 is same as C = C ^ 2
|=bitwise inclusive OR and assignment operator C |= 2 is same as C = C | 2