Menu
Your Cart

Transcend JetFlash 790K 256GB USB Pen Drive

Transcend JetFlash 790K 256GB USB Pen Drive
Transcend JetFlash 790K 256GB USB Pen Drive
Transcend JetFlash 790K 256GB USB Pen Drive
Transcend JetFlash 790K 256GB USB Pen Drive
Transcend JetFlash 790K 256GB USB Pen Drive
Transcend JetFlash 790K 256GB USB Pen Drive
Transcend JetFlash 790K 256GB USB Pen Drive
  • Price: TK 2,280/-
  • Stock: In Stock
  • Model: JetFlash 790K 256GB
TK 2,280/-
Ex Tax: TK 2,280/-

Key Features

    • Model: JetFlash 790K
    • USB Type: USB Type-A
    • Interface: USB Gen 1
    • Storage : 256GB
    • Retractable connector
    Specification
    General Feature
    BrandTranscend
    ModelJetFlash 790K 256GB
    Capacity256GB
    Technical Info
    ConnectivityUSB Type: USB Type-A Connection Interface: USB Gen 1
    Physical Attributes
    ColorBlack
    Dimensions2.5 x 0.83 x 0.42 inches
    Weight9 g (0.32 oz)
    Warranty Information
    Warranty05 Years
    Description

    Transcend JetFlash 790K 256GB USB Pen Drive

    The transcend-jetflash-790k-256gb-usb-pen-drive is a high-performance storage solution designed for fast data transfer, portability, and durability. Whether you need to store important work documents, high-resolution images, videos, or software files, this 256GB USB drive provides ample space and ensures seamless performance with its advanced USB 3.1 Gen 1 interface. The lightweight and compact design makes it easy to carry, while the retractable connector eliminates the need for a cap, preventing loss and enhancing convenience.

    With USB 3.1 technology, the JetFlash 790K offers faster read and write speeds, significantly reducing file transfer time compared to standard USB 2.0 devices. Despite its high-speed performance, it remains backward compatible with USB 2.0, ensuring compatibility with a wide range of computers, gaming consoles, and other USB-enabled devices.

    Designed with durability in mind, the JetFlash 790K features a sturdy, shock-resistant body, making it a reliable option for long-term use. Its capless, retractable USB connector prevents damage and makes it easy to use without worrying about losing a protective cover. Additionally, Transcend’s exclusive Elite Data Management Software enables users to encrypt files, back up data, and recover lost files, ensuring maximum security and efficiency.

    This 256GB USB pen drive is ideal for students, professionals, and businesses needing a dependable, high-speed storage device for daily data transfer and backup needs. Its sleek black exterior gives it a professional look while maintaining practicality for everyday use.

    Buy from Dear IT Solution

    Looking for a genuine transcend-jetflash-790k-256gb-usb-pen-drive at the best price in Bangladesh? Dear IT Solution is your trusted destination for high-quality storage devices with reliable after-sales support.

    Why choose Dear IT Solution?

    • Best price in Bangladesh – Get competitive pricing on all Transcend USB pen drives.
    • High-quality product insured in Bangladesh – We ensure all products meet top quality standards.
    • Secure and safe packaging – Your USB pen drive will be delivered safely and damage-free.
    • Excellent customer support – Our team is available for inquiries and technical assistance.
    • Fast and reliable delivery across Bangladesh – Receive your product quickly at your doorstep.

    Upgrade your data storage and transfer experience with the Transcend JetFlash 790K 256GB USB Pen Drive. Order now from Dear IT Solution for high-speed performance, durability, and convenience in one 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};