Skip to main content

ASUS U45JC-A1 Review

The U45JC has an understated yet classy look; the combination of bright silver and glossy black is aesthetically pleasing. I like how the black keyboard keys stand out against their silver surround. The U45JC is quite thin for a 14-inch laptop with such impressive specs at just 1.1" tall. The chassis has an angular shape; the very edges of the notebook are angled downward and make the notebook look slimmer than it actually is.

With the exception of the aluminum lid backing, the U45JC is made of plastic. The top of the chassis is covered in an anti-scratch skin, which feels nice and does not show fingerprints or dust. Unfortunately the glossy plastic screen surround does; it is tough to keep clean, as is the display surface since that is also glossy.

Our ASUS U45JC-A1 review unit has the following specifications:
  • 14-inch 720p (1366x768) glossy panel with LED backlighting
  • Windows 7 Home Premium 64-bit
  • Intel Core i3-370M dual-core processor (2.40GHz, 3MB L3, 4.8GT/s QPI, 35W TDP)
  • Intel HM55 chipset
  • Switchable graphics via Nvidia Optimus technology:
  • Nvidia GeForce 310M w/ 1GB DDR3 memory
  • Integrated Intel HD graphics
  • 4GB DDR3-1066 dual-channel RAM (2x 2GB)
  • 500GB 5400RPM Seagate hard drive (ST9500325AS)
  • Atheros AR9285 802.11n wireless LAN
  • DVD burner (HL-DT-ST DVDRAM GU10N)
  • 2-year global limited warranty w/ 1 year accidental damage coverage
  • 8-cell battery (11.1V, 5600mAh)
  • Weight: 4.6 lbs.
  • Dimensions: 13.5 x 9.6 x 1.1 inches
  • MSRP: $899
This is a general purpose and multimedia laptop with a focus on mobility; it is not designed for gaming (though its G310M graphics are capable of playing some games, as this review will show).

Comments

Popular posts from this blog

Menghitung Volume Bangun Ruang Dengan PHP

Dalam kesempatan kedua ini saya akan sharing tugas saya yang kedua. yaitu pemrograman PHP, Di dalam tugas ini mahasiswa disuruh menampilkan Volume Bola, kerucut dan kubus.Dengan ketentuan jari-jari,tinggi,sisi yang sudah ditentukan. Untuk lebih jelasnya silahkan lihat dan pelajari program dan outputanya dibawah ini : <? $phi=3.14; $r=7; $t=14; $s=10; $volbola=(4/3)*$phi*$r*$r*$r; $volkerucut=(1/3)*$phi*$r*$r*$t; $volkubus=$s*$s*$s; echo"========================================="; echo"<br/>"; echo"Nama = Fauzan Vega Saputra"; echo"<br/>"; echo"Kelas = TI_B"; echo"<br/>"; echo"NIM = 3085111136"; echo"<br/>"; echo"========================================="; echo"<br/>"; echo"| Menghitung Volume Bola, Kerucut dan Kubus |"; echo"<br/>"; echo"========================================="; echo"<br/>"; echo"

Program Konversi Uang Dengan Delphi

Pertama-tama wajib mendownload delphi 7, cari aja di mbah google pasti ada banyak banget. Setelah download selesai, install di kompi atau laptop anda, kalau dah punya delphi 7 gak diwajibkan untuk download, siapkan aja ember,gayung dan air, cari dikamar mandi jangan di mbah google.. xixixxi bingung ya kok pake ember,gayung dan air???? yaiaylah orang aku boongin,,, ckckckck udah deh bercandanya sekarang serius.... Langkah pembuatan program : 1. Jalankan Delphi 7 2. Pada kotak objek inspector terdapat 2 baris dan banyak kolom. pada kolom color isi dengan warna kesukaan anda. Disini saya contohkan dengan warna "clAqua" 3. Pada kolom caption "Form1" ganti dengan "konversi uang" 4. Tambahkan label,edit,dan button pada form konversi uang, dengan mengeklik simbol "A","OK","AB|" pada bagian atas lalu klik kan ke form konversi uang. lihat gambar dibawah : 5. dan di atur letaknya seperti gambar dibawah ini: 6. Untuk me

Program java Menghitung Bangun Kerucut & Tabung

Didalam program ini user menginputkan tinggi dan jari - jari untuk bangun A dan bangun B. kemudian program mengeksekusinya sehingga akan di ketahui luas permukaan dan volume bangun A maupun bangun B, sesuai tinggi dan jari - jari yang telah di inputkan. Berikut contoh programnya : import java.io.*; class fauyan {     double r,s,t;     double phi = 3.14;     double volumekerucut, volumetabung;     double luaskerucut, luastabung; /* Email  : f_zan.hack@yahoo.com Web   : fzan-aquana.blogspot.com             fauzanvs.blogspot.com */     void hitung() {         luaskerucut = (phi * r) * (s + r);         luastabung = (phi* r * 2) * (t + r);         System.out.println(" ");         System.out.println("  Luas Permukaan Kerucut : " +luaskerucut +" cm^2");         System.out.println("  Luas Permukaan Tabung : " +luastabung +" cm^2");         System.out.println(" ");         volumekerucut = (phi * r * r * t) / 3;