Menu
Your Cart

AMD Ryzen 5 Processor 2400G With ATI RX Vega 11 Graphics

AMD Ryzen 5 Processor 2400G With ATI RX Vega 11 Graphics
-8 %
AMD Ryzen 5 Processor 2400G With ATI RX Vega 11 Graphics
  • Price: TK 9,800/-
  • special price: TK 9,000/-
  • Stock: In Stock
  • Model: Ryzen 5 2400G
TK 9,000/-
TK 9,800/-
Ex Tax: TK 9,000/-

Key Features

    • Model: Ryzen 5 2400G
    • Frequency: 3.6GHz up to 3.9GHz
    • Cores-4 & Threads-8
    • Cache: L1 384KB L2 2MB L3 4MB
    • Radeon RX Vega 11 Graphics
Specification
General Feature
BrandAMD
ModelRyzen 5 2400G
Base Frequency3.6GHz
Max Turbo Frequency3.9GHz
Number of Cores4
Threads8
Cache L1 384KB, L2 2MBv & L3 4MB
Default TDP65W
cTDP45-65W
OthersSupported Technologies:
  • AMD SenseMI Technology
  • AMD Ryzen™ Master Utility
  • Enmotus FuzeDrive™ for AMD Ryzen™
  • Radeon™ Software
  • Radeon™ FreeSync Technology
Memory Specifications
Memory TypeDDR4
Maximum Number of Channels2
Graphics Specifications
Processor GraphicsRadeon™ Vega 11 Processor Graphics
Base Frequency1250 MHz
Number of Core11
Warranty Information
Warranty03 Years (No Warranty for Fan or Cooler)
Description

AMD Ryzen 5 2400G Desktop Processor with Radeon RX Vega 11 Graphics

At Dear IT Solution, we offer the AMD Ryzen 5 2400G Desktop Processor with Radeon RX Vega 11 Graphics—a versatile choice for a range of computing needs. This processor brings together powerful performance and integrated graphics, making it an excellent option for various tasks from everyday computing to gaming and content creation.

The Ryzen 5 2400G features 4 cores and 8 threads, offering smooth and efficient multitasking. With a base frequency of 3.6GHz and the ability to boost up to 3.9GHz, it provides fast and responsive performance across different applications. The processor's cache system, consisting of 2MB L2 cache and 4MB L3 cache, helps in speeding up data access and processing.

What sets the Ryzen 5 2400G apart is its integrated Radeon RX Vega 11 Graphics. The onboard graphics processor, operating at a base frequency of 1250MHz with 11 graphics cores, delivers excellent visual performance for gaming and multimedia tasks. This makes it a great option for those who want an all-in-one solution without the need for a separate graphics card.

The processor also supports several advanced technologies such as AMD SenseMI, Ryzen™ Master Utility, and Radeon™ Software, which enhance performance and provide users with tools for customization and optimization.

With a default TDP of 65W, the Ryzen 5 2400G balances performance and energy efficiency, ensuring your system runs smoothly while conserving power. The processor also supports DDR4 memory up to 2933MHz, offering ample memory bandwidth for various tasks.

Choose the AMD Ryzen 5 2400G Desktop Processor from Dear IT Solution for a reliable and high-performance computing experience that includes powerful processing and integrated graphics. Let us help you enhance your desktop's performance with this efficient and versatile processor. Visit our shop today to discover the benefits of the Ryzen 5 2400G.


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