Menu
Your Cart

Western Digital 2TB SATA Hard Disk Drive

Western Digital 2TB SATA Hard Disk Drive
Western Digital 2TB SATA Hard Disk Drive
  • Price: TK 5,000/-
  • Stock: In Stock
  • Model: 2TB SATA
  • MPN: WD2003FZEX
TK 5,000/-
Ex Tax: TK 5,000/-

Key Features

    • Model: WD2003FZEX
    • Capacity- 2000 GB
    • RPM- 7,200 RPM
    • Interface type- SATA 6 Gb/s
    • Buffer size- 64 MB
    Specification
    General Feature
    Capacity2 TB
    Buffer size64 MB
    Rotational speed7,200 RPM (nominal)
    Seek Mode33 dBA (average)
    Transfer Rate126 MB/s (Max)
    Internal or ExternalInternal
    Average Latency4.20 ms (nominal)
    Idle Mode28 dBA (average)
    Load/unload Cycles300,000 minimum
    InterfaceSATA 6 Gb/s
    Warranty Information
    Warranty02 Year
    Description

    Western Digital 2TB SATA Hard Disk Drive

    The Western Digital 2TB SATA Hard Disk Drive is a reliable, high-capacity storage solution, perfect for a wide range of computing needs. With its impressive 2TB storage capacity, this hard drive provides ample space for storing large files, including videos, photos, games, and important documents. Whether you are upgrading your existing system or building a new one, this drive ensures seamless performance.

    Featuring a 7200 RPM rotational speed, the drive offers faster read and write speeds, enhancing your system's responsiveness during boot-ups, application loading, and data transfers. Its SATA III interface supports up to 6Gbps transfer speeds, ensuring compatibility with modern devices while delivering superior data handling efficiency. Designed for durability, this drive incorporates advanced technologies to minimize wear and extend its lifespan, making it a dependable option for long-term use.

    The Western Digital 2TB SATA Hard Disk Drive is versatile, suitable for desktop PCs, gaming rigs, and small business systems. Its energy-efficient design operates quietly and with minimal heat generation, providing a stable environment for intensive tasks. Installation is hassle-free thanks to its standard 3.5-inch form factor and universal SATA connectivity.

    Buying Suggestions from Dear IT Solution

    If you're in Bangladesh and looking for a genuine Western Digital 2TB SATA Hard Disk Drive, Dear IT Solution is the ideal place to shop. At Dear IT Solution, we ensure the best quality products paired with competitive pricing to deliver unmatched value.

    Our easy-to-use online platform lets you browse and purchase the Western Digital 2TB SATA Hard Disk Drive with just a few clicks. Once your order is placed, we guarantee prompt delivery to your doorstep. Every product at Dear IT Solution undergoes stringent quality checks to ensure that you receive only the best.

    Should you have any queries about the Western Digital 2TB SATA Hard Disk Drive, our knowledgeable support team is always ready to assist you. Trust Dear IT Solution for your IT needs and experience reliable service, authentic products, and a commitment to customer satisfaction.


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