Skip to main content

Lenovo ThinkPad T510 Review

The ThinkPad T510 is the 15.6" notebook from Lenovo that competes head-to-head with the HP EliteBook 8540p and the Dell Latitude E6510. The T510 offers optional NVIDIA NVS 3100M dedicated graphics, a full line-up of display options, and Intel Core i5 and i7 processors. In this review, we see how the ThinkPad T510 performs in our test lab and if you should add it to your Christmas shopping list.


Specifications:
  • 15.6-inch HD+ LED-backlit Display (1600x900)
  • NVIDIA NVS 3100M dedicated graphics with 512MB DDR3
  • Windows 7 Professional (64bit)
  • Intel Core i5-560M (2.66GHz, 3MB cache)
  • 4GB DDR3 RAM (2GB + 2GB)
  • 320GB Seagate 7200.4 HDD (7200rpm)
  • Intel 6200 802.11AGN, Bluetooth
  • 94Wh 9-cell, 90W 20V AC adapter
  • ThinkPad Mini Dock Plus Series 3
  • Dimensions: 14.68" x 9.65" x 1.41"
  • Weight: 6.22 pounds
  • Retail Price: $2,038.99 ($1,508.99 on sale) with docking station
The ThinkPad T510 has a "get down to business" appearance that has served the ThinkPad-series of notebooks very well. The outside finish is matte black, with a slight rubbery texture to increase grip when carrying it around. The design includes many flat surfaces with sharp and precise corners, but still manages to stay comfortable to use for hours on end. The screen hinges are stainless steel, and unlike the models two generations ago, are equal in size on both sides. Inside, the all-black appearance continues with a textured plastic palmrest, keyboard surround, and screen bezel. There are few, if any, glossy surfaces on the ThinkPad T510 which is great if you worry about glare from overhead lighting or sun while outdoors.

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;