Skip to main content

Dell Inspiron 17R Review

The newly designed Inspiron 17R is the latest 17.3-inch desktop-replacement notebook from Dell. Equipped with the Intel Core i3 and i5 processors with Intel GMA HD graphics, this budget-friendly system is aimed at the masses. In this review we take an in-depth look at this new system and see how it performs.
  • Intel Core i3 370M processor (2.4GHz, 3MB cache)
  • 17.3-inch 1600x900 display with LED backlighting
  • Windows 7 Home Premium (64-bit)
  • 4GB DDR3 memory
  • 500GB 5400rpm HDD
  • Intel HD integrated graphics
  • 10/100 Ethernet, 802.11n wireless, and Bluetooth
  • 6-cell Li-ion 48Wh battery
  • Dimensions: 16.54 x 10.87 x 1.24-1.38-inches
  • Weight: 6.67lbs starting
  • MSRP: $679
Build and Design
The newly redesigned Inspiron 17R offers a much cleaner and sleeker look and feel compared to past models. Similar to the Adamo-series, the layout has a hinge-forward design with the screen positioned just slightly in front of the back edge of the chassis. This has the added benefit of moving the screen closer to the keyboard and bringing the action to you. The outside appearance of the new 17R is very stylish, with a faux-brushed metal screen cover. The look gives the appearance of metal, although with an easier to clean painted surface. This look it also shared inside the notebook, with the palmrest and keyboard trim.

Comments

Popular posts from this blog

Optimalkan Koneksi Internet Dengan "FULL SPEED"

Bagi kita ‘penjelajah internet’ pasti mendambakan koneksi internet yang cepat, sehingga kita dapat membuka halaman web dengan lancar dan mendownload data-data yang kita perlukan di dunia maya. Bayangkan saja, kalau kita berhadapan dengan koneksi yang lelet, padahal kita harus segera menyelesaikan pekerjaan dan apa yang kita butuhkan sebenernya sudah tersedia di internet, ditanggung pasti !

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 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;