Menu
Your Cart

Transcend 230S 256GB 2.5-Inch SATA III SSD

Transcend 230S 256GB 2.5-Inch SATA III SSD
-11 %
Transcend 230S 256GB 2.5-Inch SATA III SSD
  • Price: TK 4,830/-
  • special price: TK 4,300/-
  • Stock: In Stock
  • Model: 230S
  • Dimensions: 100.00mm x 6.80mm x 6.80mm
  • MPN: TS1TSSD230S
TK 4,300/-
TK 4,830/-
Ex Tax: TK 4,300/-

Key Features

    • Model: Transcend 230S
    • Capacity: 256GB
    • Interface: SATA III 6Gb/s
    • Sequential Read Speed: Up to 560 MB/s
    • Sequential Write Speed: Up to 520 MB/s
    Specification
    General Feature
    Brand Transcend
    Model Transcend 230S
    Sequential R/WRead: 560 MB/s Write: 520 MB/s
    Flash Type3D NAND flash
    InterfaceSATA III 6Gb/s
    Storage
    Storage TypeSATA III
    Storage Capacity256 GB
    Technical Info
    Operating Temperature0°C (32°F) ~ 70°C (158°F)
    MTBF1,000,000 hour(s)
    Physical Attributes
    Dimensions100 mm x 69.85 mm x 6.8 mm
    Weight53 g
    Warranty Information
    Warranty3 years
    Description

    Transcend 230S 256GB 2.5-Inch SATA III SSD

    The Transcend 230S 256GB SSD is a high-performance solid-state drive designed for users seeking a quick and efficient upgrade for their laptops or desktops. With SATA III 6Gb/s interface and advanced 3D NAND flash, this SSD offers enhanced reliability and impressive speeds for boot times, application loading, and overall system responsiveness.

    Key Features
    Model: Transcend 230S
    Capacity: 256GB
    Form Factor: 2.5 inch
    Interface: SATA III 6Gb/s
    Flash Type: 3D NAND
    Sequential Read Speed: Up to 560 MB/s
    Sequential Write Speed: Up to 520 MB/s
    Warranty: 3 years
    Product Benefits
    Fast and Efficient Performance: With read speeds of up to 560 MB/s and write speeds of up to 520 MB/s, this SSD significantly reduces boot times and speeds up application loading.
    Enhanced Durability: The 3D NAND flash technology provides greater reliability and longevity, making it a dependable storage solution for everyday computing needs.
    Energy Efficient: Low power consumption allows for longer battery life in laptops and reduced heat output in desktops, supporting overall system efficiency.
    Easy Installation: The standard 2.5-inch form factor makes this SSD compatible with a wide range of systems, and upgrading is straightforward.
    Why Choose Transcend 230S 256GB SSD?
    Available at Dear IT Solution in Bangladesh, the Transcend 230S 256GB 2.5-Inch SATA III SSD offers a balanced blend of speed, reliability, and energy efficiency, making it ideal for both casual and professional users. Upgrade your system with this SSD for a smoother, faster, and more reliable computing 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};