Posts

Sorting with Buble sort at Pascal

Sorting with Buble sort became famous when applied in algorithm and programming especially for informatics university students. well.. here is the code that built in Pascal language..alhamdulillah..although I coded so many error, finally it done..   program sorting_bubleSortV1;  uses crt;    const Nmaks = 100;    type arrayInt = array[1..Nmaks] of integer;    var      {u : arrayInt;}      n : integer;      {maks : integer;}      l : arrayint;   procedure bacalarik(var l : arrayInt; n : integer);   var     k : integer;   begin     for k := 1 to n do     begin       write('masukan nilai : ');       readln(l[k]);     end;   end;   procedure urutgelombang1(var l : arrayInt; n : integer);   var     i : integer;  ...

Quee

What is Quee? for you who study in Informatics Engineering, Computer Sciency must have known about Quee, mustn't you. Ya.., Quee menggunakan konsep antrian FIFO (Fisrt in First Out), contoh real is easy..lihat antrian pembelian tiket kereta api yang manual ya..itu konsep Quee. Berikut diberikan contoh implementasi program Quee di C++ dengan method untuk AddQuee, DeleteQuee, DisplayElement, DisplayHeadTail. Materi lengkapnya sudah ane share buat para mahasiswa karyawan ya..coba di learnt, and discuss dipertemuan berikutnya jika ada yang didiskusikan, Now..here is the code please code manually, don't copy and paste :) to make us more understand about the code. #include <iostream> using namespace std; struct node{   int data;   node *next; }; class Queue{   private:     node *head;     node *tail;   public:     Queue();   void AddQueue(int i);   void DelQueue();   void CetakElement();   void Cetak...

Quizes..

here is the link for "Algorithm and Programming 1" quiz_AlgoritmaPemrograman and, here also the link for "Data Structure quize" quiz_StrukturData

eCommerce

Here is the link... EBusiness_and_eCommerce

Single Linked List examples

Berikut adalah contoh program Single Linked dengan satu simpul : -------------------------------------------------------------------------------------- #include <iostream> #include <string> #include <cstdlib> using namespace std; struct simpulNegara {     string nama;     simpulNegara* berikut; }; simpulNegara* buatSimpul(string negara) {     simpulNegara* pnegara;         pnegara = new (simpulNegara);     if (pnegara == NULL)     {         cout << "Pengalokasian " << negara              << "gagal dilaksanakan." << endl;                 exit(1); //akhir program     }         //Isi simpul     pnegara->nama = negara; ...

Decision support system

Salam..,Decision support system or DSS consists some materials form prentice hall and textbooks. here is the link to access some materials : DSS TextBookx DSS Prentice Hall Slide you can also join in the google group of DSS by acessing the link bellow Join DSS group Please keep learning patienly :)

Abstract Data Type at C++

Abstract Data Type atau ADT merupakan salah satu konsep dimana teknik pencoddingan dibagi kedalam beberapa bagian, misalnya bagian deklarasi record, bagian deklarasi tipe data primitif dan program utama. pada konsep Object Oriented Programming berikutnya terdapat konsep modularity, dimana kita bisa menggunakan fungsi-fungsi untuk digunakan di modul yang lain. Berikut akan diberikan contoh script dalam C++ yang sudah dibuat dalam tools CodeBlock dari contoh ADT: contoh_1 hanya berisi cara pengimplementasian record, di assignment di bagian proses dan ditampilkan.  ----------------------------------------------------------------------------------------------------------------- #include <iostream> #include <string> using namespace std; int main(){     //definisi struct pasien     struct pasien     {         string noPasien;         string nama;   ...

Data structure

Thanks to Creator who built the materals of "Data Structure", we hope it will be your merit. here is the link... Data Structure ;

Quiz of EBusiness

write down your answers in your won blog: 1. Analyze what is the difference of E Business and E-Commerce. 2. Analyze some terms bellow : B2B B2C C2C 3. Explain for about 200 words about some famous in E Commerce : eBay Amazon Walmart BukaLapak.com -------------------------------------------------------------------------------------------- write down your answer in your own Blog's posting

Quiz Strategi Algoritma

Image
Quiz                          : Strategi Algoritma Sifat                           : Open Book Soal I. 1.       Diberikan data sebagai berikut : W1 = 4 P1 = 22 W2 = 7 P2 = 32 W3 = 12 P3 = 52 W4 = 7 P4 = 12 Jika ditentukan kapasitas K adalah 16 a)       Buat langkah-langkah pencarian solusi 0/1 Knapsack secara Exhaustive Search b)       Tentukan himpunan bagian objek yang memberikan keuntungan maksimum 2.       Diberikan data mengacu pada gambar sebagai berikut : Gambar 2 TPS Rumah Diketahui N=5, start route adalah dari School, buat analisis route ...

