Menu
Your Cart

Battery for Toshiba Satellite Pro C55 C55Dt C800 C805 C840 C850 C855 Series

Battery for Toshiba Satellite Pro C55 C55Dt C800 C805 C840 C850 C855 Series
Battery for Toshiba Satellite Pro C55 C55Dt C800 C805 C840 C850 C855 Series
  • Price: TK 1,800/-
  • Stock: In Stock
  • Model: Satellite Pro C55 C55Dt C800 C805 C840 C850 C855 Series
  • MPN: PA5023U-1BRS
TK 1,800/-
Ex Tax: TK 1,800/-

Key Features

    • Brand: For Toshiba
    • Model: Satellite Pro C55 C55Dt C800 C805 C840 C850 C855 Series
    • Battery Type: Lithium-Ion
    • Voltage: 10.8V
    • Battery Capacity:56Wh 5200mAh
    • warranty:6 Months
Specification
General Feature
BrandToshiba
ModelSatellite Pro C55 C55Dt C800 C805 C840 C850 C855 Series
Part No PA5023U-1BRS, PA5024U-1BRS, PA5025U-1BRS, PABAS260, PABAS261, PABAS262
Power
Battery TypeLithium-Ion
Battery Capacity56Wh 5200mAh
Battery Cells6 cells
Physical Attributes
ColorBlack
Compatible WithToshiba Satellite Pro C800, C805, C840, C845, C850, C855, C870, C875, L800, L805, L830, L835, L840, L845, L850, L855, L870, L875, M800, M801, M805, M840, M845, P800, P840, P845, P850, P855, P855D, P870, P875, P875D, S800, S840, S845, S850, S855, S870, S875 Series.
Warranty Information
Warranty6 Month
Description

Battery for Toshiba Satellite Pro C55 C55Dt C800 C805 C840 C850 C855 Series

This 56Wh, 5200mAh lithium-ion battery provides reliable power for your Toshiba Satellite Pro, ensuring smooth performance for your daily computing tasks.

Features & Compatibility

Battery Type: Lithium-Ion, 6 Cells
Voltage: 10.8V
Compatible Models: Toshiba Satellite Pro C55, C55Dt, C800, C805, C840, C845, C850, C855, L840, L850, L855 Series
Specific Models: C800, C805, C850, L800, L805, L830, L840, L850, P800, P840, P850, S800, S840, S850 Series
Product Part Number: PA5023U-1BRS, PA5024U-1BRS, PA5025U-1BRS, PABAS260, PABAS261, PABAS262

Maintenance Tips

Recharge the battery when the charge drops to around 20%.
Store the battery in a cool and dry environment to prevent heat damage.
Use only Toshiba-certified chargers for maximum safety and battery longevity.

Buy from Dear IT Solution

Purchase this brand-new battery at the best price in Bangladesh from Dear IT Solution, ensuring you receive a high-quality product.


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