Menu
Your Cart

Transcend ESD410C 2TB Type-C Portable SSD

Transcend ESD410C 2TB Type-C Portable SSD
Transcend ESD410C 2TB Type-C Portable SSD
  • Price: TK 24,900/-
  • Stock: In Stock
  • Model: ESD410C
TK 24,900/-
Ex Tax: TK 24,900/-

Key Features

    • MPN: TS2TESD410C
    • Model: ESD410C
    • Capacity: 2TB
    • Interface: USB Type-C
    • Up to 2000 MB/s Transfer Speeds
    • MIL-STD-810G Military Drop Tested
    Specification
    General Feature
    BrandTranscend
    ModelESD410C
    Sequential R/WRead Speed: Up to 2,000 MB/s Write Speed: Up to 2,000 MB/s
    Flash Type3D NAND flash
    Interface0°C (32°F) ~ 60°C (140°F)
    Storage
    Storage Capacity2 TB
    Technical Info
    Operating Temperature0°C (32°F) ~ 60°C (140°F)
    Physical Attributes
    Dimensions79 mm x 42 mm x 14.5 mm (3.11" x 1.65" x 0.57")
    Weight65 g (2.3 oz)
    Warranty Information
    Warranty03 Years
    Description

    Transcend ESD410C 2TB Type-C Portable SSD in bd 

    The Transcend ESD410C 2TB Type-C Portable SSD combines ultra-fast performance with a sleek and portable design, making it the perfect storage companion for professionals and power users. Whether for backing up critical data, transferring large files, or storing multimedia content, this portable SSD ensures high-speed and reliable operation.

    With its USB Type-C interface and USB 3.2 Gen 2 support, the Transcend ESD410C offers blazing-fast transfer speeds of up to 1050MB/s, significantly reducing time spent on data management tasks. Its massive 2TB capacity provides ample room for documents, videos, photos, and more, all secured in a lightweight and compact device designed for easy portability.

    The Transcend ESD410C is built with durability in mind, featuring a shock-resistant metal case and an anti-scratch coating for long-lasting protection. Its compatibility spans a wide range of devices, including laptops, desktops, tablets, and smartphones with Type-C support. Additionally, the drive’s plug-and-play functionality ensures effortless use without the need for additional software or drivers.

    For added security, the Transcend ESD410C supports advanced AES 256-bit encryption, keeping sensitive data protected. Its energy-efficient design and heat management features make it a reliable choice for both personal and professional use.

    Buying Suggestions from Dear IT Solution

    For the Transcend ESD410C 2TB Type-C Portable SSD, look no further than Dear IT Solution, your trusted partner for top-quality tech products in Bangladesh.

    At Dear IT Solution, we offer the Transcend ESD410C 2TB Type-C Portable SSD at the best price in Bangladesh, ensuring unmatched value and satisfaction. Backed by our dedication to genuine products and excellent customer service, your purchase is guaranteed to be hassle-free and reliable.

    Upgrade your data storage solution today with the Transcend ESD410C 2TB Type-C Portable SSD. Order now from Dear IT Solution and enjoy premium performance and peace of mind!

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