<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7330791083278094157</id><updated>2011-12-29T01:49:34.917-08:00</updated><category term='thin client'/><category term='flash'/><category term='SQL'/><category term='dfa'/><category term='pseudocode'/><category term='create table'/><category term='use case'/><category term='alter table'/><category term='oriented'/><category term='storage'/><category term='atm'/><category term='adminstrator'/><category term='disk'/><category term='api'/><category term='applet'/><category term='large number'/><category term='localhost'/><category term='C++'/><category term='joptionpane'/><category term='SAP'/><category term='linear algebra'/><category term='jcreator'/><category term='class'/><category term='computer'/><category term='no solution'/><category term='php asp .Net'/><category term='formula'/><category term='phptriad'/><category term='.net'/><category term='code'/><category term='computer engineering'/><category term='and'/><category term='science'/><category term='database'/><category term='apache'/><category term='asp'/><category term='MSSQL'/><category term='table'/><category term='system'/><category term='distributed'/><category term='foreign key'/><category term='activity diagram'/><category term='MySQL'/><category term='primary key'/><category term='birthday'/><category term='java'/><category term='php'/><category term='field'/><category term='object'/><category term='php c#'/><category term='phpmyadmin'/><category term='machine epsilon'/><category term='asp .Net'/><category term='small number'/><category term='algorithm'/><category term='dbms'/><category term='gui'/><category term='deterministic finite automata'/><category term='C#'/><category term='diagram'/><category term='fat client'/><category term='system of linear equations'/><category term='html'/><category term='server'/><category term='adding'/><category term='infinetely many solutions'/><category term='data'/><category term='expert'/><title type='text'>Computer engineering - C# php asp .Net SAP SQL</title><subtitle type='html'>Computer engineering - C# php asp .Net SAP SQL and more over is included.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://computerengineering1.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://computerengineering1.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>comp eng</name><uri>http://www.blogger.com/profile/05638456812492286200</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>25</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7330791083278094157.post-4798739920133587510</id><published>2008-05-26T02:27:00.000-07:00</published><updated>2008-05-27T15:24:22.811-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='deterministic finite automata'/><category scheme='http://www.blogger.com/atom/ns#' term='java'/><category scheme='http://www.blogger.com/atom/ns#' term='api'/><category scheme='http://www.blogger.com/atom/ns#' term='applet'/><category scheme='http://www.blogger.com/atom/ns#' term='gui'/><category scheme='http://www.blogger.com/atom/ns#' term='code'/><category scheme='http://www.blogger.com/atom/ns#' term='algorithm'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><category scheme='http://www.blogger.com/atom/ns#' term='dfa'/><category scheme='http://www.blogger.com/atom/ns#' term='C++'/><title type='text'>DFA logic - Dterministic Finite Automata</title><content type='html'>The code below is to create a deterministic finite automata. It just builds the logic of a dfa. The gui can be created very easily.&lt;br /&gt; &lt;br /&gt;import javax.swing.JOptionPane;&lt;br /&gt;import javax.swing.*;&lt;br /&gt;import java.util.*;&lt;br /&gt;public class dfa {&lt;br /&gt;&lt;br /&gt;	static String alphabet,son,retrn; &lt;br /&gt;	static int comma=0;&lt;br /&gt;	static int acomma=0;&lt;br /&gt;	static int number=0;&lt;br /&gt;	static String[][] st=new String[50][50];&lt;br /&gt;   public static void main(String args[]){&lt;br /&gt;      	&lt;br /&gt;&lt;br /&gt;	alphabet=JOptionPane.showInputDialog(null,"Alphabet?");&lt;br /&gt;			&lt;br /&gt;			   for( int i=0; i&lt;alphabet.length(); i++ ){&lt;br /&gt;                                 if( alphabet.charAt(i) == ',' )&lt;br /&gt;                                 comma++;&lt;br /&gt;                           }&lt;br /&gt;			&lt;br /&gt;	String states=JOptionPane.showInputDialog(null,"# of states");&lt;br /&gt;	number=Integer.parseInt(states);&lt;br /&gt;&lt;br /&gt;        for(int i=0; i&lt;number; i++){&lt;br /&gt;		int k=0;&lt;br /&gt;		for(int j=0; j&lt;(alphabet.length()-comma);j++)&lt;br /&gt;        {&lt;br /&gt;	&lt;br /&gt;        st[i][j]=JOptionPane.showInputDialog(null,"q"+i+","+alphabet.charAt(k));&lt;br /&gt;					&lt;br /&gt;							&lt;br /&gt;	System.out.print("q"+i+"--"+alphabet.charAt(k)+"--&gt;"+"q"+st[i][j]+"\n");&lt;br /&gt;	&lt;br /&gt;        k=k+2;&lt;br /&gt;	}&lt;br /&gt;					&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;				&lt;br /&gt;	String start = JOptionPane.showInputDialog(null,"starts state?");&lt;br /&gt;	int start1=Integer.parseInt(start);&lt;br /&gt;	String accept = JOptionPane.showInputDialog(null,"accept states?");&lt;br /&gt;&lt;br /&gt;	for( int i=0; i&lt;accept.length(); i++ ){&lt;br /&gt;            	if( accept.charAt(i) == ',' )&lt;br /&gt;                acomma++;&lt;br /&gt;        }&lt;br /&gt;        		&lt;br /&gt;	int[] accepts= new int[(accept.length()-acomma)];&lt;br /&gt;				&lt;br /&gt;	int l=0;&lt;br /&gt;	for(int i=0; i&lt;(accept.length()-acomma); i++){&lt;br /&gt;	        accepts[i]=Integer.parseInt(Character.toString(accept.charAt(l)));&lt;br /&gt;		l=l+2;&lt;br /&gt;		System.out.print(accepts[i]);&lt;br /&gt;	}&lt;br /&gt;				&lt;br /&gt;	System.out.println("start state"+start);&lt;br /&gt;	System.out.println("Accept state"+accept);&lt;br /&gt;				&lt;br /&gt;	String strng=JOptionPane.showInputDialog(null,"String?");&lt;br /&gt;	System.out.println(strng);&lt;br /&gt;				&lt;br /&gt;	int[] durums=new int[strng.length()];&lt;br /&gt;				&lt;br /&gt;	for(int i=0; i&lt;strng.length();i++){&lt;br /&gt;	        if(i==0){&lt;br /&gt;		        durums[i]=dfa(start1,strng.charAt(i));&lt;br /&gt;		}&lt;br /&gt;		else{&lt;br /&gt;		        durums[i]=dfa(durums[i-1],strng.charAt(i));&lt;br /&gt;		}&lt;br /&gt;	System.out.println(durums[i]);&lt;br /&gt;	}&lt;br /&gt;				&lt;br /&gt;	int kontrol=durums[(strng.length()-1)];&lt;br /&gt;			&lt;br /&gt;	int kabuluzun=accepts.length;&lt;br /&gt;&lt;br /&gt;	      for(int i=0; i&lt;kabuluzun; i++){&lt;br /&gt;			if(kontrol==accepts[i]){&lt;br /&gt;				System.out.println("ACCEPTED!!!");&lt;br /&gt;				break;&lt;br /&gt;			}&lt;br /&gt;			else if(kontrol!=accepts[i]){&lt;br /&gt;				System.out.println(" NOT ACCEPTED!!!");&lt;br /&gt;				break;&lt;br /&gt;					}&lt;br /&gt;				}&lt;br /&gt;&lt;br /&gt;//DFA METHOD!!!&lt;br /&gt;public static int dfa(int durum, char deger ){&lt;br /&gt;	&lt;br /&gt;	int deger1=0;&lt;br /&gt;	int sondurum=0;&lt;br /&gt;	for(int i=0;i&lt;alphabet.length()-comma;i=i+2){&lt;br /&gt;		&lt;br /&gt;			&lt;br /&gt;			if(deger==alphabet.charAt(i)){&lt;br /&gt;				deger1=i;}&lt;br /&gt;			&lt;br /&gt;			else{&lt;br /&gt;				for(int j=0; j&lt;(alphabet.length()-comma-1);j++){&lt;br /&gt;				&lt;br /&gt;				i=i+2;&lt;br /&gt;				if(deger==alphabet.charAt(i)){&lt;br /&gt;					deger1=i-1;&lt;br /&gt;					break;&lt;br /&gt;				}&lt;br /&gt;			}&lt;br /&gt;		}&lt;br /&gt;&lt;br /&gt;	sondurum=Integer.parseInt(st[durum][deger1]);&lt;br /&gt;	&lt;br /&gt;}&lt;br /&gt;return sondurum;&lt;br /&gt;}&lt;br /&gt;}&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7330791083278094157-4798739920133587510?l=computerengineering1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computerengineering1.blogspot.com/feeds/4798739920133587510/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7330791083278094157&amp;postID=4798739920133587510' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/4798739920133587510'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/4798739920133587510'/><link rel='alternate' type='text/html' href='http://computerengineering1.blogspot.com/2008/05/dfa-logic-dterministic-finite-automata.html' title='DFA logic - Dterministic Finite Automata'/><author><name>comp eng</name><uri>http://www.blogger.com/profile/05638456812492286200</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7330791083278094157.post-687125570259325888</id><published>2008-05-08T10:13:00.000-07:00</published><updated>2008-05-08T10:16:42.159-07:00</updated><title type='text'>Little Holiday</title><content type='html'>since i got a problem with my PC it take too much time to add a new article. Also my exams has taken my to much time as well. So by tomorrow i will add everyday again. Soryy about that holiday :))&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7330791083278094157-687125570259325888?l=computerengineering1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computerengineering1.blogspot.com/feeds/687125570259325888/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7330791083278094157&amp;postID=687125570259325888' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/687125570259325888'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/687125570259325888'/><link rel='alternate' type='text/html' href='http://computerengineering1.blogspot.com/2008/05/little-holiday.html' title='Little Holiday'/><author><name>comp eng</name><uri>http://www.blogger.com/profile/05638456812492286200</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7330791083278094157.post-6402737122193414177</id><published>2008-04-11T13:49:00.000-07:00</published><updated>2008-12-11T05:28:58.615-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='system of linear equations'/><category scheme='http://www.blogger.com/atom/ns#' term='infinetely many solutions'/><category scheme='http://www.blogger.com/atom/ns#' term='no solution'/><category scheme='http://www.blogger.com/atom/ns#' term='linear algebra'/><title type='text'>Linear Algebra - Sytems of linear equations</title><content type='html'>Here are some linear algebraic questions :P These are the question and will send their solution at next article.&lt;br /&gt;&lt;br /&gt;1.Which condition must be placed on a, b, and c so that the following system of equations has a solution?&lt;br /&gt;&lt;br /&gt;&lt;a href="http://2.bp.blogspot.com/_LKr-mE6g96c/R__Qurh-U6I/AAAAAAAAAEo/iKrPYmgeL8g/s1600-h/linear1.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_LKr-mE6g96c/R__Qurh-U6I/AAAAAAAAAEo/iKrPYmgeL8g/s320/linear1.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5188094796131881890" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;2. Determine if the given system has a nonzero solution.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://2.bp.blogspot.com/_LKr-mE6g96c/R__Q5rh-U7I/AAAAAAAAAEw/pWpbVPx5-ns/s1600-h/linear2.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_LKr-mE6g96c/R__Q5rh-U7I/AAAAAAAAAEw/pWpbVPx5-ns/s320/linear2.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5188094985110442930" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;3. Determine the values of a so that the given system of linear equations has (i) no solution,(ii) more than one solution, (iii) unique solution.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/_LKr-mE6g96c/R__RD7h-U8I/AAAAAAAAAE4/nQXXtCb-m74/s1600-h/linear3.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_LKr-mE6g96c/R__RD7h-U8I/AAAAAAAAAE4/nQXXtCb-m74/s320/linear3.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5188095161204102082" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;4. Consider the system of linear equations. Suppose that the system has only the trivial solution when all bi are zero. Show that this system has a unique solution for every other choice of the constants bi.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/_LKr-mE6g96c/R__RS7h-U9I/AAAAAAAAAFA/LkFUSps6Ti8/s1600-h/linear4.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_LKr-mE6g96c/R__RS7h-U9I/AAAAAAAAAFA/LkFUSps6Ti8/s320/linear4.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5188095418902139858" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7330791083278094157-6402737122193414177?l=computerengineering1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computerengineering1.blogspot.com/feeds/6402737122193414177/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7330791083278094157&amp;postID=6402737122193414177' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/6402737122193414177'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/6402737122193414177'/><link rel='alternate' type='text/html' href='http://computerengineering1.blogspot.com/2008/04/linear-algebra-sytems-of-linear.html' title='Linear Algebra - Sytems of linear equations'/><author><name>comp eng</name><uri>http://www.blogger.com/profile/05638456812492286200</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_LKr-mE6g96c/R__Qurh-U6I/AAAAAAAAAEo/iKrPYmgeL8g/s72-c/linear1.bmp' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7330791083278094157.post-8160729363157730390</id><published>2008-04-10T13:35:00.000-07:00</published><updated>2008-12-11T05:28:59.568-08:00</updated><title type='text'>Php Code for Membership Panel</title><content type='html'>These, the codes below is the part of an HTML code for the form of member login. &lt;br /&gt;&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_LKr-mE6g96c/R_6AHrh-U5I/AAAAAAAAAEg/8xSwcLwGsq0/s1600-h/uyelik.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_LKr-mE6g96c/R_6AHrh-U5I/AAAAAAAAAEg/8xSwcLwGsq0/s400/uyelik.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5187724690210050962" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/_LKr-mE6g96c/R_58iLh-U2I/AAAAAAAAAEI/OP1cZwnWtok/s1600-h/uyelik.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_LKr-mE6g96c/R_58iLh-U2I/AAAAAAAAAEI/OP1cZwnWtok/s400/uyelik.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5187720747430073186" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;here is the starting point of the php codes:&lt;br /&gt;&lt;br /&gt;&lt;?php&lt;br /&gt;ob_start();&lt;br /&gt;include "baglantidosyasi.php";&lt;br /&gt;/* First we get the inğut datas by POST method. */&lt;br /&gt;$kullanici=$_POST["kullanici"];&lt;br /&gt;$sifre=$_POST["sifre"];&lt;br /&gt;$sifrelisifre=md5($sifre); /* Burada Sifreyi md5 leyelim */ &lt;br /&gt;/*We are checking username and the password if they are empty */&lt;br /&gt;if(($kullanici=="")or($sifre=="")){&lt;br /&gt;echo "Please do not enter space!!!";&lt;br /&gt;}else{&lt;br /&gt;/*If the pasword and the username is not empty*/&lt;br /&gt;$uyesor=mysql_query("select kullanici,sifre from uyelik where kullanici='$kullanici' and sifre='$sifrelisifre'");&lt;br /&gt;   if(@mysql_num_rows($uyesor)&gt;0){&lt;br /&gt;   echo "&lt;font class=siyah_yazi&gt; &lt;br&gt;Welcome $kullanici&lt;br&gt; &lt;/font&gt;";&lt;br /&gt;   setcookie("kullanici",$kullanici);&lt;br /&gt;   echo "&lt;a href=index.php&gt;Please Click For Backward HomePage&lt;/a&gt;";&lt;br /&gt;   }else{&lt;br /&gt;   echo "Not Success!...";&lt;br /&gt;   }&lt;br /&gt;}&lt;br /&gt;?&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_LKr-mE6g96c/R_59Hrh-U3I/AAAAAAAAAEQ/A2yGqySEkf4/s1600-h/uyelik.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_LKr-mE6g96c/R_59Hrh-U3I/AAAAAAAAAEQ/A2yGqySEkf4/s400/uyelik.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5187721391675167602" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;?php&lt;br /&gt;ob_start();&lt;br /&gt;/*Let's check out the cookies if they are empty then the enterance screen will appear*/&lt;br /&gt;$cookie=$_COOKIE["kullanici"];&lt;br /&gt;if($cookie==""){&lt;br /&gt;echo '&lt;a href="Uyeol.php"&gt;&amp;Uuml;ye Ol&lt;/a&gt; | &lt;a href="Uyelik.php"&gt;&amp;Uuml;ye Giri&amp;#351;i Yap&lt;/a&gt; | ';&lt;br /&gt;}else{&lt;br /&gt;$tarih=date("d/m/y");&lt;br /&gt;echo "Welcome $cookie | Now Date $tarih ";&lt;br /&gt;}&lt;br /&gt;?&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_LKr-mE6g96c/R_59hbh-U4I/AAAAAAAAAEY/2G7c8fPyLI4/s1600-h/uyelik.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_LKr-mE6g96c/R_59hbh-U4I/AAAAAAAAAEY/2G7c8fPyLI4/s400/uyelik.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5187721834056799106" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Baglantidosyasi.php&lt;br /&gt;&lt;br /&gt;&lt;?php&lt;br /&gt;$hostadresi="localhost";&lt;br /&gt;$kullaniciadi="";&lt;br /&gt;$sifre="";&lt;br /&gt;$ad="";&lt;br /&gt;$dbadi="uyelik";&lt;br /&gt;@$baglan=mysql_connect($hostadresi,"root","") or die ("Mysq Bagalkanadmi");&lt;br /&gt;@mysql_select_db($dbadi,$baglan)  or die ("vt Bagalkanadmi");&lt;br /&gt;?&gt;&lt;br /&gt;&lt;br /&gt;Try to decode =))&lt;br /&gt;Good Luck!!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7330791083278094157-8160729363157730390?l=computerengineering1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computerengineering1.blogspot.com/feeds/8160729363157730390/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7330791083278094157&amp;postID=8160729363157730390' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/8160729363157730390'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/8160729363157730390'/><link rel='alternate' type='text/html' href='http://computerengineering1.blogspot.com/2008/04/php-code-for-membership-panel.html' title='Php Code for Membership Panel'/><author><name>comp eng</name><uri>http://www.blogger.com/profile/05638456812492286200</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_LKr-mE6g96c/R_6AHrh-U5I/AAAAAAAAAEg/8xSwcLwGsq0/s72-c/uyelik.bmp' height='72' width='72'/><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7330791083278094157.post-1260923769936699457</id><published>2008-04-08T09:37:00.000-07:00</published><updated>2008-12-11T05:29:00.161-08:00</updated><title type='text'>Design Report of a Dynamic Website</title><content type='html'>We choose Waterfall model because it gives the benefits of feedbacks that are very effective. This software development life-cycle model enhanced with the integral processes given below in Drawing.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_LKr-mE6g96c/R_ugDqRtQqI/AAAAAAAAADo/RYAyAV7-tEs/s1600-h/waterfall.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_LKr-mE6g96c/R_ugDqRtQqI/AAAAAAAAADo/RYAyAV7-tEs/s320/waterfall.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5186915380595868322" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Sequence Diagram for dynamic website:&lt;br /&gt;&lt;br /&gt;Scenario:&lt;br /&gt;&lt;br /&gt; We have an project file to be uploaded in the projects part.&lt;br /&gt; To do this process, firstly we need to log in with and admin username and password. Checking out login process from users table at the database.&lt;br /&gt; Having done that, then the control panel for admin will be displayed.&lt;br /&gt; By using control panel, admin will upload the file from his/her own PC to the projects part of the website.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_LKr-mE6g96c/R_ugwaRtQrI/AAAAAAAAADw/Rx5vGeKdCJ4/s1600-h/waterfall.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_LKr-mE6g96c/R_ugwaRtQrI/AAAAAAAAADw/Rx5vGeKdCJ4/s320/waterfall.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5186916149395014322" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Comunication Diagram&lt;br /&gt;&lt;br /&gt;Our comunication diagram has the same scenario with the sequence diagram above. It does not shows the liftime of the messages, instead it shows the interaction between the processes.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_LKr-mE6g96c/R_uhXqRtQsI/AAAAAAAAAD4/YugjmgDJWsE/s1600-h/waterfall.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_LKr-mE6g96c/R_uhXqRtQsI/AAAAAAAAAD4/YugjmgDJWsE/s320/waterfall.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5186916823704879810" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7330791083278094157-1260923769936699457?l=computerengineering1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computerengineering1.blogspot.com/feeds/1260923769936699457/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7330791083278094157&amp;postID=1260923769936699457' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/1260923769936699457'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/1260923769936699457'/><link rel='alternate' type='text/html' href='http://computerengineering1.blogspot.com/2008/04/design-report-of-dynamic-website.html' title='Design Report of a Dynamic Website'/><author><name>comp eng</name><uri>http://www.blogger.com/profile/05638456812492286200</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_LKr-mE6g96c/R_ugDqRtQqI/AAAAAAAAADo/RYAyAV7-tEs/s72-c/waterfall.bmp' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7330791083278094157.post-360641390585710553</id><published>2008-04-06T15:21:00.000-07:00</published><updated>2008-04-06T15:40:18.352-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MySQL'/><category scheme='http://www.blogger.com/atom/ns#' term='foreign key'/><category scheme='http://www.blogger.com/atom/ns#' term='alter table'/><category scheme='http://www.blogger.com/atom/ns#' term='primary key'/><category scheme='http://www.blogger.com/atom/ns#' term='create table'/><category scheme='http://www.blogger.com/atom/ns#' term='table'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><category scheme='http://www.blogger.com/atom/ns#' term='database'/><category scheme='http://www.blogger.com/atom/ns#' term='MSSQL'/><category scheme='http://www.blogger.com/atom/ns#' term='field'/><title type='text'>Explanation of the Database Creation Code</title><content type='html'>Firstly as you have seen at the article from this one we have created 4 tables : report, employee, factory, part to store the datas. &lt;br /&gt;--&gt; Why we use dbms? We use them to store the datas in a tidy fashion. I mean assume that you are storing the entire data in the same file. In this condition you need to read all the file and try to get the data you need to use. Since we want to access the desired datas in an acceptabşe time period we need to use database systems. I think it is clear enough why we created 4 tables(dividing the entire data).&lt;br /&gt;&lt;br /&gt;Then, in the code piece &lt;br /&gt;&lt;br /&gt;create table report(&lt;br /&gt;report_ssn int not null,&lt;br /&gt;primary key (report_ssn)) &lt;br /&gt;&lt;br /&gt;We are creating the table report and we are saying that we gone store in this tale te report_ssn in iteger type and it is the primary key of our table.&lt;br /&gt;--&gt; What is primary key? Primary keys are the special fields in the table which are uniquely identifies a data in that table. For instance if i am storing your and my other friends' names ssn_nos and surnames in a table called friends, then i can find out your informations by typing your ssn number since it uniquely identifies you.&lt;br /&gt;&lt;br /&gt;In this code piece&lt;br /&gt;&lt;br /&gt;create table employee (&lt;br /&gt;ssn int not null,&lt;br /&gt;e_name varchar(20) not null,&lt;br /&gt;salary int not null,&lt;br /&gt;report_ssn int not null,&lt;br /&gt;fac_id int not null,&lt;br /&gt;primary key (ssn),&lt;br /&gt;foreign key (report_ssn)references report(report_ssn))&lt;br /&gt;&lt;br /&gt;We are creating the table employee and storing the required datas in the fields. We set our ssn field as primary key and report_ssn field from report table as foreign key.&lt;br /&gt;--&gt;What is foreign key?Foreign keys are used to combine two related tables. I mean if i want to know which employee report whom i combine the tables employee and report with a foreign key. A foreign key can be created if it is a primary key in which table we want to combine and if there is a limitation as at most one!&lt;br /&gt;&lt;br /&gt;In this piece of code&lt;br /&gt;&lt;br /&gt;alter table employee add &lt;br /&gt;foreign key(fac_id) references factory(fac_id)&lt;br /&gt;&lt;br /&gt;We are altering the table amployee. We are adding a foreign key from the table factory to combine two tables.By using the code 'alter table' you can add or delete some fields from the tables as well.&lt;br /&gt;&lt;br /&gt;Whit these explanations you can examine the code i have written in the article before:)) &lt;br /&gt;&lt;br /&gt;Good Luck!!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7330791083278094157-360641390585710553?l=computerengineering1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computerengineering1.blogspot.com/feeds/360641390585710553/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7330791083278094157&amp;postID=360641390585710553' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/360641390585710553'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/360641390585710553'/><link rel='alternate' type='text/html' href='http://computerengineering1.blogspot.com/2008/04/explanation-of-database-creation-code.html' title='Explanation of the Database Creation Code'/><author><name>comp eng</name><uri>http://www.blogger.com/profile/05638456812492286200</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7330791083278094157.post-5866921352732362209</id><published>2008-04-04T13:48:00.000-07:00</published><updated>2008-04-04T14:15:48.542-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MySQL'/><category scheme='http://www.blogger.com/atom/ns#' term='asp .Net'/><category scheme='http://www.blogger.com/atom/ns#' term='dbms'/><category scheme='http://www.blogger.com/atom/ns#' term='SAP'/><category scheme='http://www.blogger.com/atom/ns#' term='php'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><category scheme='http://www.blogger.com/atom/ns#' term='database'/><title type='text'>Creating Database System (DBMS)</title><content type='html'>Here is the question below! We will create a database according to these criterias:&lt;br /&gt;&lt;br /&gt;You have just been hired as a consultant for a big airplane manufacturer. They want you to completely redesign their database system. Talking with the people in the company, you get the following information. &lt;br /&gt;1-The database contains information about employees, factories and parts.&lt;br /&gt;2-Each employee has a social security number (SSN), name and salary. An employee is uniquely identified by his/her SSN.&lt;br /&gt;3-Each factory has an id, a name and a budget. The id uniquely identifies a factory.&lt;br /&gt;4-Each part has an id and a name. The id uniquely identifies a part.&lt;br /&gt;5-Each employee reports to at most one other employee.&lt;br /&gt;6-Each employee works in at least one factory.&lt;br /&gt;7-Each part is manufactured in exactly one factory.&lt;br /&gt;&lt;br /&gt;Here is the answer of the question:&lt;br /&gt;&lt;br /&gt;create table report(&lt;br /&gt;report_ssn int not null,&lt;br /&gt;primary key (report_ssn))&lt;br /&gt;&lt;br /&gt;create table employee (&lt;br /&gt;ssn int not null,&lt;br /&gt;e_name varchar(20) not null,&lt;br /&gt;salary int not null,&lt;br /&gt;report_ssn int not null,&lt;br /&gt;fac_id int not null,&lt;br /&gt;primary key (ssn),&lt;br /&gt;foreign key (report_ssn)references report(report_ssn))&lt;br /&gt;&lt;br /&gt;create table factory (&lt;br /&gt;fac_id int not null,&lt;br /&gt;fac_name varchar(20) not null,&lt;br /&gt;budget int not null,&lt;br /&gt;ssn int not null,&lt;br /&gt;primary key (fac_id),&lt;br /&gt;foreign key (ssn)references employee(ssn))&lt;br /&gt;&lt;br /&gt;create table part(&lt;br /&gt;part_id int not null,&lt;br /&gt;part_name varchar(10) not null,&lt;br /&gt;fac_id int not null,&lt;br /&gt;primary key (part_id,fac_id),&lt;br /&gt;foreign key (fac_id) references factory (fac_id))&lt;br /&gt;&lt;br /&gt;alter table employee add &lt;br /&gt;foreign key(fac_id) references factory(fac_id)&lt;br /&gt;&lt;br /&gt;Try to decode the code above firstly! I will explain the code at the next article (=&lt;br /&gt;&lt;br /&gt;Hint: Since i could not captured the fac_id foreign key into the employee table when i am creating i added the foreign key by alter table.I could not captured that foreign key first since the table factory and the table employee include each other's primary key as foreign key.So i needed to create factory table first and than add the foreign key by alter table.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7330791083278094157-5866921352732362209?l=computerengineering1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computerengineering1.blogspot.com/feeds/5866921352732362209/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7330791083278094157&amp;postID=5866921352732362209' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/5866921352732362209'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/5866921352732362209'/><link rel='alternate' type='text/html' href='http://computerengineering1.blogspot.com/2008/04/creating-database-system-dbms.html' title='Creating Database System (DBMS)'/><author><name>comp eng</name><uri>http://www.blogger.com/profile/05638456812492286200</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7330791083278094157.post-2657628336426544078</id><published>2008-03-31T08:21:00.000-07:00</published><updated>2008-12-11T05:29:00.613-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='use case'/><category scheme='http://www.blogger.com/atom/ns#' term='java'/><category scheme='http://www.blogger.com/atom/ns#' term='formula'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><category scheme='http://www.blogger.com/atom/ns#' term='MySQL'/><category scheme='http://www.blogger.com/atom/ns#' term='thin client'/><category scheme='http://www.blogger.com/atom/ns#' term='adminstrator'/><category scheme='http://www.blogger.com/atom/ns#' term='pseudocode'/><category scheme='http://www.blogger.com/atom/ns#' term='distributed'/><category scheme='http://www.blogger.com/atom/ns#' term='SAP'/><category scheme='http://www.blogger.com/atom/ns#' term='apache'/><category scheme='http://www.blogger.com/atom/ns#' term='flash'/><category scheme='http://www.blogger.com/atom/ns#' term='html'/><category scheme='http://www.blogger.com/atom/ns#' term='asp'/><title type='text'>Thin and Fat Client Model</title><content type='html'>There are two type models of the client-server architecture.&lt;br /&gt;&lt;br /&gt;Thin-client model &lt;br /&gt;In a thin-client model, all of the application processing and data management is carried out on the server. The client is simply responsible for running the presentation software.&lt;br /&gt;&lt;br /&gt;Fat-client model &lt;br /&gt;In this model, the server is only responsible for data management. The software on the client implements the application logic and the interactions with the system user.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/_LKr-mE6g96c/R_ECvqRtQoI/AAAAAAAAADY/M3RUCWR6Fvg/s1600-h/blog.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_LKr-mE6g96c/R_ECvqRtQoI/AAAAAAAAADY/M3RUCWR6Fvg/s400/blog.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5183927663905817218" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Thin CLient Model:&lt;/strong&gt;&lt;br /&gt;-Used when legacy systems are migrated to client server architectures. &lt;br /&gt;-The legacy system acts as a server in its own right with a graphical interface implemented on a client.&lt;br /&gt;-A major disadvantage is that it places a heavy processing load on both the server and the network.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Fat Client Model:&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;-More processing is delegated to the client as the application processing is locally executed.&lt;br /&gt;-Most suitable for new C/S systems where the capabilities of the client system are known in advance.&lt;br /&gt;-More complex than a thin client model especially for management. New versions of the application have to be installed on all clients.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://3.bp.blogspot.com/_LKr-mE6g96c/R_EDKqRtQpI/AAAAAAAAADg/97r9sWcYsJ0/s1600-h/blog.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://3.bp.blogspot.com/_LKr-mE6g96c/R_EDKqRtQpI/AAAAAAAAADg/97r9sWcYsJ0/s400/blog.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5183928127762285202" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7330791083278094157-2657628336426544078?l=computerengineering1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computerengineering1.blogspot.com/feeds/2657628336426544078/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7330791083278094157&amp;postID=2657628336426544078' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/2657628336426544078'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/2657628336426544078'/><link rel='alternate' type='text/html' href='http://computerengineering1.blogspot.com/2008/03/thin-and-fat-client-model.html' title='Thin and Fat Client Model'/><author><name>comp eng</name><uri>http://www.blogger.com/profile/05638456812492286200</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_LKr-mE6g96c/R_ECvqRtQoI/AAAAAAAAADY/M3RUCWR6Fvg/s72-c/blog.bmp' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7330791083278094157.post-1817061015218556342</id><published>2008-03-30T13:51:00.000-07:00</published><updated>2008-12-11T05:29:01.202-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='server'/><category scheme='http://www.blogger.com/atom/ns#' term='thin client'/><category scheme='http://www.blogger.com/atom/ns#' term='distributed'/><category scheme='http://www.blogger.com/atom/ns#' term='fat client'/><category scheme='http://www.blogger.com/atom/ns#' term='system'/><category scheme='http://www.blogger.com/atom/ns#' term='atm'/><title type='text'>Client Server Model</title><content type='html'>-Distributed system model which shows how data and processing is distributed across a range of components.&lt;br /&gt;-Set of stand-alone servers which provide specific services such as printing, data management, etc.&lt;br /&gt;-Set of clients which call on these services.&lt;br /&gt;-Network which allows clients to access servers.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://2.bp.blogspot.com/_LKr-mE6g96c/R-_-46RtQlI/AAAAAAAAADA/R1IzTOnagos/s1600-h/blog.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_LKr-mE6g96c/R-_-46RtQlI/AAAAAAAAADA/R1IzTOnagos/s400/blog.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5183641949796385362" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;-The application is modelled as a set of services that are provided by servers and a set of clients that use these services.&lt;br /&gt;-Clients know of servers but servers need not know of clients.&lt;br /&gt;-Clients and servers are logical processes &lt;br /&gt;-The mapping of processors to processes is not necessarily 1 : 1.&lt;br /&gt;&lt;br /&gt;A client-server system:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_LKr-mE6g96c/R-__YqRtQmI/AAAAAAAAADI/fSXNeKWQKkc/s1600-h/blog.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_LKr-mE6g96c/R-__YqRtQmI/AAAAAAAAADI/fSXNeKWQKkc/s400/blog.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5183642495257231970" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Computers in C/s network:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_LKr-mE6g96c/R-__yaRtQnI/AAAAAAAAADQ/Yl5_QbqHsB4/s1600-h/blog.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_LKr-mE6g96c/R-__yaRtQnI/AAAAAAAAADQ/Yl5_QbqHsB4/s400/blog.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5183642937638863474" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7330791083278094157-1817061015218556342?l=computerengineering1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computerengineering1.blogspot.com/feeds/1817061015218556342/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7330791083278094157&amp;postID=1817061015218556342' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/1817061015218556342'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/1817061015218556342'/><link rel='alternate' type='text/html' href='http://computerengineering1.blogspot.com/2008/03/client-server-model.html' title='Client Server Model'/><author><name>comp eng</name><uri>http://www.blogger.com/profile/05638456812492286200</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_LKr-mE6g96c/R-_-46RtQlI/AAAAAAAAADA/R1IzTOnagos/s72-c/blog.bmp' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7330791083278094157.post-2581918508695762608</id><published>2008-03-27T14:04:00.000-07:00</published><updated>2008-12-11T05:29:01.679-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='java'/><category scheme='http://www.blogger.com/atom/ns#' term='adding'/><category scheme='http://www.blogger.com/atom/ns#' term='pseudocode'/><category scheme='http://www.blogger.com/atom/ns#' term='asp .Net'/><category scheme='http://www.blogger.com/atom/ns#' term='large number'/><category scheme='http://www.blogger.com/atom/ns#' term='code'/><category scheme='http://www.blogger.com/atom/ns#' term='SAP'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><category scheme='http://www.blogger.com/atom/ns#' term='php c#'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><category scheme='http://www.blogger.com/atom/ns#' term='small number'/><category scheme='http://www.blogger.com/atom/ns#' term='html'/><title type='text'>Adding a Large and Small Number Error</title><content type='html'>The initial terms in such series are often relatively too large in comperison with the following ones. So after a few terms, we have been adding very small number to too large numbers.The error here is caused by the chopping of the computer while calculating the series.&lt;br /&gt;&lt;br /&gt;By the definiton above we examine the problems below:&lt;br /&gt;&lt;br /&gt;Problem 3: &lt;br /&gt;&lt;br /&gt;F(N)= Σ 1/(n*n) where n=1 to n=N&lt;br /&gt;&lt;br /&gt;Compute the series by adding with the variable n=1 to 10,000 and by adding the varieble n=10,000 to n=1.Compare the results.&lt;br /&gt;&lt;br /&gt;This is the code solution program of the problem in Java:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;import javax.swing.JOptionPane;&lt;br /&gt;public class series{&lt;br /&gt; public static void main(String args[]){&lt;br /&gt;  double x =0.0; &lt;br /&gt;  double y=0.0;&lt;br /&gt;  for(double i=1.0; i&lt;10001.0; i++){&lt;br /&gt;   x += 1.0/(i*i);&lt;br /&gt;  }&lt;br /&gt;  for(double i=10000.0; i&gt;0.0; i--){&lt;br /&gt;   y +=1/(i*i);&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;  JOptionPane.showMessageDialog(null,"The sum begined from n=1 :"+x+'\n'+"The sum begined from n=10,000 :"+y);&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;And these are the outputs:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://2.bp.blogspot.com/_LKr-mE6g96c/R-wNQqRtQkI/AAAAAAAAAC4/sfVVQO2rIUQ/s1600-h/series.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_LKr-mE6g96c/R-wNQqRtQkI/AAAAAAAAAC4/sfVVQO2rIUQ/s400/series.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5182531851074224706" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7330791083278094157-2581918508695762608?l=computerengineering1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computerengineering1.blogspot.com/feeds/2581918508695762608/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7330791083278094157&amp;postID=2581918508695762608' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/2581918508695762608'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/2581918508695762608'/><link rel='alternate' type='text/html' href='http://computerengineering1.blogspot.com/2008/03/adding-large-and-small-number-error.html' title='Adding a Large and Small Number Error'/><author><name>comp eng</name><uri>http://www.blogger.com/profile/05638456812492286200</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_LKr-mE6g96c/R-wNQqRtQkI/AAAAAAAAAC4/sfVVQO2rIUQ/s72-c/series.bmp' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7330791083278094157.post-6980510676105926843</id><published>2008-03-26T15:29:00.000-07:00</published><updated>2008-12-11T05:29:02.419-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='java'/><category scheme='http://www.blogger.com/atom/ns#' term='class'/><category scheme='http://www.blogger.com/atom/ns#' term='formula'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><category scheme='http://www.blogger.com/atom/ns#' term='MySQL'/><category scheme='http://www.blogger.com/atom/ns#' term='machine epsilon'/><category scheme='http://www.blogger.com/atom/ns#' term='asp .Net'/><category scheme='http://www.blogger.com/atom/ns#' term='pseudocode'/><category scheme='http://www.blogger.com/atom/ns#' term='jcreator'/><category scheme='http://www.blogger.com/atom/ns#' term='SAP'/><category scheme='http://www.blogger.com/atom/ns#' term='php'/><category scheme='http://www.blogger.com/atom/ns#' term='C++'/><category scheme='http://www.blogger.com/atom/ns#' term='html'/><title type='text'>Machine Epsilon</title><content type='html'>Machine epsilon is the smallest number when it is added to 1 your computer assumes it 1 briefely. It depends the physical features of your computer. After this definition let us create the pseudocode of a program that computes your machines' epsilons.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;epsilon=1&lt;br /&gt;DO&lt;br /&gt;IF(1+epsilon&lt;=1) EXIT&lt;br /&gt;epsilon=epsilon/2&lt;br /&gt;END DO&lt;br /&gt;epsilon=epsilon*2&lt;br /&gt;&lt;br /&gt;The code above is the pseudocode of a machine epsilon algorythm. I guess you know about pseudocode :) If you do not know do not be sorry since it is nothing :P It is a description of an algorythm that is language independent.YOu just write on what you think to do. That is it!&lt;br /&gt;&lt;br /&gt;Now let me give you the Java code of that algorythm and the output of it.&lt;br /&gt;&lt;br /&gt;import javax.swing.JOptionPane;&lt;br /&gt;&lt;br /&gt;public class epsilon{&lt;br /&gt; public static void main(String args[]){&lt;br /&gt;  double epsilon = 1.0;&lt;br /&gt;  for(int i=1; i&lt;100000; i++){&lt;br /&gt;&lt;br /&gt;  if(epsilon+1.0&lt;=1.0){&lt;br /&gt;  break;&lt;br /&gt;  }&lt;br /&gt;  else{&lt;br /&gt;   epsilon=epsilon/2.0;&lt;br /&gt;  }&lt;br /&gt;  } &lt;br /&gt;  epsilon=2*epsilon;&lt;br /&gt;  JOptionPane.showMessageDialog(null,"The epsilon of the machine is:"+epsilon);&lt;br /&gt; }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;Since i have explained each line of a java code example i think you can understand the steps and pseudocode helps you in this issue as well.&lt;br /&gt;&lt;br /&gt;So my output is in the figure below. But do not be confused if you have not got the same output since it depends the physical features of your PC!&lt;br /&gt;&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_LKr-mE6g96c/R-rVj6RtQjI/AAAAAAAAACw/CRBp-qBxkds/s1600-h/epsilon.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_LKr-mE6g96c/R-rVj6RtQjI/AAAAAAAAACw/CRBp-qBxkds/s400/epsilon.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5182189134158840370" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I will keep giving some java examples as well. Using Java in mathematic will suprise you or mathematics will suprise you ;)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7330791083278094157-6980510676105926843?l=computerengineering1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computerengineering1.blogspot.com/feeds/6980510676105926843/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7330791083278094157&amp;postID=6980510676105926843' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/6980510676105926843'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/6980510676105926843'/><link rel='alternate' type='text/html' href='http://computerengineering1.blogspot.com/2008/03/machine-epsilon.html' title='Machine Epsilon'/><author><name>comp eng</name><uri>http://www.blogger.com/profile/05638456812492286200</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_LKr-mE6g96c/R-rVj6RtQjI/AAAAAAAAACw/CRBp-qBxkds/s72-c/epsilon.bmp' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7330791083278094157.post-4129934407289342099</id><published>2008-03-25T14:15:00.000-07:00</published><updated>2008-12-11T05:29:02.944-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MySQL'/><category scheme='http://www.blogger.com/atom/ns#' term='java'/><category scheme='http://www.blogger.com/atom/ns#' term='adminstrator'/><category scheme='http://www.blogger.com/atom/ns#' term='phpmyadmin'/><category scheme='http://www.blogger.com/atom/ns#' term='asp .Net'/><category scheme='http://www.blogger.com/atom/ns#' term='activity diagram'/><category scheme='http://www.blogger.com/atom/ns#' term='SAP'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><category scheme='http://www.blogger.com/atom/ns#' term='flash'/><category scheme='http://www.blogger.com/atom/ns#' term='C++'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><title type='text'>Activity Diagram</title><content type='html'>Activity diagrams are used for to show a subprocess of a system by figures. Big black dot means the start and the Black dot and a circle outside it means end. Also the arrows represent yes and no answer to the process.That means if yes process done if no can not be done. The diamond are the process steps. &lt;br /&gt;We still continue on the example we examined at last two articles. Here are the some examples from the dynamic web site system:&lt;br /&gt;&lt;br /&gt;Activity diagram for use case of Adminstrator to send and receive mails.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://2.bp.blogspot.com/_LKr-mE6g96c/R-ls_aRtQgI/AAAAAAAAACY/p_8fewKimNM/s1600-h/activity.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://2.bp.blogspot.com/_LKr-mE6g96c/R-ls_aRtQgI/AAAAAAAAACY/p_8fewKimNM/s400/activity.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5181792682907615746" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Activity diagram for use case of all users to post messages.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_LKr-mE6g96c/R-luq6RtQhI/AAAAAAAAACg/cFs1mAziPPw/s1600-h/3activty.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_LKr-mE6g96c/R-luq6RtQhI/AAAAAAAAACg/cFs1mAziPPw/s400/3activty.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5181794529743553042" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Activity diagram for use case of Student to add comments.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_LKr-mE6g96c/R-lv7KRtQiI/AAAAAAAAACo/g-1ruePRXTk/s1600-h/4actvty.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_LKr-mE6g96c/R-lv7KRtQiI/AAAAAAAAACo/g-1ruePRXTk/s400/4actvty.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5181795908428055074" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7330791083278094157-4129934407289342099?l=computerengineering1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computerengineering1.blogspot.com/feeds/4129934407289342099/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7330791083278094157&amp;postID=4129934407289342099' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/4129934407289342099'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/4129934407289342099'/><link rel='alternate' type='text/html' href='http://computerengineering1.blogspot.com/2008/03/activity-diagram.html' title='Activity Diagram'/><author><name>comp eng</name><uri>http://www.blogger.com/profile/05638456812492286200</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_LKr-mE6g96c/R-ls_aRtQgI/AAAAAAAAACY/p_8fewKimNM/s72-c/activity.bmp' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7330791083278094157.post-3886308078615701295</id><published>2008-03-24T08:02:00.000-07:00</published><updated>2008-12-11T05:29:03.272-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='use case'/><category scheme='http://www.blogger.com/atom/ns#' term='adminstrator'/><category scheme='http://www.blogger.com/atom/ns#' term='php asp .Net'/><category scheme='http://www.blogger.com/atom/ns#' term='diagram'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><title type='text'>Use Case Diagram</title><content type='html'>Use case diagrams are known as the information about whole system with drawn syntax.The article just before that i have talked about a system: a dynamic web site system the use case diaram below belongs to the same example.&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_LKr-mE6g96c/R-fDdaRtQfI/AAAAAAAAACM/gEij2I8jxTc/s1600-h/usecase.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_LKr-mE6g96c/R-fDdaRtQfI/AAAAAAAAACM/gEij2I8jxTc/s400/usecase.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5181324806350258674" /&gt;&lt;/a&gt;&lt;br /&gt;Also some explanations about the diagram as:&lt;br /&gt;&lt;br /&gt;Use Case UC1  : Upload&amp;Download Process&lt;br /&gt;Primary Actor : Administrator&lt;br /&gt;Steakholders &amp; Interests:&lt;br /&gt;&lt;br /&gt;1. Administrator : Wants all rights to manage the site in minimal time and effort. Also their need is to achieve the site to manage it from every computer they want which by they can access to the Internet.&lt;br /&gt;2. Student : Wants reach to the documentations that he/she needs to download, and add comments to the annocuments also posting messages to the admins. These process needed to be done in a small time period.&lt;br /&gt;3. Invited Speaker : Wants  the rights for to add the documantations for their class in minimal effort.To get these rights they need to enter the web site by their user names and mail adresses that they reported to the admins before.&lt;br /&gt;4. Guest  : Just can read the page and post messages. Also become a member of the site with his/her student number.&lt;br /&gt;&lt;br /&gt;Preconditions : Administrator has logged in to the site by using their username and password.&lt;br /&gt;Success Guarantee (Postconditions) : Text is uploaded succesfully. Web site updated.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Main Success Scenario:&lt;br /&gt;&lt;br /&gt;1. Administrator opens his/her control panel.&lt;br /&gt;2. Administartor writes down the address of the document that he/she want to upload.&lt;br /&gt;3. Database stores the document file.&lt;br /&gt;4. Student/Invited Speaker /Guest reads the document from website.&lt;br /&gt;5. Student &amp; Invited Speaker downloads the document.&lt;br /&gt;6. Administrator delete the document link from website.&lt;br /&gt;&lt;br /&gt;Extensions:&lt;br /&gt;&lt;br /&gt;At any time system fails:&lt;br /&gt; 3.a. Database can not stores the file.&lt;br /&gt; 3.b. Wrong document file’s address entry by Administrator.&lt;br /&gt; 5.     Student &amp; Invited Speaker can not dowload the file since the system errors.&lt;br /&gt;&lt;br /&gt;For next article the activity diagram of the same example will be axplained.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7330791083278094157-3886308078615701295?l=computerengineering1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computerengineering1.blogspot.com/feeds/3886308078615701295/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7330791083278094157&amp;postID=3886308078615701295' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/3886308078615701295'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/3886308078615701295'/><link rel='alternate' type='text/html' href='http://computerengineering1.blogspot.com/2008/03/use-case-diagram.html' title='Use Case Diagram'/><author><name>comp eng</name><uri>http://www.blogger.com/profile/05638456812492286200</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_LKr-mE6g96c/R-fDdaRtQfI/AAAAAAAAACM/gEij2I8jxTc/s72-c/usecase.bmp' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7330791083278094157.post-9070232001101652106</id><published>2008-03-23T13:43:00.000-07:00</published><updated>2008-12-11T05:29:03.821-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='class'/><category scheme='http://www.blogger.com/atom/ns#' term='.net'/><category scheme='http://www.blogger.com/atom/ns#' term='SAP'/><category scheme='http://www.blogger.com/atom/ns#' term='diagram'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><category scheme='http://www.blogger.com/atom/ns#' term='php'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><category scheme='http://www.blogger.com/atom/ns#' term='asp'/><title type='text'>Class Diagrams</title><content type='html'>Consider about a web site that is a course specific web site. As most of us related with it i mean with most of us as students :) A web site that has a user entry and admins as professors and tha assitants of them. Also there are invited speakers whom have been invited to the classes and whom are in the software development market. As i did not said yet the site is the web site of the sofware programming course! See the below explaniations as example to the class diagram of the system:&lt;br /&gt;&lt;br /&gt;There are five classes in the system.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_LKr-mE6g96c/R-bLy6RtQeI/AAAAAAAAACE/UXHbSOhlfjc/s1600-h/ads%C4%B1z.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_LKr-mE6g96c/R-bLy6RtQeI/AAAAAAAAACE/UXHbSOhlfjc/s400/ads%C4%B1z.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5181052496833757666" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The description is as follows:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_LKr-mE6g96c/R-bLXqRtQdI/AAAAAAAAAB8/1OfGpbeOVfM/s1600-h/ads%C4%B1z.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_LKr-mE6g96c/R-bLXqRtQdI/AAAAAAAAAB8/1OfGpbeOVfM/s400/ads%C4%B1z.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5181052028682322386" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;And at last the class diagram:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_LKr-mE6g96c/R-bKe6RtQcI/AAAAAAAAAB0/rD8pQEFUIT4/s1600-h/ads%C4%B1z.bmp"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://1.bp.blogspot.com/_LKr-mE6g96c/R-bKe6RtQcI/AAAAAAAAAB0/rD8pQEFUIT4/s400/ads%C4%B1z.bmp" border="0" alt=""id="BLOGGER_PHOTO_ID_5181051053724746178" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Most info about class diagram will be explained in the following article. ALso some other diagrams activity or use case diagram infos and examples for the same system will be added to it.  &lt;br /&gt;See yas:))&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7330791083278094157-9070232001101652106?l=computerengineering1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computerengineering1.blogspot.com/feeds/9070232001101652106/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7330791083278094157&amp;postID=9070232001101652106' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/9070232001101652106'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/9070232001101652106'/><link rel='alternate' type='text/html' href='http://computerengineering1.blogspot.com/2008/03/class-diagrams.html' title='Class Diagrams'/><author><name>comp eng</name><uri>http://www.blogger.com/profile/05638456812492286200</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_LKr-mE6g96c/R-bLy6RtQeI/AAAAAAAAACE/UXHbSOhlfjc/s72-c/ads%C4%B1z.bmp' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7330791083278094157.post-1196528441738861948</id><published>2008-03-20T10:38:00.000-07:00</published><updated>2008-12-11T05:29:04.007-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='.net'/><category scheme='http://www.blogger.com/atom/ns#' term='birthday'/><category scheme='http://www.blogger.com/atom/ns#' term='SAP'/><category scheme='http://www.blogger.com/atom/ns#' term='php c#'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><category scheme='http://www.blogger.com/atom/ns#' term='asp'/><title type='text'>Birthday Alert!!!</title><content type='html'>Hi to everyone firstly &lt;br /&gt;&lt;br /&gt;Since its my birthday today i did not feel free to write any article.&lt;br /&gt;&lt;br /&gt;Just wanna say happy birthday to me :P&lt;br /&gt;&lt;br /&gt;&lt;a href="http://4.bp.blogspot.com/_LKr-mE6g96c/R-KkXqRtQXI/AAAAAAAAABM/k_s6PvGERJA/s1600-h/xml-birthday-cake-large.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_LKr-mE6g96c/R-KkXqRtQXI/AAAAAAAAABM/k_s6PvGERJA/s200/xml-birthday-cake-large.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5179883247821996402" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7330791083278094157-1196528441738861948?l=computerengineering1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computerengineering1.blogspot.com/feeds/1196528441738861948/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7330791083278094157&amp;postID=1196528441738861948' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/1196528441738861948'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/1196528441738861948'/><link rel='alternate' type='text/html' href='http://computerengineering1.blogspot.com/2008/03/birthday-alert.html' title='Birthday Alert!!!'/><author><name>comp eng</name><uri>http://www.blogger.com/profile/05638456812492286200</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_LKr-mE6g96c/R-KkXqRtQXI/AAAAAAAAABM/k_s6PvGERJA/s72-c/xml-birthday-cake-large.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7330791083278094157.post-8684148379322665532</id><published>2008-03-14T17:07:00.000-07:00</published><updated>2008-03-24T09:27:53.578-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='phptriad'/><category scheme='http://www.blogger.com/atom/ns#' term='MySQL'/><category scheme='http://www.blogger.com/atom/ns#' term='localhost'/><category scheme='http://www.blogger.com/atom/ns#' term='asp .Net'/><category scheme='http://www.blogger.com/atom/ns#' term='SAP'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><category scheme='http://www.blogger.com/atom/ns#' term='php'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><title type='text'>PhpTriad</title><content type='html'>In this article i want to introduce you my favorite software tool PhpTriad :) I love it since it is easy and free to download and install. You can find lots of versions of PhpTriad for your platform. This is a link for you to download PhpTriad&lt;br /&gt;&lt;br /&gt;http://www.sourceforge.net.&lt;br /&gt; &lt;br /&gt;But there are many sources that you can download it from if you search on Google you will see :)&lt;br /&gt;&lt;br /&gt;So what is PhpTriad? Php Triad is a complex tool of Php, MySQL and Apache that are your general requirements for coding in Php. Installation is very very easy. But i will explain althpugh it is just clicking the button install and done after the installation completed.&lt;br /&gt; &lt;br /&gt;So then you installed the program let's start to using it. Fİrstly you need to click on the icon "winmysqladmin" at the adres c:/apache/mysql/bin and then you will type your user name and the password. Please choose a good one since you will need it for oyur databases and it can be setted just at the installation.If the installation is completed succsfully an icon at at the right bottom of your screen that looks like traffic lights.So it need to be green to represent of working.&lt;br /&gt;&lt;br /&gt;It did not finished yet :) It is not easy as i said :P We have a little more work then by clicking to start at the programs, you will see a segment called 'Programs' when you click on this menu please start the program: Programs/PhpTriad/Apache Console/Start Apache. this is for to boot Apache. Wen you run the program an command console will appear at your screen which states that 'Running Apache'. Please be sure that the program is always running while you want to run the website you are coding.You need to put your files that you want to show in : C:apachehtdocs. after all of these PhpTriad is ready to use! Just run your browser and write to the adress http://localhost/filename.php ;)&lt;br /&gt;&lt;br /&gt;I wish you to have good coding :)&lt;br /&gt;Good Luck!!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7330791083278094157-8684148379322665532?l=computerengineering1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computerengineering1.blogspot.com/feeds/8684148379322665532/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7330791083278094157&amp;postID=8684148379322665532' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/8684148379322665532'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/8684148379322665532'/><link rel='alternate' type='text/html' href='http://computerengineering1.blogspot.com/2008/03/phptriad.html' title='PhpTriad'/><author><name>comp eng</name><uri>http://www.blogger.com/profile/05638456812492286200</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7330791083278094157.post-5972477278273055919</id><published>2008-03-09T14:04:00.000-07:00</published><updated>2008-03-24T09:28:45.774-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='phptriad'/><category scheme='http://www.blogger.com/atom/ns#' term='MySQL'/><category scheme='http://www.blogger.com/atom/ns#' term='phpmyadmin'/><category scheme='http://www.blogger.com/atom/ns#' term='asp .Net'/><category scheme='http://www.blogger.com/atom/ns#' term='SAP'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><category scheme='http://www.blogger.com/atom/ns#' term='php'/><category scheme='http://www.blogger.com/atom/ns#' term='apache'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><title type='text'>Php Kitbag</title><content type='html'>&lt;div&gt;Althuogh i wrote an article about the php programs i think an article with more explaniation will be more helpfull. But it will be by parts since i have not got lots of time for once :) &lt;/div&gt;&lt;br /&gt;&lt;div&gt;Firstly as i said the kitbag of php has the components:&lt;/div&gt;&lt;br /&gt;&lt;ol&gt;&lt;br /&gt;&lt;li&gt;PHP 5&lt;/li&gt;&lt;br /&gt;&lt;li&gt;Apache Web Server&lt;/li&gt;&lt;br /&gt;&lt;li&gt;MySQL or MSSQL&lt;/li&gt;&lt;br /&gt;&lt;li&gt;PHPMyAdmin&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;&lt;p&gt;As i have said before you can get the PHP 5 program from &lt;a href="http://www.php.net/"&gt;www.php.net&lt;/a&gt; . &lt;/p&gt;&lt;br /&gt;&lt;p&gt;You can get the Apache from &lt;a href="http://www.apache.org/"&gt;www.apache.org&lt;/a&gt; . From this address you can click on HTTP Servers and then download the last version of Apache. After download we are starting to installation of Apache first. By double click on the folder you have downloaded (.msi) you start to install Apache. &lt;/p&gt;&lt;br /&gt;&lt;p&gt; &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7330791083278094157-5972477278273055919?l=computerengineering1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computerengineering1.blogspot.com/feeds/5972477278273055919/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7330791083278094157&amp;postID=5972477278273055919' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/5972477278273055919'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/5972477278273055919'/><link rel='alternate' type='text/html' href='http://computerengineering1.blogspot.com/2008/03/php-kitbag.html' title='Php Kitbag'/><author><name>comp eng</name><uri>http://www.blogger.com/profile/05638456812492286200</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7330791083278094157.post-1527867300508956635</id><published>2008-03-07T13:36:00.000-08:00</published><updated>2008-03-24T09:29:27.189-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='phptriad'/><category scheme='http://www.blogger.com/atom/ns#' term='MySQL'/><category scheme='http://www.blogger.com/atom/ns#' term='localhost'/><category scheme='http://www.blogger.com/atom/ns#' term='asp .Net'/><category scheme='http://www.blogger.com/atom/ns#' term='SAP'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><category scheme='http://www.blogger.com/atom/ns#' term='php'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><category scheme='http://www.blogger.com/atom/ns#' term='html'/><title type='text'>Introduction to PHP 2</title><content type='html'>Firstly PHP is a SSS(Server Side Script). This means if a user enter the site that is prepared by using PHP can only see the HTML output. For instance we have written a program and create an executable code. Then the executable code generates an output to the screen and you can not see the real codes of the program. This is the process of SSS. It generates an output to the screen.&lt;br /&gt;&lt;br /&gt;So at last this is our first PHP code example :))&lt;br /&gt;&lt;br /&gt;&lt; html &gt;  &lt;br /&gt;&lt; body &gt;&lt;br /&gt;&lt;br /&gt;&lt; ?php  &lt;br /&gt;&lt;br /&gt;echo "Hello Web!!!";&lt;br /&gt;&lt;br /&gt;? &gt;  &lt;br /&gt;&lt;br /&gt;&lt; /body &gt;&lt;br /&gt;&lt; /html &gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt; ?php&lt;/strong&gt; is the code piece that the PHP codes start. PHP when realizes the sign &lt;strong&gt;&lt; ?&lt;/strong&gt; it interprets the codes until &lt;strong&gt;?&gt; &lt;/strong&gt;sign. It does not executes the rest of the code. Since that the output of the code i have written above is that:&lt;br /&gt;&lt;br /&gt;&lt; html &gt;  &lt;br /&gt;&lt; body &gt;&lt;br /&gt;&lt;br /&gt;Hello Web!!!&lt;br /&gt;&lt;br /&gt;&lt; /body &gt;&lt;br /&gt;&lt; /html &gt;&lt;br /&gt;&lt;br /&gt;So this is the process... As you see echo is a function like the print functions in C/C++ or Java.&lt;br /&gt;&lt;br /&gt;See you at next article...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7330791083278094157-1527867300508956635?l=computerengineering1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computerengineering1.blogspot.com/feeds/1527867300508956635/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7330791083278094157&amp;postID=1527867300508956635' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/1527867300508956635'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/1527867300508956635'/><link rel='alternate' type='text/html' href='http://computerengineering1.blogspot.com/2008/03/introduction-to-php-2.html' title='Introduction to PHP 2'/><author><name>comp eng</name><uri>http://www.blogger.com/profile/05638456812492286200</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7330791083278094157.post-6733278999392399413</id><published>2008-03-03T15:09:00.000-08:00</published><updated>2008-03-24T09:30:41.167-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='phptriad'/><category scheme='http://www.blogger.com/atom/ns#' term='MySQL'/><category scheme='http://www.blogger.com/atom/ns#' term='localhost'/><category scheme='http://www.blogger.com/atom/ns#' term='asp .Net'/><category scheme='http://www.blogger.com/atom/ns#' term='SAP'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><category scheme='http://www.blogger.com/atom/ns#' term='php'/><category scheme='http://www.blogger.com/atom/ns#' term='flash'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><title type='text'>Introduction to PHP</title><content type='html'>PHP means "Personel Home Page Tools" which invented by Rasmus Lerdorf nearly in 1995 or earlier. It is a SSS (Server Side Script) which he needs strong on database and answers to dynamic site design needs. After the expansion of PHP had became "PHP is a Hypertext Pre-Processor".If you want more detail about history of PHP take a look at &lt;a href="http://www.php.net/manual/en/history.php"&gt;http://www.php.net/manual/en/history.php&lt;/a&gt; .&lt;br /&gt;&lt;br /&gt;Now let's start to understand the capablities of PHP.For me it is capable for every work :) Since it is developed more and more it is good for everything you want to do.&lt;br /&gt;&lt;ul&gt;&lt;li&gt;You can create your own graphics by PHP.&lt;/li&gt;&lt;li&gt;You can create Flash documents without any need to Flash and some kind software.&lt;/li&gt;&lt;li&gt;PHP is good for interwork with every database system such as MS SQL, MySQL etc.&lt;/li&gt;&lt;li&gt;And if you can not find something you need you can write it on your own and can share it.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;And it is time to explain how you can use PHP now. PHP is an platform independent web language.Firstly you need to decide on which web server you will use. I recommend you Apache which is a platform dependent server as well. If you are a Windows platform user it is nice for you to use PHPTriad. It includes both Apache, MySql and PHP. Also PHPTriad is called as &lt;strong&gt;sokkit &lt;/strong&gt;after its 2nd version which you can acces from &lt;a href="http://www.sokkit.net/"&gt;http://www.sokkit.net&lt;/a&gt; . &lt;/p&gt;&lt;p&gt;After you do this wait for your PHP codes and explainings of them and wait for next article:)&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7330791083278094157-6733278999392399413?l=computerengineering1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computerengineering1.blogspot.com/feeds/6733278999392399413/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7330791083278094157&amp;postID=6733278999392399413' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/6733278999392399413'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/6733278999392399413'/><link rel='alternate' type='text/html' href='http://computerengineering1.blogspot.com/2008/03/introduction-to-php.html' title='Introduction to PHP'/><author><name>comp eng</name><uri>http://www.blogger.com/profile/05638456812492286200</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7330791083278094157.post-2576353754782388709</id><published>2008-03-02T03:26:00.000-08:00</published><updated>2008-03-24T09:31:35.037-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='phptriad'/><category scheme='http://www.blogger.com/atom/ns#' term='MySQL'/><category scheme='http://www.blogger.com/atom/ns#' term='localhost'/><category scheme='http://www.blogger.com/atom/ns#' term='java'/><category scheme='http://www.blogger.com/atom/ns#' term='asp .Net'/><category scheme='http://www.blogger.com/atom/ns#' term='jcreator'/><category scheme='http://www.blogger.com/atom/ns#' term='SAP'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><category scheme='http://www.blogger.com/atom/ns#' term='php'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><title type='text'>Where to Execute Our Codes?</title><content type='html'>Although most of object oriented programming languages are mostly platform dependent we generally use soma programms to execute them. For instance JCreator is mostly known one taht you can access from &lt;a href="http://www.jcreator.com/"&gt;http://www.jcreator.com&lt;/a&gt;.&lt;br /&gt;And the other program is Microsoft Visual Studio. By it you can work on many languages. One of them is the newest C# which i will show examples later.&lt;br /&gt;&lt;br /&gt;In this article i will give an example code in Java again.&lt;br /&gt;&lt;br /&gt;import javax.swing.JOptionPane;&lt;br /&gt;public class hmwrk4_1 {       &lt;br /&gt;public static void main (String[] args) {   &lt;br /&gt;System.out.println("Feet     Meters\n----     ------");    &lt;br /&gt;for(double i=1.0; i&lt;=10.0; i++) {&lt;br /&gt;double meter=footToMeter(i);           &lt;br /&gt;if(i==10.0) {      &lt;br /&gt;System.out.println(i+"     "+meter);       }     &lt;br /&gt;else      System.out.println(i+"      "+meter);     }         &lt;br /&gt;System.out.println("\nMeters   Feet\n------   ----");    &lt;br /&gt;for(double i=20.0; i&lt;=65.0; i+=5){&lt;br /&gt;double foot=meterToFoot(i);     &lt;br /&gt;String s1=String.valueOf(foot);     &lt;br /&gt;if(foot&gt;99.999){      &lt;br /&gt;String s2=s1.substring(0,7);      &lt;br /&gt;System.out.println(i+"     "+s2);      }     &lt;br /&gt;else{      String s2=s1.substring(0,6);      System.out.println(i+"     "+s2);      }     } }&lt;br /&gt;public static double footToMeter(double foot){&lt;br /&gt;double meter=0.305*foot;&lt;br /&gt;return meter;}&lt;br /&gt;public static double meterToFoot(double meter){&lt;br /&gt;double foot=meter/0.305; return foot;}}&lt;br /&gt;&lt;br /&gt;In comment you can write on what the program does. I will add it on the article later&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7330791083278094157-2576353754782388709?l=computerengineering1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computerengineering1.blogspot.com/feeds/2576353754782388709/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7330791083278094157&amp;postID=2576353754782388709' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/2576353754782388709'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/2576353754782388709'/><link rel='alternate' type='text/html' href='http://computerengineering1.blogspot.com/2008/03/where-to-execute-our-codes.html' title='Where to Execute Our Codes?'/><author><name>comp eng</name><uri>http://www.blogger.com/profile/05638456812492286200</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7330791083278094157.post-5353371908506982625</id><published>2008-02-29T14:27:00.000-08:00</published><updated>2008-12-11T05:29:04.737-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='phptriad'/><category scheme='http://www.blogger.com/atom/ns#' term='MySQL'/><category scheme='http://www.blogger.com/atom/ns#' term='localhost'/><category scheme='http://www.blogger.com/atom/ns#' term='java'/><category scheme='http://www.blogger.com/atom/ns#' term='asp .Net'/><category scheme='http://www.blogger.com/atom/ns#' term='jcreator'/><category scheme='http://www.blogger.com/atom/ns#' term='formula'/><category scheme='http://www.blogger.com/atom/ns#' term='SAP'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><category scheme='http://www.blogger.com/atom/ns#' term='php'/><category scheme='http://www.blogger.com/atom/ns#' term='joptionpane'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><title type='text'>Introduction to Programming in Java</title><content type='html'>I will explain programming in Java on an example. In this example we will calculate the roots of an equation whose solution is not a complex root.Our program will give an output if the root of the equation is complex as COMPLEX ROOT!!! User will enter the coefficients of the equation.&lt;br /&gt;&lt;br /&gt;&lt;div&gt;Let us start to examine the code of the program:&lt;/div&gt;&lt;br /&gt;&lt;div&gt;import javax.swing.JOptionPane; --&gt; This code is to activate JOptionPane function of Java.&lt;/div&gt;&lt;br /&gt;&lt;div&gt;public class hmwrk2_1{ ---&gt; Firstly we create our class which our object will be included&lt;/div&gt;&lt;br /&gt;&lt;div&gt;public static void main (String[] args) { ---&gt;We are starting to write the main function of our code&lt;/div&gt;&lt;br /&gt;&lt;div&gt;int a, b, c; ---&gt; Now we declare our variables which i have explained in Programming Languages article &lt;/div&gt;&lt;br /&gt;&lt;div&gt;a=Integer.parseInt(JOptionPane.showInputDialog(null,"ax^2 + bx + c \n please enter the coefficient a:")); ---&gt; We are assigning variable a to the value which user enters&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;img id="BLOGGER_PHOTO_ID_5172538523534264050" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://4.bp.blogspot.com/_LKr-mE6g96c/R8iMYcJIhvI/AAAAAAAAAAc/6vAV7LteVqg/s200/ads%C4%B1z2.bmp" border="0" /&gt;&lt;br /&gt;&lt;br /&gt;b=Integer.parseInt(JOptionPane.showInputDialog(null,"ax^2 + bx + c \n please enter the coefficient b:")); ---&gt;we are assigning the value which user enters to the variable b again&lt;br /&gt;&lt;br /&gt;&lt;div&gt;c=Integer.parseInt(JOptionPane.showInputDialog(null,"ax^2 + bx + c \n please enter the constant c:")); ---&gt;same process as above.&lt;/div&gt;&lt;br /&gt;&lt;div&gt;double x1,x2; ---&gt; We are declaring 2 double values for roots of the equation&lt;/div&gt;&lt;br /&gt;&lt;div&gt;double delta=(b*b)-(4*a*c); ---&gt;We are declaring double delta and setting it to a equation in formula&lt;/div&gt;&lt;br /&gt;&lt;div&gt;if(delta&lt;0){&gt; If delta value that we calculated by the values user have entered is smaller than zero we we get the warning complex root!!!&lt;/div&gt;&lt;br /&gt;&lt;div&gt;JOptionPane.showMessageDialog(null,"COMPLEX ROOT!!!"); } &lt;/div&gt;&lt;br /&gt;&lt;img id="BLOGGER_PHOTO_ID_5172540636658173730" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://4.bp.blogspot.com/_LKr-mE6g96c/R8iOTcJIhyI/AAAAAAAAAA0/iKL_oAwjKQo/s200/ads%C4%B1z2.bmp" border="0" /&gt;&lt;br /&gt;&lt;div&gt;else if (delta==0){ ---&gt;If delta value equals to zero&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;div&gt;x1 = x2 = -b/(2*a); ---&gt; We calculate the roots as in formula.&lt;/div&gt;&lt;br /&gt;&lt;div&gt;JOptionPane.showMessageDialog(null,"root= "+x1);---&gt; And printing one of them to the screen&lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;img id="BLOGGER_PHOTO_ID_5172541173529085746" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://1.bp.blogspot.com/_LKr-mE6g96c/R8iOysJIhzI/AAAAAAAAAA8/ZS6N2gGrf5k/s200/ads%C4%B1z2.bmp" border="0" /&gt;&lt;br /&gt;&lt;div&gt;} &lt;/div&gt;&lt;br /&gt;&lt;div&gt;else { ---&gt; If the value of delta is bigger than zero &lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;div&gt;x1=(-b+(Math.sqrt(delta)))/(2*a); ---&gt; We set x1 and x2 variables as in formula.&lt;/div&gt;&lt;br /&gt;&lt;div&gt;x2=(-b-(Math.sqrt(delta)))/(2*a); &lt;/div&gt;&lt;br /&gt;&lt;div&gt;JOptionPane.showMessageDialog(null,"root1= "+x1+"\nroot2= "+x2); ---&gt; And printing both of them to the screen &lt;/div&gt;&lt;br /&gt;&lt;div&gt;&lt;/div&gt;&lt;img id="BLOGGER_PHOTO_ID_5172541985277904706" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: hand; TEXT-ALIGN: center" alt="" src="http://2.bp.blogspot.com/_LKr-mE6g96c/R8iPh8JIh0I/AAAAAAAAABE/Bot88LNJoqg/s200/ads%C4%B1z2.bmp" border="0" /&gt;&lt;br /&gt;&lt;div&gt;}&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;div&gt;}&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;div&gt;}&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7330791083278094157-5353371908506982625?l=computerengineering1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computerengineering1.blogspot.com/feeds/5353371908506982625/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7330791083278094157&amp;postID=5353371908506982625' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/5353371908506982625'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/5353371908506982625'/><link rel='alternate' type='text/html' href='http://computerengineering1.blogspot.com/2008/02/introduction-to-programming-in-java.html' title='Introduction to Programming in Java'/><author><name>comp eng</name><uri>http://www.blogger.com/profile/05638456812492286200</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_LKr-mE6g96c/R8iMYcJIhvI/AAAAAAAAAAc/6vAV7LteVqg/s72-c/ads%C4%B1z2.bmp' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7330791083278094157.post-507147730422031135</id><published>2008-02-28T14:10:00.000-08:00</published><updated>2008-03-24T09:34:13.375-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='phptriad'/><category scheme='http://www.blogger.com/atom/ns#' term='MySQL'/><category scheme='http://www.blogger.com/atom/ns#' term='localhost'/><category scheme='http://www.blogger.com/atom/ns#' term='asp .Net'/><category scheme='http://www.blogger.com/atom/ns#' term='object'/><category scheme='http://www.blogger.com/atom/ns#' term='SAP'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><category scheme='http://www.blogger.com/atom/ns#' term='php'/><category scheme='http://www.blogger.com/atom/ns#' term='oriented'/><category scheme='http://www.blogger.com/atom/ns#' term='C++'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><title type='text'>Programming Languages</title><content type='html'>Instead there is another old languages the most popular programming languages are object oriented ones such as C++ and Java. ın these two more independent one is Java since it is platform independency. Java programs can be executable on every platform since it structure.&lt;br /&gt;While using these languages you define some object by creating classes and you can improve that classes by inheritance. I mean first you write a class than you get all the features of the class and adding new features to it you create a new class. For instance you create a Car class that has just gas varible (a variable is a memory area that stores the gas value of the Car you created and you can change the value by programming since it is called variable!) to improve that Car you write a BetterCar class and get the gas variable with the same type and you add DecreaseSpeed variable to it to decrease speed for example.&lt;br /&gt;There is also set-oriented languages as SQL. While using SQL you get a set as output although you get a object as output by using object-oriented languages. SQL cammands are used to create a database and improve it. Adding it datas deleting datas from the database and so on. Also you can has the data set as output to your any command.In SQL the commands are called as Query. There are three platforms that you can use SQL. These are MySQL, MS SQL and ORACLE. These three are really near to each other some syntax differences occurs between them.&lt;br /&gt;I have tried to explain programming languages in a general format that i can. By adding some code examples and explaining them these things that i wrote are gonna be more clear. :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7330791083278094157-507147730422031135?l=computerengineering1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computerengineering1.blogspot.com/feeds/507147730422031135/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7330791083278094157&amp;postID=507147730422031135' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/507147730422031135'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/507147730422031135'/><link rel='alternate' type='text/html' href='http://computerengineering1.blogspot.com/2008/02/programming-languages.html' title='Programming Languages'/><author><name>comp eng</name><uri>http://www.blogger.com/profile/05638456812492286200</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7330791083278094157.post-8183030083842193141</id><published>2008-02-26T16:00:00.000-08:00</published><updated>2008-03-24T09:34:55.911-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='data'/><category scheme='http://www.blogger.com/atom/ns#' term='phptriad'/><category scheme='http://www.blogger.com/atom/ns#' term='localhost'/><category scheme='http://www.blogger.com/atom/ns#' term='and'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><category scheme='http://www.blogger.com/atom/ns#' term='oriented'/><category scheme='http://www.blogger.com/atom/ns#' term='MySQL'/><category scheme='http://www.blogger.com/atom/ns#' term='disk'/><category scheme='http://www.blogger.com/atom/ns#' term='asp .Net'/><category scheme='http://www.blogger.com/atom/ns#' term='SAP'/><category scheme='http://www.blogger.com/atom/ns#' term='php'/><category scheme='http://www.blogger.com/atom/ns#' term='storage'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><title type='text'>Data Storage</title><content type='html'>In this article i will begin with Bits and Their Storage.&lt;br /&gt;&lt;br /&gt;Inside today's computers the datas are stored as pattern of 0's and 1's. Every 0 and 1 is called as a &lt;strong&gt;&lt;em&gt;bit&lt;/em&gt;&lt;/strong&gt;. These patterns sometime represents a numeric value or a character from the alphabet. Some boolean operations can be implemented by them.The basic operations are &lt;strong&gt;&lt;em&gt;AND&lt;/em&gt;&lt;/strong&gt;, &lt;strong&gt;&lt;em&gt;OR&lt;/em&gt;&lt;/strong&gt;. AND operation is represented with a '.' and OR operation is represented with a '+'.&lt;br /&gt;&lt;br /&gt;AND OR&lt;br /&gt;0.0=0 0+0=0&lt;br /&gt;0.1=0 0+1=1&lt;br /&gt;1.0=0 1+0=1&lt;br /&gt;1.1=1 1+1=1&lt;br /&gt;&lt;br /&gt;These operations are made on physically on &lt;strong&gt;&lt;em&gt;gates&lt;/em&gt;&lt;/strong&gt; which can be produced from elctrical circuits. And the level of the voltage applied to these circuits represents 1 and 0. The voltage is the input of the gate and the output is a voltage again. These two gates has two inputs and one output. Also there is another structure called as &lt;strong&gt;&lt;em&gt;flip flop&lt;/em&gt;&lt;/strong&gt; which stores the past output value and represents a new output related to it and the inputs. Another and old storage technique is &lt;strong&gt;&lt;em&gt;core&lt;/em&gt;&lt;/strong&gt; which is donut shaping ring of magnetic metarial. The more recent method is &lt;strong&gt;&lt;em&gt;capacitor&lt;/em&gt;&lt;/strong&gt; that has two small matelic plates positioned parallel. A capacitor can be charged or discharged. So one situation represents 0 and another one 1. Also a &lt;strong&gt;&lt;em&gt;chip&lt;/em&gt;&lt;/strong&gt; consist of millions of capacitors. And in conclusion the most modern method is the &lt;strong&gt;&lt;em&gt;flash memories&lt;/em&gt;&lt;/strong&gt;. In this method bits are stored by trapping electrons in champers of silicon dioxide.Full champer and empty champer represents 1 or 0.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7330791083278094157-8183030083842193141?l=computerengineering1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computerengineering1.blogspot.com/feeds/8183030083842193141/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7330791083278094157&amp;postID=8183030083842193141' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/8183030083842193141'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/8183030083842193141'/><link rel='alternate' type='text/html' href='http://computerengineering1.blogspot.com/2008/02/data-storage.html' title='Data Storage'/><author><name>comp eng</name><uri>http://www.blogger.com/profile/05638456812492286200</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7330791083278094157.post-4158733796272743664</id><published>2008-02-26T12:35:00.000-08:00</published><updated>2008-03-24T09:38:41.966-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='phptriad'/><category scheme='http://www.blogger.com/atom/ns#' term='MySQL'/><category scheme='http://www.blogger.com/atom/ns#' term='localhost'/><category scheme='http://www.blogger.com/atom/ns#' term='asp .Net'/><category scheme='http://www.blogger.com/atom/ns#' term='SAP'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><category scheme='http://www.blogger.com/atom/ns#' term='php'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><category scheme='http://www.blogger.com/atom/ns#' term='science'/><category scheme='http://www.blogger.com/atom/ns#' term='computer'/><title type='text'>Introduction to Computer Science</title><content type='html'>A large outline of the working principle of the computer and networks can be analised in 10 parts as:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Data storage &lt;/li&gt;&lt;li&gt;Data manipulation&lt;/li&gt;&lt;li&gt;Operating system&lt;/li&gt;&lt;li&gt;Network&lt;/li&gt;&lt;li&gt;Internet&lt;/li&gt;&lt;li&gt;Algorithms&lt;/li&gt;&lt;li&gt;Programming languages&lt;/li&gt;&lt;li&gt;Software engineering&lt;/li&gt;&lt;li&gt;Data abstraction&lt;/li&gt;&lt;li&gt;Database systems&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;I will explain these parts in seperate articles.&lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7330791083278094157-4158733796272743664?l=computerengineering1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computerengineering1.blogspot.com/feeds/4158733796272743664/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7330791083278094157&amp;postID=4158733796272743664' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/4158733796272743664'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/4158733796272743664'/><link rel='alternate' type='text/html' href='http://computerengineering1.blogspot.com/2008/02/introduction-to-computer-science.html' title='Introduction to Computer Science'/><author><name>comp eng</name><uri>http://www.blogger.com/profile/05638456812492286200</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7330791083278094157.post-3829434158267635881</id><published>2008-02-24T13:40:00.000-08:00</published><updated>2008-03-24T09:39:19.876-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='phptriad'/><category scheme='http://www.blogger.com/atom/ns#' term='MySQL'/><category scheme='http://www.blogger.com/atom/ns#' term='localhost'/><category scheme='http://www.blogger.com/atom/ns#' term='asp .Net'/><category scheme='http://www.blogger.com/atom/ns#' term='expert'/><category scheme='http://www.blogger.com/atom/ns#' term='SAP'/><category scheme='http://www.blogger.com/atom/ns#' term='C#'/><category scheme='http://www.blogger.com/atom/ns#' term='php'/><category scheme='http://www.blogger.com/atom/ns#' term='computer engineering'/><category scheme='http://www.blogger.com/atom/ns#' term='SQL'/><title type='text'>What is computer engineering firstly ?</title><content type='html'>&lt;p&gt;Composite study of electronical engineering and computer science is called as computer engineering which provides you the knowledge of both harware and software components of a computer in detail. Generally takes 4 years to gradurate. At the 4th year of the education students have to complete one or two projects on an issue that they can decide on their own. They get help from their instructors as well.By these 4 years students become an engineer and deeply expert on these core knowledge areas below:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;Circuits and signals &lt;/li&gt;&lt;li&gt;Digital logic design &lt;/li&gt;&lt;li&gt;Electronics &lt;/li&gt;&lt;li&gt;Computer architectures &lt;/li&gt;&lt;li&gt;Algorythms &lt;/li&gt;&lt;li&gt;Different type of programming languages &lt;/li&gt;&lt;li&gt;Algorithms&lt;/li&gt;&lt;li&gt;Data Structures &lt;/li&gt;&lt;li&gt;Operating systems &lt;/li&gt;&lt;li&gt;Database design and management &lt;/li&gt;&lt;li&gt;Computer organiztions&lt;/li&gt;&lt;li&gt;Software engineering &lt;/li&gt;&lt;li&gt;Information systems and analysis&lt;/li&gt;&lt;li&gt;Computer networks &lt;/li&gt;&lt;li&gt;Embeded systems&lt;/li&gt;&lt;li&gt;Social and professional issues&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7330791083278094157-3829434158267635881?l=computerengineering1.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://computerengineering1.blogspot.com/feeds/3829434158267635881/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7330791083278094157&amp;postID=3829434158267635881' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/3829434158267635881'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7330791083278094157/posts/default/3829434158267635881'/><link rel='alternate' type='text/html' href='http://computerengineering1.blogspot.com/2008/02/what-is-computer-engineerinr-firstly.html' title='What is computer engineering firstly ?'/><author><name>comp eng</name><uri>http://www.blogger.com/profile/05638456812492286200</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry></feed>
