Foto Bersama dengan Praktikan Algoritma Pemrograman Terstruktur

LAB Bisnis Intelligence System UNIVERSITAS TRUNOJOYO MADURA

Intensive English Training With LBPP LIA Surabaya

RKBD UNIVERSITAS TRUNOJOYO MADURA

Character Building With ESQ 165 Jakarta

REKTORAT UNIVERSITAS TRUNOJOYO MADURA

Foto Bersama dengan Praktikan Algoritma Pemrograman Terstruktur

LAB Bisnis Intelligence System UNIVERSITAS TRUNOJOYO MADURA

Foto Bersama dengan Praktikan BASIS DATA 1

LAB Bisnis Intelligence System UNIVERSITAS TRUNOJOYO MADURA

HAMMI Goes to School

AULA MAN 1 SAMPANG

burung

Selasa, 29 Mei 2012

Download Borland Turbo C++ 4.5

Download

ARTICLE ABOUT INFORMATIC MANAGEMENT

INFORMATICS MANAGEMENT
Informatic Management one branch of science that is wide enough for almost covers and associated with a variety of things about this life, where a collection of disciplines including science and informatics are specific techniques that process file into information to optimally utilize information technology or computer. In the Indonesian language, a term derived from French it’s informatique, which in Germanis called Informatic. Actually, the word is synonymous with the term computer sciencein the UnitedStatesandcomputingsciencein England.
Interm spen defenisian informatics, according to Philippe Dreyfus(1962)and l'Academie Francaise(1967)that defines informatics as follows:
Disciplines collection(scientific discipline)and the Discipline of Engineering(Engineering discipline)ares pecifically related to the transformation/processing of the"Symbolic Facts" (data/information), which mainly use the facility automated machines/computers.
In English the meaning is slightly different, it’s more emphasis on aspects of information processing in a systematic and rational.
If taken as a whole from an understanding of informatics at the top, logic and systematic approach is fairly dominant feature of Informatics, given the approach is keyin terms of getting the solutionin solving various problems.
In principle,this scholarship emphasizes how the file and information can be processed in such a technology-assisted automated. Aitomated technology that is not just one machine, but can involve multiple machines.These machines, commonly called a computer. Computer as the main ingredient in this scientific field has a high part very much, so simply peeling informatics ranging from how the machine works, how the file is processed in a manner that is understandable by the machine while the information is well understood by humans, to how the machine is able to communicate with other machines.
In general, Computer Science, better known by the name of Computer Science(Computer Science, CS) isthe study of computing, both hardware(hardware) and software(software). Computer science includes a variety of topics related to computers, from the abstract analysis of algorithms to more concrete subjects like programming languages​​, software, and hardware. As a discipline, Computer Science is different from computer programming, software engineering and computer engineering, even if the third term is often misunderstood.
Church-Turing thesis states that all the computational tools that have been commonly known exactly the same way what they can do, albeit with different efficiencies. This thesis is sometimes regarded as the foundation of computer science principle. Computer science experts usually emphasize the von Neumann computers or Touring machines, because that was the most computers in use today.Computer scientists are also studying other types of machines, some of which are practical(such as parallel and quantum) and some are quite theoretical(such as random and oracle).

Computer Science studying what can be done by the program, and what is not(computing and artificial intelligence), how the program should evaluate the results(algorithm), how programs should store and retrieve specific bit from an information(file structures), and how the program and users to communicate(the user interface and programming language).
Computer science is rooted in electronics, mathematics and linguistics.In the last three decades of the twentieth century, computer science has become a new discipline and has developed his own methods and terminology.
The first computer science department at Purdue University was founded in 1962. Almost all universities have departments of computer science now. The highest award in computer science is the Touring Award, the winner of this award are all pioneers in their fields.

Senin, 14 Mei 2012

Bilangan Prima C++

  -->
#include
#include

int cekPrima(int);

void main() {
int jumlahPrima, jumlahFaktor, awal;
cout<<"Batas Bilangan Awal : ";
cin>>awal;
cout<<"Batas bilangan Akhir: ";
cin>>jumlahPrima;

        for(int i=awal; i<=jumlahPrima; i++) {
             jumlahFaktor = cekPrima(i);
                    if(jumlahFaktor<=2) {
                    cout<<<" | ";
                   }
        }
        cout<
}

int cekPrima(int bilangan) {
        int jumlahFaktor = 0;
                for(int i=1; i<=bilangan; i++) {
                           if(bilangan%i==0) {
                                     jumlahFaktor++;
                           }
                }
                return jumlahFaktor;
}