Listing Progam. Universitas Sumatera Utara

Size: px
Start display at page:

Download "Listing Progam. Universitas Sumatera Utara"

Transcription

1 60 Listing Progam Listing Program Tabel Index <?php include("function.library/select.lib.php"); echo "<br><br><br>"; echo "<table class='tbl1' width='100%'> <th colspan='10'>tabel Index <i>base64</i></th> <td align=center>a=0</td> <td align=center>b=1</td> <td align=center>c=2</td> <td align=center>d=3</td> <td align=center>e=4</td> <td align=center>f=5</td> <td align=center>g=6</td> <td align=center>h=7</td> <td align=center>i=8</td> <td align=center>j=9</td> <td align=center>k=10</td> <td align=center>l=11</td> <td align=center>m=12</td> <td align=center>n=13</td> <td align=center>o=14</td> <td align=center>p=15</td> <td align=center>q=16</td> <td align=center>r=17</td> <td align=center>s=18</td> <td align=center>t=19</td> <td align=center>u=20</td> <td align=center>v=21</td> <td align=center>w=22</td> <td align=center>x=23</td> <td align=center>y=24</td> <td align=center>z=25</td> <td align=center>a=26</td> <td align=center>b=27</td> <td align=center>c=28</td>

2 61 <td align=center>d=29</td> <td align=center>e=30</td> <td align=center>f=31</td> <td align=center>g=32</td> <td align=center>h=33</td> <td align=center>i=34</td> <td align=center>j=35</td> <td align=center>k=36</td> <td align=center>l=37</td> <td align=center>m=38</td> <td align=center>n=39</td> <td align=center>o=40</td> <td align=center>p=41</td> <td align=center>q=42</td> <td align=center>r=43</td> <td align=center>s=44</td> <td align=center>t=45</td> <td align=center>u=46</td> <td align=center>v=47</td> <td align=center>w=48</td> <td align=center>x=49</td> <td align=center>y=50</td> <td align=center>z=51</td> <td align=center>1=52</td> <td align=center>2=53</td> <td align=center>3=54</td> <td align=center>4=55</td> <td align=center>5=56</td> <td align=center>6=57</td> <td align=center>7=58</td> <td align=center>8=59</td> <td align=center>9=60</td>

3 62 <td align=center>/=61</td> <td align=center>+=62</td> <td align=center>/=63</td> </table><br><br>"; echo "<table class='tbl1 width='100%'> <th colspan='10'>tabel Index <i>base32</i></th> <td align=center>a=0</td> <td align=center>b=1</td> <td align=center>c=2</td> <td align=center>d=3</td> <td align=center>e=4</td> <td align=center>f=5</td> <td align=center>g=6</td> <td align=center>h=7</td> <td align=center>i=8</td> <td align=center>j=9</td> <td align=center>k=10</td> <td align=center>l=11</td> <td align=center>m=12</td> <td align=center>n=13</td> <td align=center>o=14</td> <td align=center>p=15</td> <td align=center>q=16</td> <td align=center>r=17</td> <td align=center>s=18</td> <td align=center>t=19</td> <td align=center>u=20</td> <td align=center>v=21</td> <td align=center>w=22</td> <td align=center>x=23</td> <td align=center>y=24</td> <td align=center>z=25</td> <td align=center>2=26</td> <td align=center>3=27</td> <td align=center>4=28</td> <td align=center>5=29</td>

4 63 <td align=center>6=30</td> <td align=center>7=31</td> </table><br><br>"; echo "<table class='tbl1' width='100%'> <th colspan='11'>tabel Index <i>base16</i></th> <td align=center>0=0</td> <td align=center>1=1</td> <td align=center>2=2</td> <td align=center>3=3</td> <td align=center>4=4</td> <td align=center>5=5</td> <td align=center>6=6</td> <td align=center>7=7</td> <td align=center>8=8</td> <td align=center>9=9</td> <td align=center>a=10</td>?> <td align=center>b=11</td> <td align=center>c=12</td> <td align=center>d=13</td> <td align=center>e=14</td> <td align=center>f=15</td> </table>"; Listring Program Proses Encode <?php include("function.library/select.lib.php"); $get=$_request['get']; $id=$_request['id']; switch($get){ case 'home' : _home();

