Menu
Your Cart

Samsung 19v 3.16A Laptop Power Adapter

Samsung 19v 3.16A Laptop Power Adapter
-24 %
Samsung 19v 3.16A Laptop Power Adapter
  • Price: TK 850/-
  • special price: TK 650/-
  • Stock: In Stock
  • Model: 19v 3.16A
TK 650/-
TK 850/-
Ex Tax: TK 650/-

Key Features

    • For Brand: Samsung
    • Model: 60w
    • Tip Size: 5.5mm*3.0mm
    • Output Voltage: 19V~3.15/3.16A~60W
    • Input Voltage: 100-240V~1.5A,50-60Hz
    • Warranty: 1 year
Specification
General Feature
For Brand Samsung
ModelSamsung R540, R530, R580, R440, R480, QX410, Q430, P560, NP-NF310, R580I, R580E, R540E, R540, R440I, R480I, R430I, P560I, Q430H and R530CE.
TypePremium Quality
Technical Info
Wattage (W)60w
Input Voltage100-240V~1.5A,50-60Hz
Output Voltage 19V~3.15/3.16A~60W
Warranty Information
Warranty1 Year
Description



Samsung 19v 3.16A Laptop Power Adapter – Available at Dear IT 

Upgrade your laptop's power supply with the Samsung 3.16A Laptop Power Adapter, available exclusively at Dear IT Solution. This reliable and efficient adapter ensures your Samsung laptop remains powered and ready for use.



Key Features:

Model: 60w
Output: 19V ~ 3.15/3.16A ~ 60W
Input: 100-240V ~ 1.5A, 50-60Hz
Connector Tip: 5.5mm x 3.0mm

Compatible Samsung Laptop Models:

R Series:


Samsung R540
Samsung R530
Samsung R580
Samsung R440
Samsung R480
Samsung R430I
Samsung R540E
Samsung R580I
Samsung R580E
Q Series:

Samsung QX410
Samsung Q430
Samsung Q430H
P Series:

Samsung P560
Samsung P560I
NP Series:

Samsung NP-NF310

Why Choose Dear IT Solution?

Reliable Performance: Delivers consistent power to keep your Samsung laptop running smoothly.
Versatile Compatibility: Compatible with a wide range of Samsung laptop models, ensuring you get the right power supply for your device.
High-Quality Build: Designed to meet the highest standards of safety and efficiency.
Get the Samsung 3.16A Laptop Power Adapter today, available at Dear IT Solution for the best price and quality. Keep your Samsung laptop powered and performing at its best!


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