Tuesday, 30 April 2013

For Orkom but Let's Learn Statistik :)

Hello :D
meet again with me hehehoho ..
Oh iya, pertemuan kita kali ini akan menghantarkan kita pada materi yang baru :) wanna learn it ? or just wanna see ?? hehe

Sedikit curhat aja nih yaaa, sekarang lagi musim-musim UTS di kampusku behhik :" wish me luck everybody :"") bagi kalian yang merasakan hal yang sama, semangat semangat semangatt !! kita bisa ! kita bisa ! kita bisa ! kalo ga bisa, kita bisa mengulang ! *naudzubillah *semoga aja ngga hehe Aamiin O:)

So, belajar apa kita kali ini ?? Orkom lagi ?? Wahh saya sudah membagi materinya di laman-laman sebelumnya :) Just check it ;) berhubung besok saya bakal ujian Statistik, jadi kita belajar Statistik aja yaaa :)

Sebelumnya what is statistic ? what's the different with statistics ? Statistics is a fathom which learn about statistic. And statistic is data set which presented by a list, tables, diagrams, etc.. Jadi, statistika adalah ilmu atau paham yang mempelajari tentang tata statistik, sementara statistik itu adalah sekumpulan data yang disajikan dalam bentuk daftar, tabel, diagram, dll.

Penjelasan berikutnya akan saya sajikan melalui :

http://www.4shared.com/office/a3nfs8Dp/Materi_1.html
http://www.4shared.com/office/v2nxpCIo/Materi_2.html
http://www.4shared.com/office/CPFGQWuv/Materi_3__4.html
http://www.4shared.com/office/Y129AkCX/Materi_5.html
http://www.4shared.com/office/0t5MaB26/Materi_6.html
http://www.4shared.com/office/9YcNxDMG/Materi_7.html


Hehe mungkin akan lebih mudah untuk dipelajari dengan mengunduh file powerpointnya :) Oia, ini materi dari dosen statistik saya di STT-PLN, namanya Ibu Linda Fujianti :)
Selamat belajar ^^

Monday, 22 April 2013

Programming oh Programming

Hello guys !!

Today, I'm going to share some program that I have used for preparing my 'UTS' or Mid Semester :)
Hm, I know that I'm not clever for this lesson, so don't be panic to see it LOL :))

This is about Function .
Did you know Function guys ??
These are the Program :

  

The output is :



 If you choose number 1, that's mean that you call 1. It's like a calculator. But there's only for 'plus'. How about 'times'? Just explore the program guys :)

Then, this is String :
#include<iostream.h>
#include<string.h>


void karakter();
void balik();
void ubah();

char pil;
char nama[10];
void main()
{
cout<<"Masukkan Nama : ";cin.getline(nama,35);
cout<<"\nMenu : [1]/[2]/[3] ";
cout<<"\n1. Hitung Jumlah Karakter";
cout<<"\n2. Balik Nama";
cout<<"\n3. Rubah Karakter"<<endl;
cin>>pil;

if(pil=='1')
{karakter();}
else if (pil=='2')
{balik();}
else if (pil=='3')
{ubah();}

}

void karakter()
{
cout<<endl<<strlen(nama)<<" karakter";

}
void balik()
{
strrev(nama);
cout<<endl<<nama;


}
void ubah()
{
strupr(nama);
cout<<nama<<" "<<endl;

}

This is the Output :
 
First, users could write their name in 'Masukkan Nama', then Enter. After that, some menu will appear. Choose one of that, for example 1. Hitung Jumlah Karakter. This menu will appear how many character of your name.

15 Karakter, it's mean that the word 'Rini Hardiyanti' has 15 character. And other, you could explore :) Just try what will be happen if you choose menu 2 or 3 .

I think that all guys :)

I have to go to my collage.

See you later :):)



Tuesday, 9 April 2013

How to Learn Binary ??

Who said that binary is difficult? Yes, I am (-,-)v . Actually I'm still a student in Informatics Techniques, second semester. Although that, binary and others is too difficult to learn. But, I hope if I share some theory, may be I will get much knowledge too :D So, let's sharing about Binary .

What is Binary ??
Representative for my Computer Organization's Lecturer ;
Sir Wisnu  Hendro Martono, M.Sc.


Binary describes a numbering scheme in which there are only two possible values for each digit: 0 and 1. The term also refers to any digital encoding/decoding system in which there are exactly two possible states.In digital data memory, storage, processing, and communications, the 0 and 1 values are sometimes called "low" and "high," respectively.

Binary numbers look strange when they are written out directly.This is because the digits' weight increases by powers of 2, rather than by powers of 10.In a digital numeral, the digit furthest to the right is the "ones" digit; the next digit to the left is the "twos" digit; next comes the "fours" digit, then the "eights" digit, then the "16s" digit, then the "32s" digit, and so on.The decimal equivalent of a binary number can be found by summing all the digits.For example, the binary 10101 is equivalent to the decimal 1 + 4 + 16 = 21:

DECIMAL = 21 64 32 16 8 4 2 1
BINARY = 10101 0 0 1 0 1 0 1

The numbers from decimal 0 through 15 in decimal, binary, octal, and hexadecimal form are listed below.
 
DECIMAL BINARY OCTAL HEXA-
DECIMAL
0 0 0 0
1 1 1 1
2 10 2 2
3 11 3 3
4 100 4 4
5 101 5 5
6 110 6 6
7 111 7 7
8 1000 10 8
9 1001 11 9
10 1010 12 A
11 1011 13 B
12 1100 14 C
13 1101 15 D
14 1110 16 E
15 1111 17 F

Computer Devices (Computer Organization) - Materi Organisasi Komputer STTPLN

Hello readers :)

Today I'll share you some theories about Computer Organization. I hope you will like it and could help you to get more knowledge. So, check it now !

Some computer devices be going to start our learn .

Source : Lecturer of Computer Organization STT-PLN ;
Sir Wisnu Hendro Martono, M.Sc.