Skip to main content

MSI GX660R Gaming Notebook

Gaming for the Masses. Not long ago, we reviewed the pre-production model of the MSI GX660R. Now that the GX660R is on the market, MSI sent us another model, this time it's the same one that's lining the shelves of stores and available for you to buy. Some improvements have fortunately been made to this model in areas we had criticized in our previous review.

Specifications MSI GX660R :
  • Processor : Intel Core i7 740QM 1.73 GHz
  • Mainboard : Intel PM55
  • Memory : 6144 MB, ASint, DDR3-10600, 1333 MHz, max 12 GB, 3 Slots
  • Graphics : adapter ATI Mobility Radeon HD 5870 - 1024 MB, Core: 400 MHz, 8.751.0.0 Display 15.6 inch 16:9, 1920x1080 pixel, LED, glossy: yes
  • Harddisk : WDC WD5000BEVT, 500GB 5400rpm 500GB 5400 RPM, 2 Hard Discs, Raid 0 Soundcard Realtek ALC888
  • Connections : 1 Express Card 54mm, 2 USB 2.0, 2 USB 3.0, 1 VGA, 1 HDMI, 1 Kensington Lock, 1 eSata, Audio Connections: Microphone Input, Headphone Jack, 7.1 Analogue, Card Reader: 4-in-1 (SD/MMC/MS/MS-PRO), RJ 45
  • Networking : Realtek PCIe GBE Family Controller (10/100/1000MBit), Intel WiFi Link 1000 BGN (bgn)
  • Optical drive : TSSTcorp CDDVDW TS-L633C
  • Size : height x width x depth (in mm): 55 x 396 x 269
  • Weight : 3.5 kg Power Supply: 0.63 kg
  • Battery : 87 Wh Lithium-Ion, 9 Cells, 11.1 Volts
  • Price : 1799 Euro
  • Operating System : Microsoft Windows 7 Ultimate 64 Bit


A little while ago we reviewed the pre-production model of the GX660R, the overall rating of 81% was quite good for a pre-release model. However, this review didn't accurately reflect to product later offered to consumers. For example, the pre-release model was equipped with an HD-ready (720p) display, while the current model was bumped up a notch and fitted with a full-HD (1080p) display. Now that MSI has provided us with an up-to-date model of the GX660R available to consumers, we reevaluated some areas of the previous review. In doing so, we paid particular attention to the benchmarks and the display.

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;