Posts

Showing posts from October, 2011

Case Study -- Independent Task

Dear all univ. students, I must apologize as I told in the previous meeting, that next Saturday I can't attend the class because Insya Allah I am going to present my Research in "International Seminar on Scientific Issues and Trends", in Yogyakarta. It's for this reason, there is a case study that you all have to transform to three Looping in (Loop_while,  and Loop_do_while). Oke, be Great university students that always learn and study hard, don't forget the file have to be sent to the mail der.unikom@gmail.com [Subject key is: your_classCode_yourNIM e.g : SI-9_3211001]. Here is the Algorithm.      Algorithm Average_Student_Scoring Declaration   N : integer //number of students > 0   n : integer //number of lessons > 0   nama : string   nilai : real   jumlah : real   rerata : real   j, k : integer // counter variable Description   read(N)   read(n)

International Seminar on Scientific Issues and Trend 2011

Being a Lecturer, one of the jobs that should be done is conducting research. This International seminar will be held on 22nd of October 2011 in Yogyakarta at Sahid Raya Hotel and AMIK BSI of Yogyakarta. In this International seminar also respondent or participant from University of British Canada (UBC), University Teknologi Malaysia (UTM) and Tohoko University. In this article I shared my Abstract of the full paper that will be presented in Yogyakarta Insya Allah. "Implementation of a Database System of Higher Education with Change Management Approach at Kopertis IV Jawa Barat and Banten". "This article focuses  to implement a data base system of  higher education with change management approach at Kopertis IV Jawa Barat and Banten. Some models used to implement the system such as Model of Kotter’s eight-step and multiple perspective in managing organizational change. This research conducted with qualitative to get data with depth interviewing and observation, s

Selection-01 in Java

package IF_1Java;  import java.io.BufferedReader;  import java.io.IOException;  import java.io.InputStreamReader;  public class IF_1 {  public static void main(String[] args) {    System.out.println("Masukan bilangan Anda : ");    BufferedReader bfr = new BufferedReader    (new InputStreamReader(System.in));    String angkaInput = null;    try {       angkaInput = bfr.readLine();   } catch (IOException e) {     e.printStackTrace(); }  int Data = Integer.valueOf(angkaInput).intValue();  if (Data > 0)     System.out.print ("Bilangan Positif"); else if (Data < 0)    System.out.print("Bilangan Negatif"); else    System.out.print ("Anda memasukan bilangan Nol"); }  } 

Case Study: Data Structure

Create the Algorithm in Java. The source code must be tested in tools of Java (Eclipse, or other tools) Here is the Algorithm: Algorithm Employee_xyz Declaration   nama : string   jjk : integer   honor : real Description   read(nama, jjk)   if jjk <= 40 then     honor <-- jjk * 45000   else      upah <-- (40 * 45000) - (jjk - 40) * 75000   endif   write(honor)