Skip to main content

Dell XPS 15 Review

The new XPS 15 (also called the XPS L501X) is a completely redesigned multimedia notebook from Dell. Sporting a JBL sound-system with subwoofer, NVIDIA GT420M dedicated graphics, and an Intel Core i5 processor, this system is designed with performance and entertainment in mind. In this review, we take an in-depth look at the new XPS and see how it stacks up against the competition.
  • Intel Core i5 460M Processor (3MB cache, 2.53GHz)
  • 15.6-inch 1366 x 768 glossy display with LED backlighting
  • NVIDIA GeForce GT420M with 1GB DDR3
  • Windows 7 Home Premium (64-bit)
  • 6GB DDR3 memory
  • 500GB 7200rpm HDD (Seagate Momentus 7200.4)
  • Realtek gigabit ethernet and Intel 1000 802.11b/g/n wireless
  • Bluetooth 3.0
  • 6-cell Li-ion battery (56Wh)
  • Dimensions: 15 x 10.4 x 1.3-1.5-inches
  • Weight: 6.21lbs
  • MSRP: $899.99 (Closest configuration)
Build and Design

The new Dell XPS 15 has a silver on grey color scheme, using metal panels and plastic for the body. Compared to past XPS designs that were trend setters that distinguished themselves from the lower models, the new XPS doesn't seem to spark much visual interest. In theory, mixing alloy panels with a brushed metal palmrest and backlit keyboard usually yields good results. The redesigned XPS 15 doesn't seem to really set itself apart, though, from the standard Inspiron 15R until you take a much closer look. Standing back five feet, the panels look like average plastic on the exterior, and the body itself even seems more bloated than the 15R. Overall, it seems like Dell missed a big opportunity to make the XPS-series the unique notebooks they once were. The result is a rather bland looking multimedia notebook where its budget-oriented sibling --the Inspiron 15R--outshines it.

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;