Menu
Your Cart

Western Digital 4TB Blue 5400RPM Desktop Hard Disk Drive

Western Digital 4TB Blue 5400RPM Desktop Hard Disk Drive
Out Of Stock
Western Digital 4TB Blue 5400RPM Desktop Hard Disk Drive
  • Stock: Out Of Stock
  • Model: 4tb Blue WD
TK 9,000/-
Ex Tax: TK 9,000/-

Key Features

    • MPN: WD40EZAZ
    • Model: WD Blue
    • Interface: SATA
    • Form Factor: 3.5 Inch
    • Cache Size: 256 MB
    • Disk Speed: 5400rpm
    Specification
    General Feature
    TypeInternal
    Capacity4tb
    size256 MB
    RPM Class5400 rpm
    InterfaceSATA
    Warranty Information
    Warranty02 Year
    Description

    Western Digital 4TB Blue 5400RPM Desktop Hard Disk Drive

    The Western Digital 4TB Blue 5400RPM Desktop Hard Disk Drive is a reliable and high-capacity storage solution designed to meet the needs of everyday computing and demanding workloads. With a spacious 4TB capacity, this hard drive offers ample space for storing extensive files, such as photos, videos, games, and important documents. It's an excellent choice for desktop PCs, external storage enclosures, and other computing setups.

    Equipped with a 5400 RPM rotational speed, the drive delivers steady performance while ensuring energy efficiency and quiet operation. The SATA III interface, supporting transfer speeds of up to 6Gbps, ensures fast and reliable data transfers, making multitasking and data handling more efficient. Whether you’re upgrading an older system or adding storage to a new build, the Western Digital 4TB Blue HDD integrates seamlessly into your setup.

    Built with Western Digital's renowned reliability and advanced technologies, this hard drive ensures durability and consistent performance. It features NoTouch Ramp Load Technology, which prevents the recording head from touching the disk surface, minimizing wear and enhancing longevity. This makes it an ideal solution for both casual users and professionals seeking a dependable storage option for their data-intensive tasks.

    Buying Suggestions from Dear IT Solution

    For customers in Bangladesh looking for a dependable storage upgrade, the Western Digital 4TB Blue 5400RPM Desktop Hard Disk Drive is available at Dear IT Solution. We offer this product at a competitive price, ensuring you get excellent value for your investment.

    When you choose Dear IT Solution, you can trust that you're receiving genuine, high-quality IT products. Our online store provides a seamless shopping experience, from browsing to secure checkout, and we ensure prompt delivery right to your doorstep. Each product undergoes thorough quality checks, so you can shop confidently.

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