News Update :

MEMBUAT NILAI MAHASISWA DENGAN PASCAL

Kamis, 19 Mei 2011

Kali ini saya akan sedikit sharing membuat program dengan menggunakan pascal yaitu:
MEMBUAT NILAI MAHASISWA DENGAN PASCAL

Berikut adalah syntax-nya :

uses wincrt;


type tb_mhs=record
nim:longint;
nama:string;
nilai,i,n:integer;
end;


var
mhs:array[1..10]of tb_mhs;
a,b,jum,ke:integer;
tuker:tb_mhs;
pilih:char;
posisi:array[1..10]of integer ;


begin
writeln(' FAJAR HUDY PRATAMA ');
writeln('     3105111375      ');
writeln('TEKNIK INFORMATIKA E');
writeln;


write('Masukkan Jumlah Mahasiswa : ');readln(jum);


repeat
ke:=ke+1;
writeln;
writeln('Masukkan Data Mahasiswa Ke ',ke,' :');
writeln('***********************************');
write('Masukkan NIM   : ');readln(mhs[ke].nim);
write('Masukkan NAMA  : ');readln(mhs[ke].nama);
write('Masukkan NILAI : ');readln(mhs[ke].nilai);
writeln('***********************************');
write('Ingin Tambah Mahasiswa ? Y/T: ');readln(pilih);
until ((pilih='t') or (pilih='T'));






clrscr;
writeln('DATA INPUT BELUM URUT');
writeln('===========================================================');
writeln('No  ||  Nim  ||  Nama  ||  Nilai ||');
writeln('===========================================================');
for a:=1 to ke do                                                    
writeln(a:4,'|',mhs[a].Nim:7,'|',mhs[a].Nama:8,'|',mhs[a].Nilai:8,'|');
writeln('===========================================================');
writeln;


for a:=1 to ke do
begin
    for b:=a+1 to ke do
    begin
    if mhs[a].nilai<mhs[b].nilai then
    begin
    tuker:=mhs[a];
    mhs[a]:= mhs[b];
    mhs[b]:= tuker;
    end;
    end;
end;




writeln;
writeln('RINCIAN DARI DATA YANG DI MASUKKAN');
writeln('===========================================================');
writeln('No  ||  Nim  ||  Nama  ||  Nilai ||');
for a:= 1 to ke do
writeln(a:4,'|',mhs[a].Nim:7,'|',mhs[a].Nama:8,'|',mhs[a].Nilai:8,'|');
writeln('===========================================================');
writeln;


end.

Nah  berikut Ini Adalah Tampilan Programnya :




Lebih Lengkap Klik disini

CARA KERJA PROCESSOR DALAM MEMPROSES DAN MEMBEDAKAN APLIKASI

Rabu, 18 Mei 2011

A.  A.   Pengertian Processor
Processor merupakan otak dan pusat pengendali computer yang didukung oleh kompunen lainnya. Processor adalah Sebuah IC yang mengontrol keseluruhan jalannya sebuah sistem komputer. Processor digunakan sebagai pusat atau otak dari komputer yang berfungsi untuk melakukan perhitungan dan menjalankan tugas.

Prosesor adalah chip yang sering disebut “Mikroprosessor” yang sekarang ukurannya sudah mencapai gigahertz. Ukuran tersebut adalah hitungan kecepatan prosesor dalam mengolah data atau informasi. Merk prosesor yang banyak beredar dipasatan adalah AMD, Apple, Cyrix VIA, IBM, IDT, dan Intel. Bagian dari Prosesor Bagian terpenting dari prosesor terbagi 3 yaitu :
·         Aritcmatics Logical Unit (ALU)
·         Control Unit (CU)
·         Memory Unit (MU)
Prosesor berfungsi seperti kalkulator, hanya saja dengan kemampuan pemrosesan data yang jauh lebih besar. Fungsi utamanya adalah melakukan operasi aritmatika dan logika terhadap data. Data tersebut diambil dari memori atau diperoleh dari alat input yang dioperasikan oleh operator seperti papan ketik (keyboard), mouse dan lainnya. Kerja prosesor ini dikontrol oleh sekumpulan instruksi software.

Software tersebut diperoleh atau dibaca dari media penyimpan seperti harddisk, disket, CD, dan lainnya. Kemudian instruksi-instruksi tadi disimpan dalam RAM. Setiap instruksi diberi alamat unik yang disebut alamat memori. Untuk selanjutnya, prosesor akan mengakses data-data yang ada pada RAM, dengan cara menentukan alamat data yang dikehendaki.

Prosesor dan RAM dihubungkan oleh unit yang disebut bus. Saat sebuah program dijalankan, data akan mengalir dari RAM melalui bus, menuju ke prosesor. Di dalam prosesor, data ini di-dekode, kemudian berjalan ke ALU yang bertugas melakukan kalkulasi dan perbandingan. Kadang-kadang data disimpan sementara di register agar dapat diambil kembali dengan cepat untuk diolah. Setelah selesai, hasil pemrosesannya mengalir kembali ke RAM atau ke media penyimpan. Apabila data hasil perosesan tadi akan diolah lagi, maka data tersebut akan disimpan dalam register. Demikian seterusnya.