Quiz Business Intelligence - Reg. B2

Image
Sifat : Open Book --------------------------------------------------------------------------------------------------- 1. Analisis oleh Busine s Intellegence Project Team      a ) .  The Core  team     b ) .  The extended team 2. Analisis IT Staff berdasarkan komponen dalam Business Justification Component berikut : 2. Rancang database OLTP untuk proses bisnis berikut ini :   "PT. Concura IT Solution adalah IT Konsultan yang memberikan jasa pembuatan aplikasi    berbasis web dan mobile, selain itu perusahaan ini pun memberikan jasa pelatihan /training    untuk instansi-intansi pemerintah maupun swasta khususnya dalam bidang teknologi dan informasi. 3. Buat database OLAP dari soal no. 2 diatas 4. Buat salah program transformasi untuk salah satu dimensi yang dibuat. (Buat menggunakan software Pentaho CE, dan DBMS MySql). *

Business Intelligence Group

Image
Berikut dilampirkan materi Business Intelligence untuk tugas resume dan presentasi individual. Tugas Individual Resume dan presentasi TextBook “BI Roadmap_” Text Book : “ Business Intelligence Roadmap_The complete Project Lifecycle for DSS Applications” here is the link : https://drive.google.com/open? id= 0B28OU4vdwU43eUppc2U1U1Zlblk Materi diresume dan dipresentasikan mulai Sabtu depan tanggal 18/3/2017.

Pre-test : Business Intelligence

Image
Buat Project Planning dengan asumsi akan membangun Project Business Intelligence di tempat kerja mahasiswa masing-masing, mengacu pada 8 indikator berikut. The project planning activities do not need to be performed linearly. Figure 3.8 indicates which activities can be performed concurrently. The list below briefly describes the activities associated with Step 3, Project Planning. 1. Determine the project requirements. You may have already prepared the objectives for the project and some highlevel requirements for the proposed scope during Step 1, Business Case Assessment. However, most likely they are not of sufficient detail to start the planning process. As part of the scope definition, review and revise the following requirements: data, functionality (reports and queries), and infrastructure (technical and nontechnical). 2.Determine the condition of the source files and databases. You can neither complete the project schedule nor commit to a delivery date without a good un...

Join "Logika Informatika" Group

This group is created to share some lessons about "Logika Informatika". Here is the link Logika Ifnormatika

Join "Strategi Algoritma" group

Strategi dan Algoritma consists of some strategy such as Brute Fore, Divide and conquer an many other algortihms. Well..here is the link. Strategi Algoritma

Pre-Test Business Intelligence

Image
Post-Test..of Business Intelliegence we have post test for about 45 minutes, you can open internet or text book write down your answer in one or two papers included your Name and ID Students ------------------------------------------------------------------------------------------------- 1. What is Business Intelligence (BI). 2. BI Decision-support applicants facilitate many activities, including those listed bellow : Multideimensional analysis, e.g OLAP click-stream analyisis Data Mining Forecasting Mining for text, content, and voice Analysis all those statements above. 3. Explain Development Approach as previous approach before BI Application release oncept built 4. Why traditional approach doesn't mact any more for building BI application release concept? 5. Analysis some steps of Methodology of BI's road map, based on this picture bellow :

Join Algoritma dan Pemrograman Group

Algorithm and programming is the lesson consists of Sequence, Selection, Looping. in this lesson also taught about procedure and function up to Array. Well..here is the link Algoritma dan Pemrograman

Today's "Tugas Pendahuluan" of DSS

1. Analisis oleh saudara mengenai : a) Decision support System b) Business Intelligence 2. Analisis oleh saudara empat fase dalam proses pengambilan keputusan . 3. Analisis model-model berikut yang digunakan dalam DSS : a) Iconic b) Analog c) Quantitative 4. Analisis oleh saudara DSS in Human  

Join group Decision Support System

This group containts of Decision support system which created for Midle and Strategic level. here is the link : Decision Support System

Join Group Applied Database III

This group is created for the students who take Applied Database III lesson. this course consits of Datawarehouse expecially the transformation for OLTP to OLAP in the case study. mor oven this course should deliver Business Intelligence. here is the link to join : AppliedDatabase3