Menu
Your Cart

Transcend JetFlash 790C 256GB USB 3.2 Type-C Pen Drive

Transcend JetFlash 790C 256GB USB 3.2 Type-C Pen Drive
Transcend JetFlash 790C 256GB USB 3.2 Type-C Pen Drive
  • Price: TK 2,370/-
  • Stock: In Stock
  • Model: JetFlash 790C 256GB
TK 2,370/-
Ex Tax: TK 2,370/-

Key Features

    • Model: JetFlash 790C
    • Interface: USB 3.2 Gen 1 interface
    • Capacity: 256GB
    • USB Type: Type-C
    • Capless and Retractable Design
    Specification
    General Feature
    BrandTranscend
    ModelJetFlash 790C 256GB
    Capacity256 GB
    Technical Info
    ConnectivityConnection Interface: USB 3.2 Gen 1 USB Type: USB Type-C
    Others
    System RequirementMicrosoft Windows 7 or later macOS 9.0 or later Linux Kernel 2.4.2 or later
    Physical Attributes
    Dimensions63.6 mm x 21.2 mm x 10.6 mm (2.5" x 0.83" x 0.41")
    Weight9 g (0.32 oz)
    Warranty Information
    Warranty05-Year warranty
    Description

    Transcend JetFlash 790C 256GB USB 3.2 Type-C Pen Drive

    The Transcend JetFlash 790C 256GB USB 3.2 Type-C Pen Drive is a high-speed, reliable storage solution designed for modern devices equipped with USB Type-C ports. Whether you're a professional handling large multimedia files, a student managing coursework, or a gamer transferring data, this 256GB USB drive ensures fast and efficient performance with its USB 3.2 Gen 1 interface. It offers seamless compatibility with laptops, smartphones, tablets, and other Type-C-enabled devices, making it a versatile choice for both work and entertainment.

    With USB 3.2 technology, the JetFlash 790C delivers lightning-fast data transfer speeds, allowing users to move files, photos, videos, and documents quickly and efficiently. It also maintains backward compatibility with older USB standards, ensuring that you can use it across multiple devices without hassle.

    Designed for durability and convenience, the JetFlash 790C features a capless, retractable design that eliminates the need for a removable cap, preventing loss and enhancing ease of use. Its compact and lightweight build makes it ideal for travel and daily use, ensuring portability without compromising performance. Additionally, Transcend’s exclusive Elite Data Management Software provides advanced file encryption, backup options, and recovery tools, offering enhanced security for your valuable data.

    With a massive 256GB storage capacity, this USB pen drive provides ample space for storing large volumes of data, making it a perfect choice for users who require high-capacity, high-speed storage on the go.

    Buy from Dear IT Solution

    Get the best deal on the Transcend JetFlash 790C 256GB USB 3.2 Type-C Pen Drive at Dear IT Solution – your trusted tech store in Bangladesh.

    Why buy from Dear IT Solution?

    • Best price in Bangladesh – Enjoy competitive pricing on all Transcend USB drives.
    • High-quality product insured in Bangladesh – We ensure premium quality for all storage devices.
    • Secure packaging & safe delivery – Your USB drive will arrive damage-free and in perfect condition.
    • Excellent customer support – Our team is ready to assist with any queries or technical concerns.
    • Fast and reliable nationwide delivery – Get your product delivered quickly and securely anywhere in Bangladesh.

    Upgrade your storage and data transfer experience with the Transcend JetFlash 790C 256GB USB 3.2 Type-C Pen Drive. Order now from Dear IT Solution for high-speed performance, durability, and convenience in one sleek and efficient device

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