Menu
Your Cart

APOLLO 650VA 300W UPS

APOLLO 650VA 300W UPS
APOLLO 650VA 300W UPS
  • Price: TK 3,000/-
  • Stock: In Stock
  • Model: 1065
TK 3,000/-
Ex Tax: TK 3,000/-

Key Features

    • Model: 1065
    • Voltage: Single Phase, 110Vac~290Vac
    • Frequency: 50Hz (60Hz on request)
    • Power Factor: > 0.98% (Full Load)
    • Voltage: 220Vac
    Specification
    General Feature
    BrandApollo
    Model1065
    Capacity650VA
    Frequency60Hz
    Technical Info
    Output Voltage240V ac
    Physical Attributes
    ColorBlack
    Warranty Information
    Warranty1 Year
    Description

    APOLLO 650VA 300W UPS

    The APOLLO 650VA 300W UPS is a compact and reliable power backup solution designed to protect your computers, networking devices, and sensitive electronic equipment. With a capacity of 650VA/300W, this UPS ensures stable performance during sudden power outages, voltage drops, and electrical surges, giving you peace of mind for both home and office use.

    Equipped with Automatic Voltage Regulation (AVR), the APOLLO 650VA UPS automatically corrects low and high voltage fluctuations without switching to battery mode. This advanced feature not only protects your devices but also extends their lifespan by maintaining a consistent output voltage.

    The microprocessor-controlled system ensures quick response during power interruptions, offering seamless switching to battery mode. In the event of a blackout, the APOLLO 650VA UPS provides enough backup time to save your important files and safely shut down your equipment, reducing the risk of data loss and hardware damage.

    The UPS comes with built-in safety features like overload protection, short circuit protection, and deep discharge protection for the battery. It also features LED indicators and an audible alarm to keep you informed about the UPS status and any issues, ensuring easy monitoring and management.

    Thanks to its cold start capability, the APOLLO 650VA UPS can power your devices even when there is no mains electricity available. Its space-saving and durable design makes it an excellent addition to any workspace, providing reliable backup power while promoting energy efficiency.

    The APOLLO 650VA 300W UPS is engineered to deliver dependable performance and a longer battery lifespan, ensuring your important tasks, entertainment, or business operations continue without interruption.

    Buy APOLLO 650VA 300W UPS from Dear IT Solution

    Purchase the APOLLO 650VA 300W UPS at the best price in Bangladesh from Dear IT Solution. We ensure best quality products insured in Bangladesh. Visit our store or order online today to keep your devices protected and your work uninterrupted

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