Menu
Your Cart

Transcend SSD220Q 1TB 2.5" SATA SSD

Transcend SSD220Q 1TB 2.5" SATA SSD
-9 %
Transcend SSD220Q 1TB 2.5" SATA SSD
  • Price: TK 9,900/-
  • special price: TK 9,000/-
  • Stock: In Stock
  • Model: SSD220Q
  • Dimensions: 100.00cm x 69.85cm x 6.80cm
  • MPN: TS1TSSD220Q
TK 9,000/-
TK 9,900/-
Ex Tax: TK 9,000/-

Key Features

    • Model: Transcend SSD 220Q
    • Capacity: 1TB
    • Sequential Read Speed: Up to 550 MB/s
    • Sequential Write Speed: Up to 450 MB/s
    • Operating Temperature: 0°C to 70°C
    Specification
    General Feature
    Brand03 years warranty
    ModelTranscend SSD220Q
    Sequential R/Wup to 550/500 MB/s
    Flash Type3D NAND
    InterfaceSATA III 6 Gb/s
    Storage
    Storage TypeSATA III
    Storage Capacity1TB
    Technical Info
    Operating Temperature0°C (32°F) ~ 70°C (158°F)
    MTBF2,000,000 hour(s)
    Physical Attributes
    Dimensions100 mm x 69.85 mm x 6.8 mm
    Weight45 g
    Warranty Information
    Warranty03 years warranty
    Description

    Transcend SSD220Q 1TB 2.5" SATA SSD

    The Transcend SSD220Q 1TB 2.5" SATA SSD offers an exceptional upgrade for those seeking reliable storage with enhanced performance for their laptop or desktop systems. Powered by high-quality 3D NAND technology, this SSD combines speed, durability, and energy efficiency, providing a noticeable improvement over traditional hard drives.

    Key Features
    Model: Transcend SSD220Q
    Capacity: 1TB
    Form Factor: 2.5-inch
    Interface: SATA III 6Gb/s
    Flash Type: 3D NAND
    Sequential Read Speed: Up to 550 MB/s
    Sequential Write Speed: Up to 450 MB/s
    Operating Temperature: 0°C to 70°C
    Warranty: 3 years
    Product Benefits
    Fast Performance: With read speeds up to 550 MB/s and write speeds up to 450 MB/s, the Transcend SSD220Q delivers faster boot times, improved file transfer speeds, and enhanced overall system responsiveness.
    Improved Reliability: Thanks to the advanced 3D NAND technology, the SSD220Q offers greater endurance, reliability, and durability, even with frequent use.
    Lower Power Consumption: This SSD consumes less power compared to traditional hard drives, which helps extend battery life in laptops and reduce heat output in desktops.
    Compatible & Easy to Install: The 2.5-inch form factor is compatible with most systems, and installation is simple, making it a great option for users looking to upgrade their storage without hassle.
    Why Choose Transcend SSD220Q 1TB SSD?
    At Dear IT Solution, the Transcend SSD220Q 1TB 2.5" SATA SSD provides users with a perfect blend of high speed, reliability, and long-term endurance. Whether you're upgrading your laptop or desktop, this SSD offers excellent performance for both everyday tasks and more demanding applications.

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