Mencoba post blog dari ms word 2010, apakah berhasil?
addtoany
10 08 2011ngetes share button, bisa gak ya?
Comments : Leave a Comment »
Categories : Uncategorized
Protected: hehe
6 06 2011Comments : Enter your password to view comments.
Categories : Uncategorized
link tugas rpl
10 10 2008silakan download
http://www.4shared.com/u/qqvgsgr/19178189/dwarjuna.html
http://www.4shared.com/file/66370754/bfa436af/Tugas_2_Testing.html
untuk slide presentasi-na… ntar minta di bandung ajah ya
Comments : Leave a Comment »
Categories : Uncategorized
10 10 2008
Tugas 2 Testing&Dokumentasi 1). 0014 function SquareRoot( Number : in FLOAT; 0015 Accuracy : in FLOAT) return FLOAT is 0016 0017 MaximumValue : FLOAT; 0018 MinimumValue : FLOAT; 0019 CurrentGuess : FLOAT; 0020 CurrentGuessSquared : FLOAT; 0021 CurrentError : FLOAT; 0022 CloseEnough : BOOLEAN := FALSE; 0023 0024 begin -- SquareRoot 0025 if Number > 1.0 then 0026 MaximumValue := Number; 0027 MinimumValue := 0.0; 0028 else 0029 MaximumValue := 1.0; 0030 MinimumValue := Number; 0031 end if; 0032 while not CloseEnough loop 0033 CurrentGuess := (MaximumValue + MinimumValue) / 2.0; 0034 CurrentGuessSquared := CurrentGuess * CurrentGuess; 0035 CurrentError := abs( Number - CurrentGuessSquared); 0036 if CurrentError <= Accuracy then 0037 CloseEnough := TRUE; 0038 else 0039 if CurrentGuessSquared >= Number then 0040 MaximumValue := CurrentGuess; 0041 else 0042 MinimumValue := CurrentGuess; 0043 end if; 0044 end if; 0045 end loop; 0046 return CurrentGuess; 0047 end SquareRoot;
2).
0001 procedure GetValidPurchasePrice( ValidPrice : out FLOAT) is 0002 0003 IsValidPrice : BOOLEAN := FALSE; 0004 PossiblePrice : FLOAT; 0005 0006 begin -- GetValidPurchasePrice 0007 while not IsValidPrice loop 0008 begin -- posit/ admit block 0009 PUT("Please enter the purchase price "); 0010 -- implicit exception may be raised here 0011 GET( PossiblePrice); SKIP_LINE; 0012 if PossiblePrice <= MinPrice or 0013 PossiblePrice > MaxPrice then 0014 -- raise explicit exception 0015 raise DATA_ERROR; 0016 end if; 0019 IsValidPrice := TRUE; 0018 exception 0019 when DATA_ERROR => 0020 SKIP_LINE; 0021 PUT("This value is invalid!"); NEW_LINE; 0022 PUT("Please enter a value "); 0023 PUT("(including decimal parts) between "); 0024 PUT( MinPrice, EXP=>0, FORE=>4, AFT=>2); 0025 PUT(" and "); 0026 PUT( MaxPrice, EXP=>0, FORE=>4, AFT=>2); 0027 NEW_LINE; 0028 end; -- posit/ admit block 0029 end loop; 0030 ValidPrice := PossiblePrice; 0031 end GetValidPurchasePrice;
Untuk nomer 1 & 2:
a. Dengan mempergunakan perancangan prosedural atau source code sebagai dasar, gambarkan flowgraph
b. Tentukan cyclomatic complexity flowgraph yang telah dibuat
c. Tentukan independent path pada flowgraph
d. Buat test case yang akan mengerjakan masing-masing path pada basis set. Data yang dipilih harus tepat sehingga setiap kondisi dari predicate node dikerjakan semua.
e. Testing menggunakan Graph Matrix
3). Berikan contoh (masing-masing minimal 5) perangkat lunak yang bisa dilakukan pengujian dengan menggunakan Black Box Testing:
- Graph based Testing
- Equivalence Partitioning
- Boundary Value Analysis
- Comparison Testing
Comments : Leave a Comment »
Categories : Uncategorized
Plugin
25 08 2008- Calender : untuk menampilkan kalender
- WP-Stats : untuk melihat Statistik situs.
- Similar Posts: untuk menampilkan artikel yang berhubungan dengan artikel yang sedang dibuka.
- Recent Comments : untuk melihat komentar yang paling terkini
- Meebo : untuk melakukan instan messaging
Comments : 1 Comment »
Categories : Prolab
langkah-langkah installasi wordpress
25 08 20081. Siapkan web server, kalau belum ada install dulu misalnya web server “wamp”
2. Pastikan web server talah berjalan
3. Buka folder www pada web server anda dan buat folder misalnya “lokal”
4. Cari/download file wordpress lalu ekstrak file tersebut di folder lokal
5. buka webserver anda di web browser dengan mengetik localhost
6. masuk ke php my admin, lalu bikin database baru misal db-lokal
7. masuk ke localhost/lokal
8. buat file wp-config “create wp-config….”
9. ketika ditanya nama databse masukkan yang tadi,, lalu isi username “root” dan password kosong
10. submit
11. pilih “run install wordpress”
12. masukkan nama blog dan e-mail valid anda
13. pilih “install wordpress”
14. Instalasi selesai, untuk masuk control panel nya http://localhost/lokal/wp-login.php
Comments : Leave a Comment »
Categories : Prolab
langkah-langkah registrasi pada wordpress.com
25 08 20081. Pada address bar ketikkan www.wordpress.com
2. Pilih menu SIGN UP
3. Isi form registrasi secara lengkap
4. Buka e-mail untuk mengecek aktivasi account
5. Aktivasi acount anda di e-mail
6. Sign up ke WordPress
7. Selamat berkreasi
Comments : Leave a Comment »
Categories : Prolab