Menu
Your Cart

A4TECH FG1010 Wireless Keyboard Mouse Combo

A4TECH FG1010 Wireless Keyboard Mouse Combo
A4TECH FG1010 Wireless Keyboard Mouse Combo
A4TECH FG1010 Wireless Keyboard Mouse Combo
-15 %
A4TECH FG1010 Wireless Keyboard Mouse Combo
A4TECH FG1010 Wireless Keyboard Mouse Combo
A4TECH FG1010 Wireless Keyboard Mouse Combo
A4TECH FG1010 Wireless Keyboard Mouse Combo
  • Price: TK 2,200/-
  • special price: TK 1,875/-
  • Stock: In Stock
  • Model: FG1010
TK 1,875/-
TK 2,200/-
Ex Tax: TK 1,875/-

Key Features

    • Model: FG1010
    • Intelligent 4-stage Power-saving Technology
    • 2.4GHz Wireless
    • Plug and Use
    • Ergonomic Design
    Specification
    General Feature
    BrandA4tech
    ModelFG1010
    Specification
    Combo Product Specifications
    • Keyboard

    • Key Switch: 12 Fn Hotkeys
    • Keyboard layout: US/ARA/ESN/RU.
    • Interface: USB
    • Cable Length: Wireless
    • Dimension: (LxWxH)456 x 156 x 24 mm
    • Weight: 494 g ( Battery not included )

    • Mouse

    • Resolution:1000/1600/2000 DPI
    • Polling Rate: 125Hz
    • Cable Length: Wireless
    • Dimension(LxWxH): 108 × 64 × 35 mm
    • Weight : 67 g

    Warranty Information
    Warranty01 Year
    Description

    A4TECH FG1010 Wireless Keyboard Mouse Combo in bd 



    The A4TECH FG1010 Wireless Keyboard Mouse Combo is a versatile and reliable solution for those who need a seamless typing and navigation experience. Designed with Bangla key support, this wireless combo is perfect for users who prefer to type in both English and Bangla. With its 2.4GHz stable wireless connection, you can enjoy a lag-free experience up to 10 meters, ensuring smooth operation for work, study, or gaming.

    The keyboard features a full-size layout with soft and quiet keys, providing a comfortable typing experience for extended hours. Its durable key lifespan ensures long-term usability, while the efficient power-saving design enhances battery life. The included ergonomic mouse is designed for comfort and precision, offering smooth tracking and adjustable DPI levels for various tasks.

    This A4TECH FG1010 wireless combo is compatible with Windows, macOS, and other operating systems, making it a versatile choice for different users. The plug-and-play functionality ensures easy setup without the need for additional drivers or software.


    Buying Suggestions from Dear IT Solution

    Purchase the A4TECH FG1010 Wireless Keyboard Mouse Combo – Bangla Keys from Dear IT Solution at the best price in Bangladesh. As a best quality product insured in Bangladesh, this wireless combo offers durability, efficiency, and a seamless typing experience. Order now to enjoy smooth and effortless performance!

    Let me know if you need any modifications

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