Menu
Your Cart

Transcend 64GB MicroSDXC/SDHC 300S Class 10 Memory Card (TS64GUSD300S)

Transcend 64GB MicroSDXC/SDHC 300S Class 10 Memory Card (TS64GUSD300S)
-31 %
Transcend 64GB MicroSDXC/SDHC 300S Class 10 Memory Card (TS64GUSD300S)
  • Price: TK 1,050/-
  • special price: TK 725/-
  • Stock: In Stock
  • Model: Micro SDXC/SDHC 300S
  • Dimensions: 11.00mm x 15.00mm x 1.00mm
  • MPN: MPN: TS64GUSD300S
TK 725/-
TK 1,050/-
Ex Tax: TK 725/-

Key Features

    • MPN: TS64GUSD300S
    • Model: Micro SDXC/SDHC 300S
    • Capacity 64 GB
    • Read Speed (Max.) 100 MB
    • Write Speed (Max.) 20 MB
    • Life time Warranty
    Specification
    General Feature
    BrandTranscend
    Model Micro SDXC/SDHC 300S
    Storage Capacity64 GB
    Speed ClassTop
    Read Speed100 MB/s
    Write Speed20MB/s
    Technical Info
    Operating Temperature-25°C (-13°F) ~ 85°C (185°F)
    Operating Voltage2.7V ~ 3.6V
    Physical Attributes
    Dimensions11 mm x 15 mm x 1 mm (0.43" x 0.59" x 0.04")
    Weight0.4 g (0.01 oz)
    Warranty Information
    WarrantyLifetime Warranty
    Description


    Transcend 64GB MicroSDXC/SDHC 300S Class 10 Memory Card 

    The Transcend 64GB MicroSDXC/SDHC 300S Class 10 Memory Card (TS64GUSD300S) is designed to provide high-speed performance and reliable storage for a variety of devices, including smartphones, tablets, digital cameras, and more. With its advanced 3D NAND flash technology, this memory card is built for durability and efficiency, ensuring smooth data transfer and excellent storage capacity.

    Key Features
    Model: Micro SDXC/SDHC 300S

    Capacity: 64 GB

    Ample storage space, ideal for high-resolution photos, videos, apps, and files.
    Flash Type: 3D NAND flash

    Enhanced durability and performance, allowing for reliable data storage over time.
    Read Speed (Max.): 100 MB/s

    Rapid data access for smooth playback and efficient file transfers.
    Write Speed (Max.): 20 MB/s

    Reliable write speed for recording videos, capturing photos, and storing app data with minimal delay.
    This Transcend 64GB MicroSDXC/SDHC 300S memory card provides a high-performance storage solution for users who need fast read and write speeds, ample storage capacity, and dependable 3D NAND flash technology, making it an excellent choice for everyday use.

    Experience the convenience and reliability of the Transcend  Memory Card 64GB and elevate your digital storage experience to new heights. Whether you're capturing memories on your smartphone or monitoring your property with a surveillance camera, Imou has you covered with cutting-edge storage solutions.
    Get Yours Today From Dear IT

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