Menu
Your Cart

HP 18.5V 3.5A BIG PORT 65W ADAPTER/CHARGER

HP 18.5V 3.5A BIG PORT 65W ADAPTER/CHARGER
HP 18.5V 3.5A BIG PORT 65W ADAPTER/CHARGER
  • Price: TK 650/-
  • Stock: In Stock
  • Model: 18.5V 3.5A BIG PORT 65W
  • MPN: 613152-001
TK 650/-
Ex Tax: TK 650/-

Key Features

    • Battery For HP Laptop
    • Model:4430s, 4440s, 4510s, 4520s, 4530s, 4535s, 4540s, 4545s
    • Output: 18.5V 3.5A 65W
    • Input: AC100-240V, 50/60Hz (worldwide use)
    • Connector Type: Big Port
    • 6 Months Warranty
Specification
General Feature
For BrandHP
ModelProbook 4430s 4440s 4510s 4520s 4530s 4535s 4540s 4545s 4730s 6560b 6570b 6555b 6475b 6470b 6460b, Compaq presario CQ40 CQ50 CQ60 CQ61 CQ70, HP Pavilion g6, dv4, dv7
TypeBig Port
Technical Info
Wattage (W)65W
Input VoltageAC100-240V, 50/60Hz
Output Voltage18.5V 3.5A 65W
Warranty Information
Warranty6 Month
Description

HP 18.5V 65W Big Port Adapter - Buy Now at Dear IT

This high-quality 65W AC adapter is designed for HP laptops and offers efficient power for your device. It's compatible with a wide range of HP Probook, Compaq Presario, and HP Pavilion models, making it a versatile and reliable choice for users looking to replace their original adapter. With an input of AC100-240V and a 50/60Hz frequency, this adapter is suitable for worldwide use, ensuring your laptop stays powered no matter where you are.
Product Specifications:

    Output: 18.5V 3.5A 65W
    Input: AC100-240V, 50/60Hz (worldwide use)
    Connector Type: Big Port

Compatible Models:

    HP Probook: 4430s, 4440s, 4510s, 4520s, 4530s, 4535s, 4540s, 4545s, 4730s, 6560b, 6570b, 6555b, 6475b, 6470b, 6460b

    Compaq Presario: CQ40, CQ50, CQ60, CQ61, CQ70

    HP Pavilion: g6, dv4, dv7

This adapter is a replacement for several original HP adapters, including part numbers such as 613152-001, 613161-001, PA-1650-02HC, 574063-001, 577170-001, 68425-001, and more. It ensures a safe and stable power supply for your HP laptop, with certifications for CE, FCC, and RoHS safety standards.

Buy Suggestion

For the best price in Bangladesh, you can purchase this high-quality HP 18.5V 3.5A 65W adapter at Dear IT Solution. It's an ideal solution for users seeking a reliable replacement for their HP laptop adapter.

Maintenance Tips:

    Always unplug the adapter from the power source when not in use to avoid overheating.
    Keep the adapter in a cool, dry place to ensure longevity.
    Regularly check the cable for signs of wear and tear, and replace it if necessary to avoid power interruptions.

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