B.     Bagaimana Cara Kerja Processor Dalam Memproses Sebuah Aplikasi

Processor/CPU (Central Processing Unit) adalah komponen dari suatu sistem komputer yang melakukan proses manipulasi dan pengolahan (eksekusi) data berdasarkan urutan instruksi dari memory. Instruksi yang dijalankan oleh processor disebut dengan opcodes atau machine-code.

Opcodes merupakan bahasa mesin berupa angka-angka yang kadang sulit dimengerti oleh pengguna, untuk itu dibangun instruksi operasi processor dalam bahasa assembly yang disebut dengan mnemonic. Urutan dari kumpulan instruksi sebuah processor disebut dengan program. Program yang dijalankan processor bisa diubah sesuai dengan kebutuhan aplikasi, sehingga komputer bersifat programmable.

Pembentukan Proses :
Siapa yang membentuk proses ?
·         Sistem operasi.
Apa yang dapat menyebabkan terbentuknya proses baru ?
·         Masuknya job baru (program aplikasi).
·         Pada model batch system: proses terbentuk akibat job baru (berupa baris-bari program) yang ditulis pada tape magnetic atau harddisk yang sedang dieksekusi.
·         Log on dari user.
·          Pada sistem interaktif: proses terbentuk ketika user melakukan log on pada system.
·         Sebagai bentuk layanan OS kepada program aplikasi
·          Misal: Ada program aplikasi yang perlu mencetak ke printer OS membentuk

C.    Bagaimana Processor Membagi Tugas Dalam Menjalankan Banyak Aplikasi

Ø  Model Proses Dengan 2-Status
Merupakan model proses paling sederhana Setiap proses akan selalu berada pada salah satu dari 2 status berikut:
·         Running
·         Not-running               

Oval: RUNINGOval: NOT RUNINGDiskpatch
Enter                                                                                            Exit                                                                                                                                                                                                           Pause



Apa yang dilakukan OS ?
·         OS membentuk proses baru dilengkapi dengan PCB untuk proses tersebut
Masukkan proses baru ke sistem:
·         Jika tidak ada proses yang sedang Running.
·         Proses langsung diberi status Running.
·         langsung dieksekusi.
·         Jika ada proses yang sedang Running.
Masukkan proses dengan status Not-running Jika proses yang running ter-interrupt, maka:
·         OS menjalankan program dispatcher untuk memilih proses berikutnya yang akan dieksekusi.
·         Masukkan proses tersebut ke status Not-running.
Kelemahan:
·         Pemilihan proses selanjutnya yang akan dieksekusi tidak cukup hanya
dengan algoritma FIFO
·         Dispatcher harus proses yang siap running diantara prosesproses yang lain yang terblok karena sedang menunggu hasil I/O
·         Butuh algoritma yang lebih rumit.

D. Bagaimana Processor Membagi Tugas Dalam Menjalankan Banyak Aplikasi.
Eksekusi Proses Dengan Banyak Aplikasi
Cara kerja:
·         Sama seperti pada eksekusi proses dengan dua antrian.
·         Bedanya untuk setiap event yang berbeda disediakan
sebuah antrian tersendiri.
Kelebihan:
·         Jika suatu event yang ditunggu telah tiba-tiba pemilihan proses yang membutuhkan event tersebut lebih mudah dan cepat (algoritmanya lebih sederhana)
Pengembangan lebih lanjut:
·         Jika terdapat proses dengan prioritas berbeda.
·         untuk setiap prioritas disediakan ready queue masing-masing.

Bagaimana Processor Membedakan Suatu Aplikasi Dengan Aplikasi Lainnya
Memory controller baru yang terintegrasi menangani aliran data antara memory utama (RAM) dan processor. Tiga channel memory (DDR3 1066 MHz) menghasilkan bandwidth hingga 25,6 GB/detik. Semakin besar bandwidth, semakin cepat kinerja yang dihasilkan untuk aplikasi-aplikasi padat data (grafis dan multimedia). Perumpamaan untuk ini sama seperti melebarkan jalan raya untuk melancarkan arus lalu-lintas yang padat.

TBT menggunakan on-die power control, yang mengatur kecepatan clock setiap core, bergantung pada kebutuhan komputasi. Sebagai contoh, untuk aplikasi yang sederhana seperti web browsing, Core i7 menurunkan power tiga core, dan secara perlahan meningkatkan power satu core tanpa menaikkan power yang masuk ke dalam processor mirip dengan fitur overclocking otomatis built-in.

Kembali ke tahun 2000, masa sebelum multicore processing diperkenalkan, Intel memperkenalkan HT (Hyper Threading Technology) memecah proses komputasi ke dalam beberapa virtual processor. HT meningkatkan kinerja multitasking dengan menjalankan beberapa program secara bersamaan. Core i7 memiliki empat core, bila HT diaktifkan, system operasi akan melihatnya sebagai delapan processor.

Information Technology

Senin, 16 Mei 2011

