Menu
Your Cart

HP 19V 7.89A BIG PORT 150W ADAPTER

HP 19V 7.89A BIG PORT 150W ADAPTER
-15 %
HP 19V 7.89A BIG PORT 150W ADAPTER
  • Price: TK 4,200/-
  • special price: TK 3,550/-
  • Stock: In Stock
  • Model: HP BIG PORT 150W
TK 3,550/-
TK 4,200/-
Ex Tax: TK 3,550/-

Key Features

    • Laptop adapter For Hp
    • Adapter Type: Big Port
    • Output Voltage: 19v
    • Watt: 150w
    • Warranty: 01 Year
    Specification
    General Feature
    For BrandHP
    ModelHP BIG PORT 150W
    Type BIG PORT
    Technical Info
    Wattage (W)150w
    Input Voltage220v
    Output Voltage19v
    Warranty Information
    Warranty01 Year
    Description

    HP 19V 7.89A BIG PORT 150W ADAPTER BD

    The HP 19V 7.89A Big Port 150W Adapter is a high-quality power supply designed to provide your HP laptop with the necessary power to perform at its best. With a powerful 150W output, this adapter is ideal for larger and more demanding laptops, ensuring consistent performance even when running resource-heavy applications or multiple programs.

    The big port connector guarantees a secure and stable connection to your laptop, preventing any interruptions during use. Whether you are at work, gaming, or streaming media, this adapter ensures your device remains charged and ready to go, offering a quick and efficient charging experience.

    Crafted with advanced safety features such as over-voltage protection, short-circuit prevention, and over-current protection, the HP 19V 7.89A Big Port 150W Adapter ensures both your laptop and the charger stay protected throughout use. Its durable design is built to withstand everyday wear and tear, making it an excellent replacement or backup charger for your HP laptop.

    With its compact size and lightweight build, this adapter is convenient for portable use, making it perfect for those who travel frequently or need a secondary charger for home or office use. It offers quick recharging and reliable long-term performance, ensuring you never run out of power when you need it most.

    The HP 19V 7.89A Big Port 150W Adapter is compatible with a range of HP laptops, providing the right wattage and optimal charging speed. No matter the task, this adapter will ensure your device is powered up and ready for action.

    Buying Suggestion from Dear IT Solution

    Purchase the HP 19V 7.89A Big Port 150W Adapter from Dear IT Solution at the best price in Bangladesh. As a best quality product insured in Bangladesh, you can trust that you’re receiving top-tier performance and durability. Order today for fast delivery, superior customer service, and the perfect solution to power your HP laptop!

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