Monday, 15 June 2015

Cara belajar 2

1. Menghitung jumlah benda/objek untuk membuat mata ngeh.
2. Penamaan: Menamakan setiap benda/objek.
3. Mempelajari algoritma / step-by-step cara kerjanya jika ada.
4. Mempelajari perubahannya, jika ini bergerak yang lain yang bergerak apa.
4. Membuat tabel pengelompokkan benda-bendanya.
5. Membuat quantisasi/perumusannya jika ada.
6. Mencari perbedaannya
7. Mencari persamaannya
8. Menamai tempat-tempatnya
9. Menamai nama orang-orangnya

BEginner advise to C# begineer

1. Declare your every variable at top even without entering/assigning it its value.
2. Use comment to:
- Explain
- to temporarily disable/unable your code
- to enter a live hyperlink / URL without disturb other code, contoh: /* http://www.facebook.com */
- To do : what need to be added later and what need to be deleted later.
3. Use common variable type like: int, string, float.
4. Console.ReadLine itu untuk membaca
5. Console.WriteLine itu untuk menulis

6. Block of code itu ditandai dengan kurung kurawal buka( { ) dan kurung kurawal tutup ( } ) contoh:
{
     line-1 of this block;
     line-2 of this block;
     line-3 of this block;
}
Dan yang memiliki/mempunyai/belong to blok ini adalah line/baris diatas kurung kurawal buka ( { ).

7. Cara yang paling mudah untuk mempelajari if adalah dengan
membuat tebak-tebakan pintu: pintu manakah yang dipilih pintu 1, 2 atau pintu 3.
Jika pintu 1 yang dipilih hadiahnya mobil
Jika pintu 2 yang dipilih hadiahnya motor
Jika pintu 3 yang dipilih hadiahnya tidak ada alias kosong.

Contoh:
Console.WriteLine("Please choose door 1, 2, or 3")
string userValue = Console.ReadLine();
if (userValue == "1") Console.WriteLine("You got a new car!");
elseif(userValue =="2") Console.Writeline("You got a motorcycle!");
elseif(userValue == "3") Console.WriteLine("You got nothing, the door is empty");
endif



Sunday, 14 June 2015

IP QoS

Dalam tutorial ini kamu akan menemukan istilah:
1. Bandwidth ISP
2. Maximum Bandwidth
3. Minimum Bandwidth
3. Host
5. Range of hosts

Yang didapatkan dari pelajaran visual c# hari ini:
1. Installing Visual Studio Express 2013 for Windows Desktop
1. Link untuk download visual C# : www.microsoft.com/express
pilih > Visual Studio Express 2013 for Windows Desktop

2. Dissecting the First C# Program You Created
Belajar mengenai
1. Dimana letak file-file projek disimpan >
2. Dua tipe/jenis kompilasi yang ada: compile release dan compile debug

3.  Creating Your First C# Program


Declaring Variables and Assigning Values Duration


Type casting:
integer = integer + string -> need to convert the string to integer
string = string + integer -> need to convert the integer to string
integer + integer = penambahan
string + string = concatenate

6. Branching with the if Decision Statement and the Conditional Operator
1. How to accept user input into a window console application
2. Based on the user input write logic to execute blocks of code
3. when to use curly braces
4. when not to use curly braces
5. Simple step to build if decision statement with/that only use 1 condition
string message = (userValue == "1") ? "car" : "helicopter";

6. String replacement
Console.WriteLine("You Won a {0}", message);

PS: If itu kayak membuat pilihan berganda.

7. Operator, Expression, and Statement

Saturday, 13 June 2015

Source Code Kombinasi

Kombinasi adalah pemetaan

Berikut contoh source code dalam bahasa small basic:

'data
data[1] = "baju daster"
data[2] = "celana panjang"
data[3] = "celana pendek"

'range

range = 3

'copying
For i = 1 To range
  For j = 1 To 3
    block[i][j] = data[j]
  EndFor
EndFor


For i = 1 To range
  For j = 1 To 3
    For k = 1 To 3
      TextWindow.WriteLine(data[i] + ", " + data[j] + ", " + data[k])
    EndFor
  EndFor
EndFor

Berikut contoh source code dalam bahasa small basic dengan jumlah array 1: k

Computer Programming

Dalam artikel ini kamu akan menemukan istilah:
1. UDP
2. TCP
3.