Menu
Your Cart

Lenovo ThinkPad E450 E450C E460 E460C Laptop Battery

Lenovo ThinkPad E450 E450C E460 E460C Laptop Battery
Lenovo ThinkPad E450 E450C E460 E460C Laptop Battery
  • Price: TK 2,700/-
  • Stock: In Stock
  • Model: ThinkPad E450 E450C E460 E460C
TK 2,700/-
Ex Tax: TK 2,700/-

Key Features

    • Brand:Lenovo
    • Model: ThinkPad E450 E450C E460 E460C
    • Battery Type:Li-ion
    • Voltage : 11.4V
    • Capacity : 47Wh
    Specification
    General Feature
    BrandLenovo
    ModelThinkPad E450 E450C E460 E460C
    Part No45N1756 45N1754(3ICP7/38/64) 45N1757 45N1755(3ICP7/38/64) 45N1754 45N1753 45N1752 45N1755
    Power
    Battery TypeLi-ion
    Battery Capacity47 WH
    Battery Cells06 Cells
    Physical Attributes
    ColorBlack
    Compatible WithThinkPad E450 ThinkPad E460C ThinkPad E450C ThinkPad E460 ThinkPad E455 ThinkPad E465
    Warranty Information
    Warranty06 Month
    Description

    Lenovo ThinkPad E450 E450C E460 E460C Laptop Battery
    The Lenovo ThinkPad E450 E450C E460 E460C Laptop Battery is a premium replacement battery designed to keep your laptop running smoothly and efficiently. Perfect for work, study, or entertainment, this battery ensures long-lasting performance and reliable power for your Lenovo ThinkPad.

    Key Features
    Compatibility:
    Specially crafted for Lenovo ThinkPad E450, E450C, E460, and E460C models.

    Battery Type:
    Equipped with high-quality Lithium-ion cells for dependable performance and extended lifespan.

    Capacity:
    Provides longer usage time between charges, reducing the need for frequent recharging.

    Voltage:
    Precisely matches the original battery specifications to ensure seamless integration with your laptop.

    Safety Standards:
    Includes advanced safety features to protect against overheating, overcharging, and short circuits for reliable and safe operation.

    Product Benefits
    Enhanced Battery Life:
    Ensures consistent power supply for uninterrupted usage throughout the day.

    Perfect Fit:
    Designed to align seamlessly with the battery compartment of Lenovo ThinkPad E450, E450C, E460, and E460C laptops, enabling quick and easy installation.

    Durable and Reliable:
    Manufactured using premium materials for long-lasting performance and robust construction.

    Optimized Energy Efficiency:
    Engineered to minimize energy waste, delivering maximum efficiency and longer battery life.

    Why Choose This Battery?
    This battery is the perfect replacement for your Lenovo ThinkPad, ensuring uninterrupted power for all your computing needs. Whether you're working, studying, or enjoying entertainment, it delivers the reliability and performance you expect from a quality battery.

    Buying Suggestion at Dear IT Solution
    Purchase your Lenovo ThinkPad E450 E450C E460 E460C Laptop Battery from Dear IT Solution for the best price in Bangladesh. Trust us to deliver best quality products insured in Bangladesh, paired with exceptional customer service for a seamless buying experience.

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