Posts

Showing posts from June, 2008

Scholarship from KFUPM

Image
At this occasion, I'd like to share my wish to get scholarship and study at KFUPM. KFUPM King Fath University of Petroleum and Mineral located n Dahran Saudi Arabia. this university is just for Men. the requirements that we must include are : 1. International TOEFL PBT 520, with 4.0 for writing. 2. GRE 3. GPA 3.0 or 2.75 for someone who want to take MBA program. 4. 3 recommendations for our Lecturer The study usually start on February and September every years. Some benefits are : 1. Get salary Real 1000 each month. 2. Paid leave 30 days in a month. 3. 2 tickets for departing and returning home. 4. and many other benefits. I wish, I would be there, on this September 2008. but we have to take both International TOEFL and GRE first. So who can take us to get there :). Created By Ader.

Regulations - - How to excange 2 containers in Pascal

Regulations in Pascal - - Exchanging 2 containers Well..Regulations is one of the basic algorithms. In this case, we are trying to make a program on how to exchange two containers. Just type this script in Turbo Pascal for Window (TPW) editor, or we can type in Delphi Progam, Delphi 5, 6 or 8 : Program Tukar_isi_bejana; uses wincrt; var bejA : string[25]; bejB : string[25]; bejC : string[25]; {bejC is functioned as Temp} begin write('Entri contents of Bejana A = '); readln(bejA); write('Entri contents of Bejana B = '); readln(bejB); bejC := bejA; bejA := BejB; bejB := bejC; writeln; writeln('Now, contents of Bejana A is : ',bejA); writeln('And, contents of Bejana B is : ',bejB); writeln; writeln(‘----------------------------------------------‘); writeln(‘Created By Ader & Adi’); writeln(‘----------------------------------------------‘); end. Well, if we want to Run this program, just klik on Run menu, or CTRL+F9. One of the outputs of