Menu
Your Cart

Battery for HP Compaq 6520S Laptop

Battery for HP Compaq 6520S Laptop
Battery for HP Compaq 6520S Laptop
  • Price: TK 1,850/-
  • Stock: In Stock
  • Model: Compaq 6520S
TK 1,850/-
Ex Tax: TK 1,850/-

Key Features

    • Brand: For HP
    • Model: HP Compaq 6520S (KU530AA)
    • Battery Type: Lithium-Ion
    • Voltage: 10.8V
    • Battery Capacity:4400mAh
    • warranty:6 Months
Specification
General Feature
BrandFor HP
ModelHP Compaq 6520S (KU530AA).
Part NoKU530AA HSTNN-DB51, HSTNN-OB51 451545-261, 451545-361, 456623-001, 484785-001, 500014-001
Power
Battery TypeLithium-Ion
Battery Capacity4400mAh
Battery Cells6 Cells
Physical Attributes
ColorBlack
Compatible WithHp Compaq Business Notebook 6520S, Hp Compaq Business Notebook 6530s, Hp Compaq Business Notebook 6531s, Hp Compaq Business Notebook 6535S Compaq 510, 511, 515, 516, 540, 541 Compaq 6520S, 6530s, 6531S, 6535S Hp Compaq 6520, Hp Compaq 6520s, Hp Compaq 6520p, HP 541, HP Business Notebook 6530s, HP Business Notebook 6531s, HP Business Notebook 6535S, HP COMPAQ 515, HP COMPAQ 510,HP Compaq 511, HP Compaq 516, HP 540 HP & Compaq 6520 6520S 6520P 6530S 6531S 6535S 6720S 6730S 6735S 6820S 6830S 511 515 516 540 541 610 615 Series
Warranty Information
Warranty6 Months
Description

Battery for HP Compaq 6520S Laptop – Available at Dear IT Solution

Ensure your HP Compaq 6520S laptop stays powered throughout your workday with our high-quality replacement battery. Designed to provide reliable performance, this brand-new battery is perfect for keeping your laptop running smoothly.

Key Features:

Model: HP Compaq 6520S
Battery Type: Lithium-Ion
Capacity: 4400mAh
Voltage: 10.8V
Cells: 6 Cells
Battery Part Numbers: KU530AA, HSTNN-DB51, HSTNN-OB51, 451545-261, 451545-361, 456623-001, 484785-001, 500014-001

Compatible With:

HP Compaq Business Notebook Models: 6520S, 6530s, 6531s, 6535S
Compaq Models: 510, 511, 515, 516, 540, 541
HP Models: 6520, 6520s, 6520p, 541
Additional Compatible Models: 6720S, 6730S, 6735S, 6820S, 6830S, 511, 515, 516, 540, 541, 610, 615 Series

Why Choose Dear IT Solution?

Best Price in Bangladesh: Competitive pricing on authentic HP Compaq laptop batteries.
Product Condition: Brand New to ensure optimal battery life and efficiency.
Professional Support: Expert assistance for a seamless replacement experience.
Visit Dear IT Solution today to get your Battery for HP Compaq 6520S and enjoy reliable power with genuine parts at the best price in Bangladesh!



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