5 64 break; case 'chipertext' : chipertext(); break; function chipertext(){ $text=str_replace("%"," ",$_REQUEST['pt']); echo $text; $base64_index=array( "A","B","C","D","E", "F","G","H","I","J", "K","L","M","N","O", "P","Q","R","S","T", "U","V","W","X","Y", "Z","a","b","c","d", "e","f","g","h","i", "j","k","l","m","n", "o","p","q","r","s", "t","u","v","w","x", "y","z","1","2","3", "4","5","6","7","8", "9","/","+" ); $replace_text = str_replace("%"," ",$text); $aksi="encode"; echo "<h2>base64</h2>"; echo "<div style='width:auto; height:auto; overflow:scroll;'>"; echo "<table border=0>"; echo "<th>text</th>"; for($i=0; $i<strlen($replace_text); $i++){ echo "<td align='center'>".$replace_text[$i]."</td>"; echo "<th>ascii</th>"; for($i=0; $i<strlen($replace_text); $i++){ echo "<td align='center'>".ord($replace_text[$i])."</td>"; echo "<th>biner</th>";

6 65 for($i=0; $i<strlen($replace_text); $i++){ $_binner[]=str_pad(decbin(ord($replace_text[$i])), 8, "0", STR_PAD_LEFT); echo "<td align='center'>".str_pad(decbin(ord($replace_text[$i])), 8, "0", STR_PAD_LEFT)."</td>"; $key=implode("",$_binner); $arr = str_split($key, 6); echo "<th>bit Pattern / 6 Caracter</th>"; for($i=0;$i<count($arr);$i++){ if(strlen($arr[$i])==6){ $dec=$arr[$i]; else{ $aa=$arr[$i]; $aaa=6-strlen($arr[$i]); $dec=$arr[$i].str_repeat(0, $aaa); echo "<td align='center'>".$dec."</td>"; $rrs[]=$dec; echo "<th>decimal</th>"; for($i=0;$i<count($rrs);$i++){ echo "<td align='center'>".bindec($rrs[$i])."</td>"; $enc[]=bindec($rrs[$i]); echo "<th>encode</th>"; foreach($enc as $i){ echo "<td align='center'>".$base64_index[$i]."</td>"; $hsl[]=$base64_index[$i]; echo " </table></div>"; $base32_index= array(

7 66 "=","B","C","D","E", "F","G","H","I","J", "K","L","M","N","O", "P","Q","R","S","T", "U","V","W","X","Y", "Z","2","3","4","5", "6","7"); $replace_text1 = str_replace("%"," ",$text); $aksi="encode"; echo "<h2>base32</h2>"; echo "<div style='width:auto; height:auto; overflow:scroll;'>"; echo "<table border=0>"; echo "<th>text</th>"; for($i=0; $i<strlen($replace_text1); $i++){ echo "<td align='center'>".$replace_text1[$i]."</td>"; echo "<th>ascii</th>"; for($i=0; $i<strlen($replace_text1); $i++){ echo "<td align='center'>".ord($replace_text1[$i])."</td>"; echo "<th>biner</th>"; for($i=0; $i<strlen($replace_text1); $i++){ $_binner1[]=str_pad(decbin(ord($replace_text1[$i])), 8, "0", STR_PAD_LEFT); echo "<td align='center'>".str_pad(decbin(ord($replace_text1[$i])), 8, "0", STR_PAD_LEFT)."</td>"; $key1=implode("",$_binner1); $arr1 = str_split($key1, 5); echo "<th>bit Pattern / 5 Caracter</th>"; for($i=0;$i<count($arr);$i++){ if(strlen($arr1[$i])==6){ $dec1=$arr1[$i]; else{ $aa1=$arr1[$i]; $aaa1=5-strlen($arr1[$i]);

8 67 $dec1=$arr1[$i].str_repeat(0, $aaa1); echo "<td align='center'>".$dec1."</td>"; $rrs1[]=$dec1; echo "<th>decimal</th>"; for($i=0;$i<count($rrs1);$i++){ echo "<td align='center'>".bindec($rrs1[$i])."</td>"; $enc1[]=bindec($rrs1[$i]); echo "<th>encode</th>"; foreach($enc1 as $i){ echo "<td align='center'>".$base32_index[$i]."</td>"; $hsl1[]=$base32_index[$i]; echo " </table>"; echo "</div>"; $base16_index2= array( "0","1","2", "3","4","5", "6","7","8", "9","A","B", "C","D","E", "F"); $replace_text2 = str_replace("%"," ",$text); $aksi="encode"; echo "<h2>base16</h2>"; echo "<div style='width:auto; height:auto; overflow:scroll;'>"; echo "<table border=0>"; echo "<th>text</th>"; for($i=0; $i<strlen($replace_text2); $i++){ echo "<td align='center'>".$replace_text2[$i]."</td>"; echo "<th>ascii</th>"; for($i=0; $i<strlen($replace_text2); $i++){

9 68 echo "<td align='center'>".ord($replace_text2[$i])."</td>"; echo "<th>biner</th>"; for($i=0; $i<strlen($replace_text2); $i++){ $_binner2[]=str_pad(decbin(ord($replace_text2[$i])), 8, "0", STR_PAD_LEFT); echo "<td align='center'>".str_pad(decbin(ord($replace_text2[$i])), 8, "0", STR_PAD_LEFT)."</td>"; $key2=implode("",$_binner2); $arr2 = str_split($key2, 4); echo "<th>bit Pattern / 4 Caracter</th>"; for($i=0;$i<count($arr2);$i++){ echo "<td align='center'>".$arr2[$i]."</td>"; echo "<th>decimal</th>"; for($i=0;$i<count($arr2);$i++){ echo "<td align='center'>".bindec($arr2[$i])."</td>"; $enc2[]=bindec($arr2[$i]); echo "<th>encode</th>"; foreach($enc2 as $i){ echo "<td align='center'>".$base16_index2[$i]."</td>"; $hsl2[]=$base16_index2[$i]; echo " </table></div>"; function _home(){ echo "<b>plaintext : </b><br> <form name='frm' id='frm'> <input type='text' name='pt' id='pt' size='80'> <input type='button' name='submit' value='proses' onclick='chipertext()' />

10 69 </form>"; echo "<div id='hasil'>"; echo "</div>";?>

11 70 CURICULUM VITAE Nama : Ferino Riza Ardian Tempat/ Tanggal Lahir : Medan/ 03 Desember 1987 Agama : Islam Jenis Kelamin : Pria Alamat Sekarang : Jln. Cemara Gang Jambu No 5 Medan Alamat Orang Tua : Jln. Cemara Gang Jambu No 5 Medan Nomor Telp/Hp : ferino.riza@yahoo.com Riwayat Pendidikan 1. SD Swasta Pertiwi dari Tahun 1993 s/d SMP Swasta Pertiwi dari Tahun 1999 s/d SMA Negeri 3 Medan dari Tahun 2002 s/d Politeknik LP3I Medan Diploma 3 dari Tahun 2007 s/d 2009 Keahlian / Keterampilan yang diikuti : 1. Pelatihan Kepemimpinan Bagi Mahasiswa PTS Dilingkungan Kopertis Wilayah I 2. Seminar Entrepreneurship 3. Sertifikat TOEFL 4. Sertifikat Table Manner 5. Web Programing 6. Graphic & Web Design

LISTING PROGRAM. a = b; b = c; c = a + b; } fibs.reverse(); for (int i = 0; i < fibs.count; i++) { if (n >= fibs[i]) { n = n - fibs[i];

LISTING PROGRAM. a = b; b = c; c = a + b; } fibs.reverse(); for (int i = 0; i < fibs.count; i++) { if (n >= fibs[i]) { n = n - fibs[i]; A-1 A LISTING PROGRAM 1. Fibonacci Code //membuat fungsi Fibonacci Code public static String GetFibonacciCode(int n) { StringBuilder fib = new StringBuilder("1"); int a, b, c; List fibs = new List();

More information

LISTING PROGRAM. mainform.vb A-1. Universitas Sumatera Utara

LISTING PROGRAM. mainform.vb A-1. Universitas Sumatera Utara A-1 LISTING PROGRAM mainform.vb Imports System.IO Public Class mainform Private Sub mainform_load(byval sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load enkripsirb.checked = True

More information

LISTING PROGRAM. % UIWAIT makes pertama wait for user response (see UIRESUME) % uiwait(handles.figure1);

LISTING PROGRAM. % UIWAIT makes pertama wait for user response (see UIRESUME) % uiwait(handles.figure1); LISTING PROGRAM FORM PERTAMA : function varargout = pertama(varargin) gui_singleton = 1; gui_state = struct('gui_name', mfilename,... 'gui_singleton', gui_singleton,... 'gui_openingfcn', @pertama_openingfcn,...

More information

Lampiran 2 MASTER TABEL

Lampiran 2 MASTER TABEL 64 Lampiran 2 MASTER TABEL No. No. Responden Umur Pendidikan Pekerjaan Paritas Kanker 1 427363 35 S1 PNS 4 Tidak 2 504024 36 SMA IRT 4 Tidak 3 500316 35 SMA IRT 5 Tidak 4 504014 35 SMA PNS 1 Tidak 5 447158

More information

LAMPIRAN A LISTING PROGRAM

LAMPIRAN A LISTING PROGRAM A-1 LAMPIRAN A LISTING PROGRAM FUNGSI public void StopWatchStart() stopwatch.reset(); stopwatch.start(); Cursor.Current = Cursors.WaitCursor; txtlog.text = ""; public void StopWatchStop(string Title) stopwatch.stop();

More information

LISTING PROGRAM. 1. Module SkripsiUmri.py. import sys, operator, codecs, time. class Timer(object): def init (self): self.t1= time.

LISTING PROGRAM. 1. Module SkripsiUmri.py. import sys, operator, codecs, time. class Timer(object): def init (self): self.t1= time. A1 LISTING PROGRAM 1. Module SkripsiUmri.py import sys, operator, codecs, time class Timer(object): def init (self): self.t1= time.time() def getelapsedltime(self): # gets total elapsed from class initialsation

More information

LISTING PROGRAM. % Edit the above text to modify the response to help cover. % Last Modified by GUIDE v Jun :24:43

LISTING PROGRAM. % Edit the above text to modify the response to help cover. % Last Modified by GUIDE v Jun :24:43 A1 LISTING PROGRAM 1. Form Cover function varargout = cover(varargin) COVER MATLAB code for cover.fig COVER, by itself, creates a new COVER or raises the existing singleton*. H = COVER returns the handle

More information

LISTING PROGRAM. if nargout [varargout{1:nargout}] = gui_mainfcn(gui_state, varargin{:}); else gui_mainfcn(gui_state, varargin{:}); end

LISTING PROGRAM. if nargout [varargout{1:nargout}] = gui_mainfcn(gui_state, varargin{:}); else gui_mainfcn(gui_state, varargin{:}); end A-1 LISTING PROGRAM 1. Form Cover function varargout = cover(varargin) gui_singleton = 1; gui_state = struct('gui_name', mfilename,... 'gui_singleton', gui_singleton,... 'gui_openingfcn', @cover_openingfcn,...

More information

LAMPIRAN A : LISTING PROGRAM

LAMPIRAN A : LISTING PROGRAM 46 LAMPIRAN A : LISTING PROGRAM 1. Mainform /* * Created by SharpDevelop. * User: User7 * Date: 28/09/2015 * Time: 9:38 * * To change this template use Tools Options Coding Edit Standard Headers. */ using

More information

A-1 LAMPIRAN A LISTING PROGRAM. Kode Program Form Main: Universitas Sumatera Utara

A-1 LAMPIRAN A LISTING PROGRAM. Kode Program Form Main: Universitas Sumatera Utara A-1 LAMPIRAN A A LISTING PROGRAM Kode Program Form Main: #Region Project Attributes #ApplicationLabel: Samuel Panjaitan #VersionCode: 1 #VersionName: #SupportedOrientations: portrait #CanInstallToExternalStorage:

More information

LAMPIRAN. Universitas Sumatera Utara

LAMPIRAN. Universitas Sumatera Utara 67 LAMPIRAN Lampiran A-1 Listing Program Visual Basic Private Sub mn_isidata_click() frm_isi_data.show Me.Hide Private Sub mn_koneksiport_click() frm_koneksi_port.show Me.Hide Private Sub mn_tentang_click()

More information

LISTING PROGRAM. namespace vigenere_des { public partial class MainPage : PhoneApplicationPage { public MainPage() { InitializeComponent(); }

LISTING PROGRAM. namespace vigenere_des { public partial class MainPage : PhoneApplicationPage { public MainPage() { InitializeComponent(); } 59 LISTING PROGRAM Form Utama : using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Windows; using System.Windows.Controls; using System.Windows.Navigation;

More information

LAMPIRAN LISTING PROGRAM

LAMPIRAN LISTING PROGRAM A1 LAMPIRAN LISTING PROGRAM Prototype.m function varargout = prototype(varargin) gui_singleton = 1; gui_state = struct('gui_name', mfilename,... 'gui_singleton', gui_singleton,... 'gui_openingfcn', @prototype_openingfcn,...

More information

LAMPIRAN A LISTINGPROGRAM

LAMPIRAN A LISTINGPROGRAM LAMPIRAN A LISTINGPROGRAM 1. Form Utama (myprogram.fig) function varargout = myprogram(varargin) gui_singleton = 1; gui_state = struct('gui_name', mfilename,... 'gui_singleton', gui_singleton,... 'gui_openingfcn',

More information

Error Handling, Exception. Pemrograman Web

Error Handling, Exception. Pemrograman Web Error Handling, Exception Pemrograman Web PHP Error Handling When creating scripts and web applications, error handling is an important part. If your code lacks error checking code, your program may look

More information

Correlations. Butir 1 Pearson Correlation ** Sig. (2-tailed) N

Correlations. Butir 1 Pearson Correlation ** Sig. (2-tailed) N 109 Lampiran olahan Data. 1. Nilai Pelanggan (X1) s Butir 1 Butir 2 Butir 3 Butir Total Butir 1 1.049 -.157.441 ** Sig. (2-tailed).626.120.000 N 100 100 100 100 Butir 2.049 1 -.003.735 ** Sig. (2-tailed).626.978.000

More information

A-1 LISTING PROGRAM. 1. Form1.cs. Universitas Sumatera Utara

A-1 LISTING PROGRAM. 1. Form1.cs. Universitas Sumatera Utara A-1 LISTING PROGRAM 1. Form1.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using IronPython.Hosting; using Microsoft.Scripting;

More information

LISTING PROGRAM. // // TODO: Add constructor code after the InitializeComponent() call. //

LISTING PROGRAM. // // TODO: Add constructor code after the InitializeComponent() call. // 1. MainForm.cs using System.Collections.Generic; using System.Drawing; LISTING PROGRAM / / Description of MainForm. / public partial class MainForm : Form public MainForm() The InitializeComponent()

More information

LISTING PROGRAM. void KOMPRESIToolStripMenuItemClick(object sender, EventArgs e) { Kompresi k = new Kompresi(); k.show(); this.

LISTING PROGRAM. void KOMPRESIToolStripMenuItemClick(object sender, EventArgs e) { Kompresi k = new Kompresi(); k.show(); this. A - 1 LISTING PROGRAM 1. Form Menu Utama using System; using System.Collections.Generic; using System.Drawing; using System.Windows.Forms; namespace KompresiCitra / / Description of MainForm.

More information

LISTING PROGRAM. // // TODO: Add constructor code after the InitializeComponent()

LISTING PROGRAM. // // TODO: Add constructor code after the InitializeComponent() A-1 LISTING PROGRAM Form Mainform /* * Created by SharpDevelop. * User: Roni Anggara * Date: 5/17/2016 * Time: 8:52 PM * * To change this template use Tools Options Coding Edit Standard Headers. */ using

More information

LAMPIRAN A : LISTING PROGRAM

LAMPIRAN A : LISTING PROGRAM LAMPIRAN A : LISTING PROGRAM 1. Form Utama (Cover) using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text;

More information

Final Examination Semester 1 / Year 2012

Final Examination Semester 1 / Year 2012 Final Examination Semester 1 / Year 2012 COURSE : INTERNET APPLICATION COURSE CODE : CSIS1013 TIME : 2 1/2 HOURS DEPARTMENT : COMPUTER SCIENCE LECTURER : TEE CHENG SIEW Student s ID : Batch No. : Notes

More information

P - 13 Bab 10 : PHP MySQL Lanjut (Studi Kasus)

P - 13 Bab 10 : PHP MySQL Lanjut (Studi Kasus) P - 13 Bab 10 : PHP MySQL Lanjut (Studi Kasus) 10.1 Tujuan Mahasiswa mampu : Mengetahui dan Memahami Integrasi PHP dengan MySQL Mengetahui dan Memahami Relasi Dengan phpmyadmin Designer Mengetahui dan

More information

APPENDIX. dbskripsi.sql CREATE DATABASE drop database if exists dbskripsi; create database dbskripsi; use dbskripsi;

APPENDIX. dbskripsi.sql CREATE DATABASE drop database if exists dbskripsi; create database dbskripsi; use dbskripsi; APPENDIX dbskripsi.sql CREATE DATABASE drop database if exists dbskripsi; create database dbskripsi; use dbskripsi; PROCEDURE CREATE TABLES delimiter $$ create procedure spfirsttimerunning() begin drop

More information

Part A Short Answer (50 marks)

Part A Short Answer (50 marks) Part A Short Answer (50 marks) NOTE: Answers for Part A should be no more than 3-4 sentences long. 1. (5 marks) What is the purpose of HTML? What is the purpose of a DTD? How do HTML and DTDs relate to

More information

LISTING PROGRAM. private void filetoolstripmenuitem_click(object sender, EventArgs e) { this.hide(); Form2 fr = new Form2(); fr.

LISTING PROGRAM. private void filetoolstripmenuitem_click(object sender, EventArgs e) { this.hide(); Form2 fr = new Form2(); fr. Kode Program Form Home namespace SkripsiLagi public partial class Form9 : Form public Form9() LISTING PROGRAM private void filetoolstripmenuitem_click(object sender, EventArgs e) Form2 fr = new Form2();

More information

WEBSITE DESIGN RESEARCH AND COMMUNITY SERVICE INSTITUTE IN BINA DARMA UNIVERSITY

WEBSITE DESIGN RESEARCH AND COMMUNITY SERVICE INSTITUTE IN BINA DARMA UNIVERSITY International Conference on Information Systems for Business Competitiveness (ICISBC 203) 372 WEBSITE DESIGN RESEARCH AND COMMUNITY SERVICE INSTITUTE IN BINA DARMA UNIVERSITY Siti Sa uda ) Qoriani Widayati

More information

Pratikum 8. Membuat Transaksi Penjualan

Pratikum 8. Membuat Transaksi Penjualan Pratikum 8 Membuat Transaksi Penjualan Transaksi adalah Hubungan tabel satu dengan yang lain menjadi sebuah form, di dalam form tersebut mengambil beberapa field dari tabel lain sehingga menjadi satu inputan.

More information

5.5 FORM form ex28.html <html> <head>

5.5 FORM form ex28.html <html> <head> 5.5 FORM form ex28.html function calc() { var ar = document.getelementbyid("ar"); if(n1.value == "" n2.value == "") { window.alert(""); else { var eq = n1.value + ar.options[ar.selectedindex].value

More information

% --- Executes on button press in btn_gsn. function btn_gsn_callback(hobject, eventdata, handles) GaussianSpeckleNoise close AiSoftware;

% --- Executes on button press in btn_gsn. function btn_gsn_callback(hobject, eventdata, handles) GaussianSpeckleNoise close AiSoftware; A-2 'gui_openingfcn', @AiSoftware_OpeningFcn,... 'gui_outputfcn', @AiSoftware_OutputFcn,... 'gui_layoutfcn', [],... 'gui_callback', []); if nargin && ischar(varargin{1}) gui_state.gui_callback = str2func(varargin{1});

More information

Installation Manual RB-RWS20-E. Lite-Vision plus Remote Controller. Model name: English

Installation Manual RB-RWS20-E. Lite-Vision plus Remote Controller. Model name: English Model name: RB-RWS20-E Read this manual before using the RB-RWS20-E remote controller. Refer to the supplied with the indoor unit for any installation instructions other than operations of the remote controller.

More information

LISTING PROGRAM. 1. Tampilan Awal. 2. Menu Login. Public Class Awal

LISTING PROGRAM. 1. Tampilan Awal. 2. Menu Login. Public Class Awal LISTING PROGRAM 1. Tampilan Awal Public Class Awal Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick ProgressBar1.Increment(10) If ProgressBar1.Value

More information

JavaScript CSCI 201 Principles of Software Development

JavaScript CSCI 201 Principles of Software Development JavaScript CSCI 201 Principles of Software Development Jeffrey Miller, Ph.D. jeffrey.miller@usc.edu Outline JavaScript Program USC CSCI 201L JavaScript JavaScript is a front-end interpreted language that

More information

ゼミ Wiki の再構築について 資料編 加納さおり

ゼミ Wiki の再構築について 資料編 加納さおり Wiki [ Fukuda Semi Wiki] [ 2 wiki] [ 3 ] [ 4 ] [ 5 ] [ 6 ] [ 7 ] [ 8 ] [ 9 ] [ 10 ] [ 11 ] [ 12 ] [ 13 ] [ 14 Menu1] [ 15 Menu2] [ 16 Menu3] [ 17 wiki Menu] [ 18 TOP ] [ 19 ] [ 20 ] [ 20] [ 21 ] [ 22 (

More information

Chapter4: HTML Table and Script page, HTML5 new forms. Asst. Prof. Dr. Supakit Nootyaskool Information Technology, KMITL

Chapter4: HTML Table and Script page, HTML5 new forms. Asst. Prof. Dr. Supakit Nootyaskool Information Technology, KMITL Chapter4: HTML Table and Script page, HTML5 new forms Asst. Prof. Dr. Supakit Nootyaskool Information Technology, KMITL Objective To know HTML5 creating a new style form. To understand HTML table benefits

More information

Creating HTML files using Notepad

Creating HTML files using Notepad Reference Materials 3.1 Creating HTML files using Notepad Inside notepad, select the file menu, and then Save As. This will allow you to set the file name, as well as the type of file. Next, select the

More information

HR2000 PCB2. Deliver PCB2 (slip jawapan) via within minutes. What is PCB2? Password Protected PDF. Benefits. How it Works?

HR2000  PCB2. Deliver PCB2 (slip jawapan) via  within minutes. What is  PCB2? Password Protected PDF. Benefits. How it Works? HR2000 E-Mail PCB2 Deliver PCB2 (slip jawapan) via E-Mail within minutes What is e-mail PCB2? PCB 2 Forms (or Slip Jawapan CP159) are sent in HTML formatted e-mail and with options to include file attachments

More information

L A M P I R A N. Universitas Sumatera Utara

L A M P I R A N. Universitas Sumatera Utara L A M P I R A N LAMPIRAN 1. Listing Program Aplikasi e-election Berbasis SMS Gateway index.php

More information

LISTING PROGRAM. com.example.jessicatamara.myapplication4;

LISTING PROGRAM. com.example.jessicatamara.myapplication4; A-1 LISTING PROGRAM MainActivity.java package import import import import import import com.example.jessicatamara.myapplication4; android.content.intent; android.support.v7.app.appcompatactivity; android.os.bundle;

More information

Copyright 2014 Edmentum - All rights reserved.

Copyright 2014 Edmentum - All rights reserved. Copyright 2014 Edmentum - All rights reserved. Geometry Trigonometry Blizzard Bag 2014-2015 1. Triangle EFG is similar to HJI. If e = 5.2 cm, f = 5.8 cm, g = 4 cm, and h = 10.4 cm, what is the measure

More information

M275 - Web Development using PHP and MySQL

M275 - Web Development using PHP and MySQL Arab Open University Faculty of computer Studies M275 - Web Development using PHP and MySQL Chapter 6 Flow Control Functions in PHP Summary This is a supporting material to chapter 6. This summary will

More information

Comparison legibility test on Japanese characters and English letters

Comparison legibility test on Japanese characters and English letters Comparison legibility test on Japanese characters and English letters Dengchuan Cai and Lanling Huang Industrial Design Department National Yunlin University of Science and Technology Douliu, Yunlin, 640

More information

PERKHIDMATAN KREDIT DAN PERBANKAN PROSEDUR UNIT KOMPUTER. Proses Backup ( Windows) BPKP/KlOK-118 Bilangan Semakan : Q Tarikh :

PERKHIDMATAN KREDIT DAN PERBANKAN PROSEDUR UNIT KOMPUTER. Proses Backup ( Windows) BPKP/KlOK-118 Bilangan Semakan : Q Tarikh : PERKHDMATAN KREDT DAN PERBANKAN PROSEDUR UNT KOMPUTER Proses Backup ( Windows) BPKP/KlOK-118 Bilangan Semakan : Q Tarikh : 30.09.13 Disediakan oleh :- Disahkan oleh :- Pengurus P PERU BAHAN Ubahan Muka

More information

Fetch terms and conditions apply. Fetch is only available for business banking purposes. The Kiwibank Fetch name, logos and related trademarks and

Fetch terms and conditions apply. Fetch is only available for business banking purposes. The Kiwibank Fetch name, logos and related trademarks and Fetch terms and conditions apply. Fetch is only available for business banking purposes. The Kiwibank This form submits a single amount to Fetch and then returns/displays

More information

CSE 20 Intro to Computing I. Coding

CSE 20 Intro to Computing I. Coding CSE 0 Intro to Computing I Coding ChooseFunc.java for (int i = ; i

More information

INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions.

INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions. SECTION B : 55 MARKS BAHAGIAN B : 55 MARKAH INSTRUCTION: This section consists of TWO (2) structured questions. Answer ALL questions. ARAHAN: Bahagian ini mengandungi DUA (2) soalan berstruktur. Jawab

More information

3/12/2018. Structures. Programming in C++ Sequential Branching Repeating. Loops (Repetition)

3/12/2018. Structures. Programming in C++ Sequential Branching Repeating. Loops (Repetition) Structures Programming in C++ Sequential Branching Repeating Loops (Repetition) 2 1 Loops Repetition is referred to the ability of repeating a statement or a set of statements as many times this is necessary.

More information

COMBINING TABLES. Akademi Audit Negara. CAATs ASAS ACL / 1

COMBINING TABLES. Akademi Audit Negara. CAATs ASAS ACL / 1 COMBINING TABLES CAATs ASAS ACL / 1 OBJEKTIF MODUL Mempelajari kaedah menggabung dan menghubungkan dua atau lebih table bagi mencapai objektif Audit. Mempelajari kaedah menggunakan maklumat yang sedia

More information

KARTU BIMBINGAN TUGAS AKHIR MAHASISWA PEMBAHASAN PADA ASISTENSI MENGENAI, PADA BAB

KARTU BIMBINGAN TUGAS AKHIR MAHASISWA PEMBAHASAN PADA ASISTENSI MENGENAI, PADA BAB 62 KEMENTERIAN PENDIDIKAN NASIONAL UNIVERSITAS SUMATERA UTARA FAKULTAS MATEMATIKA DAN ILMU PENGETAHUAN ALAM Jl. Bioteknologi No.1 Kampus USU Padang Bulan Medan 20155 Telp. (061) 8211050, 8214290, Fax (061)

More information

A proportion is an equation that two ratios are equal. For example, See the diagram. a. Find the ratio of AE to BE.

A proportion is an equation that two ratios are equal. For example, See the diagram. a. Find the ratio of AE to BE. Section 1: Ratio and Proportion The ratio of a to b means a/b. For example, the ratio of 4 to 6 (or 4:6) is ; the ratio of x to y (or x:y) is proportion is an equation that two ratios are equal. For example,

More information

=================== coffee-submit.php ==========================

=================== coffee-submit.php ========================== Solutions 1. CSS body { background-color: #DDD; #info img { float: right; height: 200px; margin: 10px; #info { padding-left: 2%; float: left; width:78%; #stats { width: 20%; float: left; background-color:

More information

CPSC 481: CREATIVE INQUIRY TO WSBF

CPSC 481: CREATIVE INQUIRY TO WSBF CPSC 481: CREATIVE INQUIRY TO WSBF J. Yates Monteith, Fall 2013 Schedule HTML and CSS PHP HTML Hypertext Markup Language Markup Language. Does not execute any computation. Marks up text. Decorates it.

More information

Polygons, Congruence, Similarity Long-Term Memory Review Grade 8 Review 1

Polygons, Congruence, Similarity Long-Term Memory Review Grade 8 Review 1 Review 1 1. In the diagram below, XYZ is congruent to CDE XYZ CDE. Y D E X Z C Complete the following statements: a) C b) XZ c) CDE d) YZ e) Z f) DC 2. In the diagram below, ABC is similar to DEF ABC DEF.

More information

A. Using technology correctly, so that your site will still function for users who don t have these technologies

A. Using technology correctly, so that your site will still function for users who don t have these technologies 1. What does graceful degradation mean in the context of our class? A. Using technology correctly, so that your site will still function for users who don t have these technologies B. Eliminating the implementation

More information

Listing Program. private void exittoolstripmenuitem_click(object sender, EventArgs e) { Application.Exit(); }

Listing Program. private void exittoolstripmenuitem_click(object sender, EventArgs e) { Application.Exit(); } Listing Program Kode Program Menu Home: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using

More information

Lab 7 Introduction to MySQL

Lab 7 Introduction to MySQL Lab 7 Introduction to MySQL Objectives: During this lab session, you will - Learn how to access the MySQL Server - Get hand-on experience on data manipulation and some PHP-to-MySQL technique that is often

More information

ToDoList. 1.2 * allow custom user list to be passed in * publish changes to a channel ***/

ToDoList. 1.2 * allow custom user list to be passed in * publish changes to a channel ***/ /*** USAGE: ToDoList() Embed a TODO-list into a page. The TODO list allows users to create new items, assign them to other users, and set deadlines. Items that are due are highlighted in yellow, items

More information

Pengenalan Sistem Maklumat Dalam Pendidikan

Pengenalan Sistem Maklumat Dalam Pendidikan Pengenalan Sistem Maklumat Dalam Pendidikan 1 RELATIONSHIP & QUERY DALAM MICROSOFT ACCESS Kandungan Definisi Relationship (Hubungan) Jenis Relationship Membina Relationship Definisi Query dan Fungsi Query

More information

Working with Dates: Comparing dates:

Working with Dates: Comparing dates: Working with Dates: Suppose, we have a date variable $product['releasedate'] with the value of: 2016-03-26 00:00:00. Now we can display this date in different format using the date(); function as shown

More information

Controlled Assessment Task. Question 1 - Describe how this HTML code produces the form displayed in the browser.

Controlled Assessment Task. Question 1 - Describe how this HTML code produces the form displayed in the browser. Controlled Assessment Task Question 1 - Describe how this HTML code produces the form displayed in the browser. The form s code is displayed in the tags; this creates the object which is the visible

More information

Web Programming Paper Solution (Chapter wise)

Web Programming Paper Solution (Chapter wise) PHP Session tracking and explain ways of session tracking. Session Tracking HTTP is a "stateless" protocol which means each time a client retrieves a Web page, the client opens a separate connection to

More information

1.2 * allow custom user list to be passed in * publish changes to a channel

1.2 * allow custom user list to be passed in * publish changes to a channel ToDoList /*** USAGE: ToDoList() Embed a TODO-list into a page. The TODO list allows users to cre Items that are due are highlighted in yellow, items passed due ar list can be added to any page. The information

More information

INFORMATION SYSTEM OF LIBRARY AT PONDOK PESANTREN DARUL IHSAN MUHAMMADIYAH SRAGEN

INFORMATION SYSTEM OF LIBRARY AT PONDOK PESANTREN DARUL IHSAN MUHAMMADIYAH SRAGEN INFORMATION SYSTEM OF LIBRARY AT PONDOK PESANTREN DARUL IHSAN MUHAMMADIYAH SRAGEN PUBLIKASI ILMIAH This Final Project is Compiled as a Condition to Complete Bachelor Degree Program at Department of Informatics

More information

Data Compression Fundamentals

Data Compression Fundamentals 1 Data Compression Fundamentals Touradj Ebrahimi Touradj.Ebrahimi@epfl.ch 2 Several classifications of compression methods are possible Based on data type :» Generic data compression» Audio compression»

More information

LAMPIRAN Kode Program

LAMPIRAN Kode Program 73 LAMPIRAN Kode Program 1. Index.php

More information

1. Crosstabs a. Usia*jenis kelamin

1. Crosstabs a. Usia*jenis kelamin 1. Crosstabs a. Usia*jenis kelamin usia * jenis_kelamin Valid Missing Percent Percent Percent 27 100.0% 0.0% 27 100.0% usia * jenis_kelamin Crosstabulation usia >=30 tahun 31-40 tahun 41-50 tahun

More information

Yii User Identity Error Code 100

Yii User Identity Error Code 100 Yii User Identity Error Code 100 It's 100% free, no registration required. In the login page, after submit the form, it displays the following error $model-_attributes=$_post('loginform'), // validate

More information

B. V. Patel Institute of BMC & IT 2014

B. V. Patel Institute of BMC & IT 2014 Unit 1: Introduction Short Questions: 1. What are the rules for writing PHP code block? 2. Explain comments in your program. What is the purpose of comments in your program. 3. How to declare and use constants

More information

HTML Format Tables Extraction with Differentiating Cell Content as Property Name

HTML Format Tables Extraction with Differentiating Cell Content as Property Name Copyright 2011 American Scientific Publishers Advanced Science Letters All rights reserved Vol. 4, 400 407, 2014 Printed in the United States of America HTML Format Tables Extraction with Differentiating

More information

Create Basic Databases and Integrate with a Website Lesson 3

Create Basic Databases and Integrate with a Website Lesson 3 Create Basic Databases and Integrate with a Website Lesson 3 Combining PHP and MySQL This lesson presumes you have covered the basics of PHP as well as working with MySQL. Now you re ready to make the

More information

JSON POST WITH PHP IN ANGULARJS

JSON POST WITH PHP IN ANGULARJS JSON POST WITH PHP IN ANGULARJS The POST method is used to insert the data. In AngularJS, we should post the form data in JSON format to insert into the PHP file. The PHP server side code used to get the

More information

KAEDAH PENYUSUNAN PORTFOLIO

KAEDAH PENYUSUNAN PORTFOLIO KAEDAH PENYUSUNAN PORTFOLIO Borang Permohonan Pensijilan [(JPK/PPT/6/6-2014)] 2 Salinan Salinan Kad Pengenalan Notis Pendaftaran Calon dan Penugasan PP-PPT Surat Akuan Pengesahan Calon (Calon & PP-PPT)

More information

week8 Tommy MacWilliam week8 October 31, 2011

week8 Tommy MacWilliam week8 October 31, 2011 tmacwilliam@cs50.net October 31, 2011 Announcements pset5: returned final project pre-proposals due Monday 11/7 http://cs50.net/projects/project.pdf CS50 seminars: http://wiki.cs50.net/seminars Today common

More information

Computer Science 571 Exam #1 Prof. Papa Thursday, February 23, 2017, 6:00pm 7:20pm

Computer Science 571 Exam #1 Prof. Papa Thursday, February 23, 2017, 6:00pm 7:20pm Computer Science 571 Exam #1 Prof. Papa Thursday, February 23, 2017, 6:00pm 7:20pm Name: Student Id Number: 1. This is a closed book exam. 2. Please answer all questions. 3. Place all answers on the exam

More information

COMP1000 Mid-Session Test 2017s1

COMP1000 Mid-Session Test 2017s1 COMP1000 Mid-Session Test 2017s1 Total Marks: 45 Duration: 55 minutes + 10 min reading time This examination has three parts: Part 1: 15 Multiple Choice Questions (15 marks /45) Part 2: Practical Excel

More information

TUTORIAL CRUD CODEIGNITER

TUTORIAL CRUD CODEIGNITER TUTORIAL CRUD CODEIGNITER With MySQL Tutorial ini saya dedikasikan untuk yang baru terjun di framework codeigniter, dan para pemula yang ingin belajar secara otodidak. Crud merupakan kewajiban dasar yang

More information

Page Layout. 4.1 Styling Page Sections 4.2 Introduction to Layout 4.3 Floating Elements 4.4 Sizing and Positioning

Page Layout. 4.1 Styling Page Sections 4.2 Introduction to Layout 4.3 Floating Elements 4.4 Sizing and Positioning Page Layout contents of this presentation are Copyright 2009 Marty Stepp and Jessica Miller 4.1 Styling Page Sections 4.2 Introduction to Layout 4.3 Floating Elements 4.4 Sizing and Positioning 2 1 4.1

More information

Problem Set 3 ECE 551: Digital System Design and Synthesis Spring 2003

Problem Set 3 ECE 551: Digital System Design and Synthesis Spring 2003 Problem Set 3 ECE 551: Digital System Design and Synthesis Spring 2003 1. Blocking/Non-blocking Assignments (25 pts) PART A. module P1(w,p,r,x,y,q,z,a,b,c,d,e); //Lines before always not required. input

More information

Deccansoft Software Services

Deccansoft Software Services Deccansoft Software Services (A Microsoft Learning Partner) HTML and CSS COURSE SYLLABUS Module 1: Web Programming Introduction In this module you will learn basic introduction to web development. Module

More information

Lecture 20. Introduction to PHP (Part-2) Mr. Mubashir Ali Lecturer (Dept. of Computer Science)

Lecture 20. Introduction to PHP (Part-2) Mr. Mubashir Ali Lecturer (Dept. of Computer Science) Lecture 20 Introduction to PHP (Part-2) Mr. Mubashir Ali Lecturer (Dept. of Computer Science) dr.mubashirali1@gmail.com 1 Summary of the previous lecture Setting the environment Overview of PHP Constants

More information

CSC 337. JavaScript Object Notation (JSON) Rick Mercer

CSC 337. JavaScript Object Notation (JSON) Rick Mercer CSC 337 JavaScript Object Notation (JSON) Rick Mercer Why JSON over XML? JSON was built to know JS JSON JavaScript Object Notation Data-interchange format Lightweight Replacement for XML It's just a string

More information

G I F T U N I V E R S I T Y

G I F T U N I V E R S I T Y G I F T U N I V E R S I T Y G U J R A N W A L A (Chartered by the Govt. of the Punjab, Recognized by HEC) Department of Computer Science BS Computer Science Web Development/Web Programming Mid Term Examination

More information

HotRod Module Examples

HotRod Module Examples HotRod Module Examples 2016 Skybuilder.net Skybuilder.net HotRod Module 1 This is for illustrating how the HotRod module works, and the way to modify scripts you find on the Internet. Full Working Example

More information

Geometry Module 3 Unit 2 Practice Exam

Geometry Module 3 Unit 2 Practice Exam Name: Class: Date: Geometry Module 3 Unit 2 Practice Exam Short Answer 1. If BCDE is congruent to OPQR, then BC is congruent to?. 2. NPM? 3. Given QRS TUV, QS 4v 3, and TV 8v 9, find the length of QS and

More information

7.2 Similar Polygons. Geometry Mr. Peebles Spring 2013

7.2 Similar Polygons. Geometry Mr. Peebles Spring 2013 7.2 Similar Polygons Geometry Mr. Peebles Spring 2013 Daily Learning Target (DLT) Monday February 25, 2013 I can understand, apply, and remember to identify similar polygons in real-life problems. Geometry

More information

if(! list.contains(list.collect(params,'key'),'title')){ <div style="font-weight:bold;color:red;">"warning: A title field must be assigned.

if(! list.contains(list.collect(params,'key'),'title')){ <div style=font-weight:bold;color:red;>warning: A title field must be assigned. /** Author: Blake Harms Version 2.9 See: http://developer.mindtouch.com/app_catalog/ Integrated_Bug_and_Issue_Tracker on 2.9 added performance tunning posted by Sego on this blog post: http://forums.developer.mindtouch.com/

More information

LAMPIRAN. Lampiran 1. Identitas Petani Cabai Merah di Desa Wukirsari Tahun 2017

LAMPIRAN. Lampiran 1. Identitas Petani Cabai Merah di Desa Wukirsari Tahun 2017 LAMPIRAN Lampiran 1. Identitas Petani Cabai Merah di Desa Wukirsari Tahun 2017 NO Nama Responden Umur (Tahun) Tingkat Pendidikan Pengalaman Bertani (Tahun) Status Kepemilikan Lahan 1 Mardi Wiyono 64 SD

More information

RBC-AMS55E-ES RBC-AMS55E-EN

RBC-AMS55E-ES RBC-AMS55E-EN Wired Remote Controller Model name: RBC-AMS55E-ES RBC-AMS55E-EN Read this manual before using the RBC- AMS55E-ES, RBC-AMS55E-EN remote controller. Refer to the Installation Manual supplied with the indoor

More information

Solutions to exercises

Solutions to exercises Solutions to exercises Exercise textbox greetings Name: var button = document.getelementbyid("button");

More information

Application of Huffman Coding in Lossless Video Compression

Application of Huffman Coding in Lossless Video Compression Application of Huffman Coding in Lossless Video Compression Mahessa Ramadhana - 13511077 Program Studi Teknik Informatika Sekolah Teknik Elektro dan Informatika Institut Teknologi Bandung, Jl. Ganesha

More information

Stickers! Introduction. Step 1: Colourful coding sticker

Stickers! Introduction. Step 1: Colourful coding sticker Stickers! Introduction In this project, you ll create lots of fun stickers that you can use to decorate web pages. You ll learn about using gradients that gradually change from one colour to another to

More information

recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language (HTML)

recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language (HTML) HTML & Web Pages recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language (HTML) HTML specifies formatting within a page using tags in its

More information

주소록만들기 주소록. Input 페이지 Edit 페이지 Del 페이지

주소록만들기 주소록. Input 페이지 Edit 페이지 Del 페이지 주소록프로젝트 주소록만들기 주소록 List 페이지 Input 페이지 Edit 페이지 Del 페이지 Inputpro 페이지 Editpro 페이지 Address_Input.html 주소입력페이지 td,li,input{font-size:9pt} 주소입력

More information

Q1: Multiple choice / 20 Q2: Arrays / 40 Q3: Functions / 40 TOTAL SCORE / 100 EXTRA CREDIT / 10

Q1: Multiple choice / 20 Q2: Arrays / 40 Q3: Functions / 40 TOTAL SCORE / 100 EXTRA CREDIT / 10 EECE.2160: ECE Application Programming Spring 2017 Exam 2 March 29, 2017 Name: Section (circle 1): 201 (Dr. Li, MWF 8-8:50) 202 (Dr. Geiger, MWF 12-12:50) For this exam, you may use only one 8.5 x 11 double-sided

More information

Lampiran 1. Listing Program

Lampiran 1. Listing Program Lampiran 1 Listing Program 1. Index.html (Halaman Utama)

More information

LISTING PROGRAM. void FilteringToolStripMenuItemClick(object sender, EventAr s e) { Filtering a = new Filtering(); this.hide(); a.

LISTING PROGRAM. void FilteringToolStripMenuItemClick(object sender, EventAr s e) { Filtering a = new Filtering(); this.hide(); a. 130 LISTING PROGRAM 1. Mainform.cs using System; using System.Drawing; using System.Windows.Forms; namespace AnalisisPerbandinganFilertingdanDeteksiTepi public partial class MainForm : Form public MainForm()

More information