Menu
Your Cart

HP 15s-du1116TU Intel Pentium Silver N5030 15.6″ HD Laptop

HP 15s-du1116TU Intel Pentium Silver N5030 15.6″ HD Laptop
Out Of Stock
HP 15s-du1116TU Intel Pentium Silver N5030 15.6″ HD Laptop
  • Stock: Out Of Stock
  • Model: 15s-du1116TU
TK 40,500/-
Ex Tax: TK 40,500/-

Key Features

    • Model: 15s-du1116TU
    • Processor: Intel Pentium Silver N5030 (4M Cache, 1.10 GHz up to 3.10 GHz)
    • Memory: 4 GB DDR4 2400MHz RAM
    • Storage: 1 TB 5400 rpm SATA HDD
    • Display: 15.6″ HD (1366 x 768)
    Specification
    Processor
    Processor BrandIntel
    Processor ModelPentium Silver N5030
    Processor Frequency1.10 GHz up to 3.10 GHz
    CPU Cache4M Cache
    ChipsetIntel Integrated SoC
    Display Features
    Display Size15.6″
    Display Resolution1366 x 768
    Display Featuresmicro-edge, BrightView, 220 nits, 45% NTSC
    Memory
    RAM4 GB
    RAM TypeDDR4
    Bus Speed2400 MHz
    Keyboard & TouchPad
    TouchPadYes
    Storage
    Storage TypeSATA HDD
    Storage Capacity1 TB
    Camera & Audio
    WebCamHP True Vision 720p HD camera with integrated dual array digital microphones
    Graphics
    Graphics ModelIntel UHD Graphics 605
    Network & Connection
    LanIntegrated 10/100/1000 GbE LAN
    Wi-FiRealtek RTL8821CE 802.11a/b/g/n/ac (1×1) Wi-Fi
    BluetoothBluetooth 4.2
    Software
    Operating SystemWindows 10 Home 64
    Physical Attributes
    ColorBlack
    Dimensions35.85 x 24.2 x 1.99 cm
    WeightStarting at 1.74 kg
    Warranty Information
    Warranty2 years International Limited Warranty (Terms & condition Apply As Per HP)
    Description

    HP 15s-du1116TU Intel Pentium Silver N5030 15.6″ HD Laptop

    The HP 15s-du1116TU Intel Pentium Silver N5030 15.6″ HD Laptop is an excellent option for those looking for a dependable and affordable computing solution. Ideal for students, home users, and office tasks, this laptop delivers balanced performance for everyday work and entertainment.

    At the heart of the system is the Intel Pentium Silver N5030 processor, a quad-core CPU designed to handle basic tasks such as web browsing, word processing, video streaming, and online classes with ease. Paired with 4GB DDR4 RAM, the system ensures smooth multitasking, allowing you to switch between apps without significant lag.

    Storage is generous with a 1TB HDD, giving you ample space to store all your files, media, and software. Whether you need space for documents, school projects, movies, or music, this device covers your needs without the constant worry of running out of space.

    The 15.6″ HD display offers clear visuals and decent brightness, making it great for watching videos, browsing photos, or working on documents. The screen features anti-glare technology, reducing eye strain during long hours of usage.

    Connectivity options are solid, featuring USB 3.1, USB 2.0, HDMI, audio combo jack, and a multi-format card reader. It also includes Wi-Fi and Bluetooth support, ensuring you stay connected to your network and devices. The full-size keyboard with numeric keypad makes typing and data entry more convenient and efficient.

    Its sleek and lightweight design makes the laptop easy to carry, whether you're heading to class, the office, or a café. The built-in webcam and microphone support video conferencing and virtual meetings, which is perfect for the modern work or study-from-home environment.

    If you're seeking an affordable, durable, and user-friendly laptop for basic daily tasks, the HP 15s-du1116TU is an excellent choice.


    Review

    Write a review

    Note: HTML is not translated!
    Bad Good
    Critial Path: Hello world!
    Hello world!
    /** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: Apache-2.0 *//** * @fileoverview Diagnostic audit that lists all JavaScript libraries detected on the page */import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js';const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ description: 'All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', };const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);class JsLibrariesAudit extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'js-libraries', title: str_(UIStrings.title), scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE, description: str_(UIStrings.description), requiredArtifacts: ['Stacks'], }; }/** * @param {LH.Artifacts} artifacts * @return {LH.Audit.Product} */ static audit(artifacts) { const libDetails = artifacts.Stacks .filter(stack => stack.detector === 'js') // Don't show the fast paths in the table. .filter(stack => !stack.id.endsWith('-fast')) .map(stack => ({ name: stack.name, version: stack.version, npm: stack.npm, }));/** @type {LH.Audit.Details.Table['headings']} */ const headings = [ {key: 'name', valueType: 'text', label: str_(i18n.UIStrings.columnName)}, {key: 'version', valueType: 'text', label: str_(UIStrings.columnVersion)}, ]; const details = Audit.makeTableDetails(headings, libDetails);const debugData = { type: /** @type {const} */ ('debugdata'), stacks: artifacts.Stacks.map(stack => { return { id: stack.id, version: stack.version, }; }), };if (!libDetails.length) { return {score: null, notApplicable: true}; }return { score: 1, // Always pass for now. details: { ...details, debugData, }, }; } }export default JsLibrariesAudit; export {UIStrings};