Menu
Your Cart

Dell Inspiron 13z-5323 / Vostro 3360 Laptop Battery

Dell Inspiron 13z-5323 / Vostro 3360 Laptop Battery
Dell Inspiron 13z-5323 / Vostro 3360 Laptop Battery
  • Price: TK 3,550/-
  • Stock: In Stock
  • Model: Inspiron 13z-5323 / Vostro 3360
TK 3,550/-
Ex Tax: TK 3,550/-

Key Features

    • Brand:Dell
    • Model:Inspiron 13z-5323/Vostro 3360
    • Battery Type:Li-on
    • Voltage : 14.8V
    • Capacity : 49Wh
    • Number of Cells : 4 cells
    Specification
    General Feature
    BrandDell
    Model Inspiron 13z-5323 / Vostro 3360
    Part No0V0XTF V0XTF TKN25 DL011118-48P14G01 AM134C TRDF3
    Power
    Battery TypeLi-ion
    Battery Capacity49WH
    Battery Cells04 Cell
    Physical Attributes
    ColorBlack
    Compatible WithVostro V3360 Inspiron 5323 Vostro 3360 Inspiron 13Z-5323
    Warranty Information
    Warranty06 Month
    Description

    Dell Inspiron 13z-5323 / Vostro 3360 Laptop Battery
    The Dell Inspiron 13z-5323 / Vostro 3360 Laptop Battery is a high-quality replacement designed to deliver reliable power and performance. This battery is crafted to meet or exceed original specifications, ensuring seamless compatibility and optimal functionality for your Dell laptop.

    Key Features
    Compatibility:
    Designed for Dell Inspiron 13z-5323 and Vostro 3360 laptop models.

    Battery Type:
    Premium Lithium-ion cells for stable and efficient energy output.

    Capacity:
    Provides extended usage, minimizing interruptions and the need for frequent recharging.

    Voltage:
    Matches the original laptop specifications for smooth performance.

    Safety Standards:
    Integrated safety mechanisms to protect against overcharging, overheating, and short circuits.

    Product Benefits
    Perfect Fit:
    Engineered to fit Dell Inspiron and Vostro models perfectly, making installation simple and hassle-free.

    Reliable Performance:
    Ensures consistent power delivery for demanding applications and multitasking.

    Durability:
    Manufactured using durable components for longevity and everyday use.

    Enhanced Safety:
    Protects your device and enhances battery life with built-in safety features.

    Why Choose This Battery?
    The Dell Inspiron 13z-5323 / Vostro 3360 Laptop Battery is the ideal choice for users who want to restore their laptop's portability and reliability. This battery supports uninterrupted work, entertainment, and productivity with dependable and long-lasting power.

    Available at Dear IT Solution
    Get the Dell Inspiron 13z-5323 / Vostro 3360 Laptop Battery from Dear IT Solution at the best price in Bangladesh. We ensure the best-quality product insured in Bangladesh, along with exceptional customer support to cater to 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};