Menu
Your Cart

ADATA C100 10000mAh Power Bank

ADATA C100 10000mAh Power Bank
ADATA C100 10000mAh Power Bank
-18 %
ADATA C100 10000mAh Power Bank
ADATA C100 10000mAh Power Bank
ADATA C100 10000mAh Power Bank
  • Price: TK 1,980/-
  • special price: TK 1,630/-
  • Stock: In Stock
  • Model: C100
TK 1,630/-
TK 1,980/-
Ex Tax: TK 1,630/-

Key Features

    • Model: C100
    • QC/PD 20W Fast Charging
    • Simultaneous 3-device Charging
    • Slim Lightweight Design
    • Two Chic Color Options
    Specification
    General Feature
    BrandAdata
    ModelC100
    Technical Info
    Power Capacity10000mAh
    Input VoltageUSB-C: DC 5V / 3A, 9V / 2A, 12V / 1.5A, 18W Max Micro USB: DC 5V / 2A, 9V / 2A, 12V / 1.5A, 18W Max
    Output VoltageUSB-C: DC 5V / 3A, 9V / 2.22A, 12V / 1.67A, 20W Max USB-A1: DC 5V / 3A, 9V / 2A, 12V / 1.5A, 18W Max USB-A2: DC 5V / 3A, 9V / 2A, 12V / 1.5A, 18W Max Max. Output: USB-C + USB-A1 + USB-A2: DC 5V / 3A, 15W
    Physical Attributes
    ColorBlack White
    Dimensions134 x 70.3 x 27mm / 5.3 x 2.8 x 1 inch
    Weight210g / 7.4oz
    Warranty Information
    Warranty01 Year
    Description

    ADATA C100 10000mAh Power Bank – Lightweight & Powerful

    The ADATA C100 10000mAh Power Bank is a compact and high-capacity charging solution, ensuring your devices stay powered throughout the day. With a 10000mAh battery, it provides multiple charges for smartphones, tablets, and other USB-powered devices.

    Designed for portability, the ADATA C100 features a lightweight build, making it easy to carry for travel, work, or daily use. Its fast-charging technology ensures quick power delivery, reducing downtime and keeping your devices ready whenever you need them.

    This power bank comes with dual USB outputs, allowing simultaneous charging of two devices. Its advanced safety features, including overcharge protection, short-circuit prevention, and temperature control, ensure safe and reliable performance.

    10000mAh high-capacity battery for long-lasting power
    ✔ Dual USB ports for simultaneous charging

    Buying Suggestion from Dear IT Solution

    Purchase the ADATA C100 10000mAh Power Bank from Dear IT Solution at the best price in Bangladesh. As a best quality product insured in Bangladesh, it delivers long-lasting performance and reliability. Order now for fast delivery and excellent service!

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