Dell i3542-5000BK

Availability:
Out of stock
Discontinued. No Longer Available
Description
Stay productive on the fly
Accomplish what you need to, where you need to : Meet your capable copilot. The sleek 15,6" Inspiron 15 is compact and always by your side.
Go the distance : Venture away from the power outlet with confidence. With long-lasting battery life, the Inspiron 15 isn't finished until you are.
Room to spare : Save plenty of photos, videos and music with up to a 1TB hard drive, giving you plenty of room to archive without worry of limited space. The built-in media card reader makes it easy to transfer videos and photos from your camera while USB 3.0 lets you transfer files to external storage.
The forefront of touch technology
Choose the HD touch option for a truly interactive experience that maintains amazing detail and crisp, brilliant images.
Your every tap, swipe and scroll is more responsive and accurate with a 10-finger capacitive touch screen. Capacitive touch feels more natural and fluid than optical touch because capacitive sensors are right under the screen, compared to optical touch which uses cameras in the bezel of the laptop. Have more fun with Windows 8.1, swipe through your photo album faster and unleash your creativity with capacitive touch.
Product Type: Notebook
Processor & Chipset
Processor Manufacturer: Intel
Processor Type: Core i3
Processor Model: i3-4030U
Processor Speed: 1.90 GHz
Processor Core: Dual-core (2 Core)
Cache: 3 MB
Direct Media Interface: 5 GT/s
64-bit Processing: Yes
Hyper-Threading: Yes
vPro Technology: No
Memory
Standard Memory: 4 GB
Memory Technology: DDR3L SDRAM
Memory Standard: DDR3L-1600/PC3-12800
Memory Card Reader: Yes
Memory Card Supported: Secure Digital High Capacity (SDHC)
Memory Card Supported: Secure Digital (SD)
Memory Card Supported: Secure Digital Extended Capacity (SDXC)
Storage
Hard Drive Capacity: 500 GB
Hard Drive Interface: Serial ATA
Hard Drive RPM: 5400
Optical Drive Type: DVD-Writer
Optical Media Supported: DVD±R/±RW
Display & Graphics
Screen Size: 15.6"
Display Screen Type: Active Matrix TFT Color LCD
Display Screen Technology: TrueLife
Aspect Ratio: 16:9
Screen Mode: HD
Screen Resolution: 1366 x 768
Backlight Technology: LED
Touchscreen: Yes
Multi-touch Screen: Yes
Graphics Controller Manufacturer: Intel
Graphics Controller Model: HD Graphics 4400
Graphics Memory Technology: DDR3L SDRAM
Graphics Memory Accessibility: Shared
Network & Communication
Wireless LAN: Yes
Wireless LAN Manufacturer: Dell
Wireless LAN Model: Wireless-N 1705
Wireless LAN Standard: IEEE 802.11b/g/n
Ethernet Technology: Fast Ethernet
Bluetooth: Yes
Bluetooth Standard: Bluetooth 4.0
Built-in Devices
Webcam: Yes
Microphone: Yes
Speakers: Yes
Interfaces/Ports
HDMI: Yes
Total Number of USB Ports: 3
Number of USB 2.0 Ports: 2
Number of USB 3.0 Ports: 1
Network (RJ-45): Yes
Headphone/Microphone Combo Port: Yes
Software
Operating System: Windows 8.1 (English)
Operating System Architecture: 64-bit
Software Included: Dell Back-up and Recovery
Input Devices
Keyboard: Yes
Keyboard Backlight: No
Pointing Device Type: TouchPad
TouchPad Features: Multi-touch Gesture
Keyboard Localization: English (US)
Battery Information
Number of Cells: 4-cell
Battery Chemistry: Lithium Ion (Li-Ion)
Battery Energy: 40 Wh
Maximum Battery Run Time: 5.25 Hour
Power Description
Maximum Power Supply Wattage: 65 W
Physical Characteristics
Color: Black
Height: 1"
Width: 15"
Depth: 10"
Weight (Approximate): 4.80 lb
Miscellaneous
Package Contents:
- 0;
},
getCacheStorage(cacheKey) {
const storage = JSON.parse(hyva.getBrowserStorage().getItem(localStorageNamespace)) || {};
return storage[cacheKey] || null;
},
saveCacheStorage(products) {
let storage = JSON.parse(hyva.getBrowserStorage().getItem(localStorageNamespace)) || {};
storage = this.enforceLocalStorageLimits(storage);
storage[this.getCacheKey()] = {
'product_list': products,
'added_at': new Date().getTime()
};
hyva.getBrowserStorage().setItem(localStorageNamespace, JSON.stringify(storage));
},
getProductsFromCache() {
const products = this.getCacheStorage(this.getCacheKey());
if (products !== null && this.validateCacheLifetime(products)) {
return products.product_list;
}
return null;
},
loadProductsFromServer() {
if (this.isLoading) {
return;
}
this.isLoading = true;
return fetch(this.ajaxData.url + '?' + this.buildQueryString(this.ajaxData.originalRequest), {
'headers': {
'content-type': 'application/x-www-form-urlencoded; charset=UTF-8',
},
'method': 'GET'
})
.then(response => response.json())
.then(data => {
if (!data.status) {
this.saveCacheStorage([]);
return;
}
this.products = Object.values(data.productList);
this.saveCacheStorage(data.productList);
window.dispatchEvent(new CustomEvent('also-bough-products-loaded'));
})
.catch(function (error) {
typeof window.dispatchMessages !== 'undefined' && window.dispatchMessages(
[{
type: 'error',
text: error
}], 5000
);
}).finally(() => this.isLoading = false);
},
validateCacheLifetime(products) {
return new Date().getTime() - products.added_at < this.ajaxData.cache_lifetime * 1000;
},
getCacheKey() {
const originalRequest = this.ajaxData.originalRequest;
return originalRequest.action + '_' + originalRequest.entity_id;
},
buildQueryString(params) {
const queryStringArray = [];
for (const key in params) {
if (params.hasOwnProperty(key)) {
const value = params[key];
if (Array.isArray(value)) {
value.forEach((item, index) => {
queryStringArray.push(this.buildQueryString({ [key + '[' + index + ']']: item }));
});
} else if (typeof value === 'object' && value !== null) {
queryStringArray.push(this.buildQueryString(value));
} else {
queryStringArray.push(`${encodeURIComponent(key)}=${encodeURIComponent(value)}`);
}
}
}
return queryStringArray.join('&');
},
enforceLocalStorageLimits(storage) {
if (Object.keys(storage).length >= localStorageLimit) {
const newStorage = Object.entries(storage);
newStorage.sort((a, b) => new Date(b[1].added_at) - new Date(a[1].added_at));
return Object.fromEntries(newStorage.slice(0, localStorageLimit - 1))
}
return storage;
}
}
}
Write Your Own Review
Only registered users can write reviews. Please Sign in or create an account