Utilization of Information Technology What exactly is meant by information technology? Is that information technology is identical to the computer? This question is often phrased and to answer it required an understanding of information technology itself.
Information technology (Information Technology), commonly abbreviated as IT, IT or Infotech. In Oxford Home Dictionary (OED2) 2nd edition defines the information technology hardware and software, and can include network and telecommunications which are usually in a business context or business. According to Haag and Keen (1996), information technology is a set of tools that help you work with information and perform tasks related to information processing. According to Martin (1999), information technology is not confined to computer technology (hardware and software) that will be used to process and store information, but also includes communications technology to transmit / disseminate information. While Williams and Sawyer (2003), reveals that information technology is a technology that combines computing (computer) with high-speed communication lines that carry data, voice, and video.
From the definition above, it appears that information technology is not limited to computer technology, but also including telecommunications technology. In other words that information technology is the result of convergence between computer technology and telecommunications technology.
Computer technology is the technology associated with computer devices such as printers, fingerprint reader, CD-ROM, processor, disk, and others. Computer is a versatile machine that can be used for processing any data into useful information. This is possible because the computer can be controlled by a program consisting of a series of instructions. The computer will act on instructions received from the program. In other words the computer will act as you wish the program makers.
Communication or telecommunication technology is long-distance communication technology. Including telecommunications technology that we use everyday is the telephone, television, radio, handy-talkies, mobile phones. It said earlier that information technology is the convergence between computer technology and telecommunication technology, the current telecommunications technology mentioned above has to be used to connect several computers. So that multiple computers can communicate with each other easily. This is the meaning of the word "convergence" over the then commonly known as Information Technology.

Latest Technology 2011: Hologram TV Technology

Starting a new year, information about the latest technologies in 2011 has been widely circulated. And this time I try to share one of them. After yesterday's no technology in 2010 odd about the coffin,now that more widely nih information about holographic TV technology.

Starting early 2011, Apple plans to immediately develop atelevision and a screen that produces holographic images without the need for special glasses. This technology-related patentsreveals latest.

A recent Apple patent reveals that the company that manufacturesthe iPod and the iPhone is currently working to create a screen thatcan produce three-dimensional holographic images withoutglasses. This technology will provide a more realistic experience to the user.

Apple's patent claims that the technology will create an image thatappears in a hologram and have the ability to track the movement of the public eye.

Holographic TV technology is a remarkable aspect of the inventionbecause it produces a virtual experience that is indistinguishable from that seen actual holographic image.

Three-dimensional television will become the latest technology trends 2011 after the producers are ready to launch 3D televisionand blu-ray player.

SmartBird Festo Robot Capable Seagull Fly Like Bird Original

Minggu, 15 Mei 2011

Stunning view of technological innovation that exist in SmartBird which is a robot bird that can fly with a motion almost exactly the original bird and bird model has excellent aerodynamic qualities and extreme agility like a normal bird. With SmartBird, Festo the author has succeeded in deciphering the flight capabilities of birds into the technology that we can use. Robot bird brings bionic technology, inspired by the herring gull, which could start flying off the ground independently - without additional drive mechanism. 

Wings not only move up and down, but also rotates at a certain angle. This is made possible by the active drive unit articulated torsional, which in combination with a complex control system to reach the level of efficiency that is unprecedented in aviation operations. Festo has thus succeeded for the first time in creating a technical adaptation of energy efficient models from nature.
This robot has a carbon fiber material and electronic controls closely denganb only 0.4 kilograms only. Festo has demonstrated technology that illustrates how sophisticated robot able to fly: SmartBird aerodynamically very efficient, even turning his head like a real seagull do to make aerobatik movement. 

But if you think about the larger implications of this robot, the chances are quite stunning: Imagine a robot spy plane based on this technology, packed with GPS systems are ultra-lightweight, powerful battery and high-precision camera and microphone. The type of data that can be collected secret surveillance robot bird will certainly impressive - and more stylish than any device other spy drones out there. SmartBird robot uses Zigbee radio communications that convey information to a computer that mentrak flights, increasing pergerakaannya. 

You can visit this site at Festo robot maker: http://www.festo.com/cms/en_corp/11369.htm

iMobot Modular Robots for Research

Sabtu, 14 Mei 2011

University of California Davis commercializing modular robots that will allow researchers to study such a robot AI field of robotics, biomimetics, and collaboration without having to build the robot hardware itself. Barobo IMobot quoted from news.com, developed by Graham Ryland and Harry Cheng, intended to fill a gap in the market for modular machines for research.  
As shown in the video below, each module iMobot can crawl or roll around, and standing. The camera can be inserted into the faceplate rotating joints, according to the researchers. Modules can be linked into shape like a snake robot that can be stretched on uneven terrain, or larger formations that can move on wheels.   

Each module has a standard mount to the other modules and sensor modules can be added in limited configurations. Start-ups this robot maker receives research funding for small business innovation-from the National Science Foundation, and they hope to market iMobot at the end of 2011.

Lesehan Populer

 

© Copyright Lesehan ilmu 2010 -2011 | Design by FHP DesignerCorp | Published by FHP Corp | All Rights Reserved