Menu
Your Cart

Transcend ESD265C 1TB Type-C Portable External SSD

Transcend ESD265C 1TB Type-C Portable External SSD
Transcend ESD265C 1TB Type-C Portable External SSD
  • Price: TK 14,000/-
  • Stock: In Stock
  • Model: ESD265C
TK 14,000/-
Ex Tax: TK 14,000/-

Key Features

    • MPN: TS1TESD265C
    • Model: ESD265C
    • Capacity: 1TB
    • Flash Type: 3D NAND flash
    • Read Speed: Up to 1050 MB/s
    • Write Speed: Up to 950 MB/s
    Specification
    General Feature
    BrandTranscend
    ModelESD265C
    Sequential R/WRead Speed (Max.): up to 1050 MB/s Write Speed (Max.): up to 950 MB/s
    Flash Type3D NAND flash
    InterfaceUSB Type: USB Type C to USB Type A/USB Type C to USB Type C Connection Interface: USB 3.1 Gen 2
    Storage
    Storage Capacity1TB
    Technical Info
    Operating Temperature0°C (32°F) ~ 60°C (140°F)
    Physical Attributes
    Dimensions81.4 mm x 33.6 mm x 7.5 mm (3.21" x 1.32" x 0.3")
    Weight31 g (1.1 oz)
    Warranty Information
    Warranty01 Year
    Description

    Transcend ESD265C 1TB Type-C Portable External SSD in bd 

    The Transcend ESD265C 1TB Type-C Portable External SSD is an exceptional storage device designed for users who demand speed, reliability, and portability. With its sleek, lightweight design and advanced features, this SSD is ideal for professionals, gamers, and everyday users.

    Featuring a USB 3.1 Gen 2 interface and a reversible Type-C connector, the Transcend ESD265C delivers ultra-fast transfer speeds of up to 520MB/s. This ensures smooth handling of large files, high-definition videos, and demanding applications. Its 1TB capacity provides ample space for storing critical data, media files, and backup needs.

    Built for durability, the Transcend ESD265C boasts a robust and shock-resistant design to protect your data during travel. It is compatible with a wide range of devices, including laptops, desktops, and smartphones, making it a versatile solution for multiple platforms.

    This portable SSD also includes built-in AES 256-bit encryption for securing sensitive data. Its plug-and-play functionality ensures a hassle-free user experience, while its compact size fits conveniently into your pocket or bag for on-the-go convenience.

    Buying Suggestions from Dear IT Solution

    For the Transcend ESD265C 1TB Type-C Portable External SSD, choose Dear IT Solution, your trusted provider of high-quality storage solutions in Bangladesh.

    At Dear IT Solution, we offer the Transcend ESD265C 1TB Type-C Portable External SSD at the best price in Bangladesh, ensuring you get exceptional value for your investment. With our dedication to authentic products and superior customer service, you can shop with confidence.

    Upgrade to the Transcend ESD265C 1TB Type-C Portable External SSD today and enjoy the perfect combination of speed, durability, and portability. Order now from Dear IT Solution for a premium storage 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};