Selasa, 14 Juni 2011

Download smadav pro rev 8.5 free

Smadav 2011 Rev. 8 dirilis dengan berbagai fitur dan penyempurnaan baru yang dikhususkan untuk pemberantasan virus lokal. Fitur-fitur itu seperti Smad-Behavior yang bisa mengenali virus lokal baru yang belum ada di database Smadav dari tingkah lakunya ketika menginfeksi sistem. Smad-Ray yang bisa melakukan scan flashdisk secara otomatis setelah terpasang hanya dalam waktu maksimum 5 detik. Smadav 2011 lebih stabil dan sangat disarankan untuk digabungkan dengan antivirus internasional karena Smadav hanya bisa menangani virus lokal. Pengebalan flashdisk (menggunakan folder autorun.inf) telah disempurnakan lagi dan sebelumnya akan ada konfirmasi sehingga Anda bisa memutuskan apakah suatu flashdisk ingin dikebalkan atau tidak.

Sebagai informasi, dari sampel-sampel virus yang di-upload pengguna ke situs Smadav.net, penyebaran virus lokal saat ini sudah mulai turun drastis di Indonesia. Mungkin ini dikarenakan sudah banyaknya antivirus lokal yang bisa membasmi virus-virus lokal. Dan juga karena pengguna Windows XP yang sudah berkurang karena sebagian sudah meng-upgrade sistem operasinya menjadi Windows Vista atau Windows 7 yang sangat aman dari infeksi virus khususnya virus lokal. Penyebaran virus di Indonesia lebih banyak didominasi oleh virus dan malware internasional yang tentunya tidak bisa diatasi Smadav. Anda wajib dan sangat disarankan menggunakan antivirus internasional untuk perlindungkan komputer Anda dari virus dan malware internasional ini.

Bagi teman - teman bisa mendownload smadav rev 8.5 di sini

dan yang mau menjadi kan smadav free menjadi smadav pro, bisa download key nya di sini

C++ : Algorithm and Fibonacci Series Program

Download source code

ANALYSIS
Tribe of the n-th Fibonacci sequence i get with the formula:
Fibonacci (n) = Fibonacci (n-1) + Fibonacci (n-2)
with initial value for n = 1 and n = 2 valuable 1

ALGORITHM
Fibonacci function (input n: integer): integer

DESCRIPTION
if (n = 1) or (n = 2) then the Fibonacci <- 1else Fibonacci <- Fibonacci (n-1) + Fibonacci (n-2)endifdowload

C++ : Algorithm and Program Interatif and Recursive Function forCalculating the GCD of 2 Bilanga Round Positive

download

ANALYSIS
If n is not equal to 0 and m non-negative integers, we can write m =qn + r for a non-negative integers q and r with 0 less the same withsmaller r n

For example:
if n = 3, m = 16 then 16 = 5 (3) + 1, ie q = 5 and r = 1
if n = 10, m = 3 then 3 = 0 (10) + 3, ie q = 0 and r = 3

To find the GCD of two integers, we can use the way of writing theabove. Suppose we want to find the GCD (190, 34)
34 | 190 -> 190 = 5 (34) + 20, r = 20
20 | 34 -> 34 = 1 (20) + 14, r = 14
14 | 20 -> 20 = 1 (14) + 6, r = 6
6 | 14 -> 14 = 2 (6) + 2, r = 2
2 | 6 -> 6 = 3 (2) + 0, r = o stop!

Harge r is not equal to 0 last in reach is r = 2. This is the result darGCD (190.34). Vesi recursive GCD is defined as follows:
gcd (c, d) = c, if d = 0
= gcd (c-d, d), if d> 0 and c> d
Commutative law applies, gcd (c, d) = gcd (d, c)

ALGORITHM
function gcd (c, d: integer): integer

VERSION INTERATIF
DSKRIPSI
while (d> 0) do
r <- c mod dc <- d {save the price of the last r}d <- r {r final price to stop the loop}endwhilegcd <- cRECURSIVE VERSIONDESCRIPTIONif (d = 0) then gcd <- celse if (c < d ) tehen gcd <- gcd (d, c)else gcd <- gcd (c-d, d)download

C++ : Algorithm and Program Function Integer Multiplication 2 Using theAddition Operator

download

ANALYSIS
a x b = a + a + a +...+ a (b times as much)

ALGORITHM
{Calculated by multiplying a and b using the summation operator}

DECLARATION
results, i: integer

DESCRIPTION
result <- 0for <- 1 to b doresult <- result + atimes <- resultdownload

C++ : Algorithm and Program Finding The average of n positive integers

download

ANALYSIS
The formula for the amount of data on the number of data, with x, is the i-th data

ALGORITHM
{Given n data later in the search for the average}
DECLARATION
i, n, the number, x: integer
Average: real
DSKRIPSI
read (n)
total <- 0for i <- of 1 to n doread (x)total <- total + xendforaverage <- sum / nwrite (average)download

ALL INFORMATION Copyright © 2011 | Template created by O Pregador | Powered by Blogger