Menu
Your Cart

Lenovo ThinkPad T410s T410si T400s Laptop Battery

Lenovo ThinkPad T410s T410si T400s Laptop Battery
Lenovo ThinkPad T410s T410si T400s Laptop Battery
  • Price: TK 2,500/-
  • Stock: In Stock
  • Model: ThinkPad T410s T410si T400s
TK 2,500/-
Ex Tax: TK 2,500/-

Key Features

    • Brand:Lenovo
    • Model:ThinkPad T410s T410si T400s
    • Battery Type :Li-ion
    • Battery Volt : 11.1 V
    • Capacity: 5200 mAh
    Specification
    General Feature
    BrandLenovo
    Model ThinkPad T410s T410si T400s
    Part No42T4688, 42T4689, 42T4690, 42T4691, 42T4832
    Power
    Battery TypeLi-ion
    Battery Capacity5200 mAh
    Physical Attributes
    ColorBlack
    Compatible WithThinkPad T400s, ThinkPad T400s 2801, ThinkPad T400s 2808, ThinkPad T400s 2809, ThinkPad T400s 2815
    Warranty Information
    Warranty06 Month
    Description

    Lenovo ThinkPad T410s T410si T400s Laptop Battery
    The Lenovo ThinkPad T410s T410si T400s Laptop Battery is a premium replacement designed to ensure your ThinkPad laptop operates at peak performance. With excellent durability and compatibility, this battery keeps your device powered for work, study, or entertainment.

    Key Features
    Compatibility:
    Specially engineered for Lenovo ThinkPad T410s, T410si, and T400s models.

    Battery Type:
    High-grade Lithium-ion cells ensure consistent, long-lasting power.

    Capacity:
    Provides ample charge capacity for extended laptop usage between charging cycles.

    Voltage:
    Precisely matches the original battery specifications for smooth and uninterrupted operation.

    Safety Standards:
    Integrated with safety features to protect against overcharging, overheating, and short circuits for reliable and safe use.

    Product Benefits
    Enhanced Battery Life:
    Delivers steady power output, maximizing your productivity without frequent recharges.

    Seamless Compatibility:
    Designed for a perfect fit with the specified ThinkPad models, ensuring easy installation and seamless functionality.

    Durable Build:
    Manufactured using top-quality materials for prolonged lifespan and optimal performance.

    Efficient Energy Usage:
    Optimized to reduce power wastage and extend laptop operation time.

    Why Choose This Battery?
    Selecting the Lenovo ThinkPad T410s T410si T400s Laptop Battery ensures that your laptop receives a dependable power supply, ideal for both professional and personal use. Enjoy extended usage time and reliability with this quality replacement battery.

    Buying Suggestion at Dear IT Solution
    Purchase the Lenovo ThinkPad T410s T410si T400s Laptop Battery from Dear IT Solution. We guarantee the best quality products insured in Bangladesh at affordable prices, along with excellent customer service to meet your needs.



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