Menu
Your Cart

Lenovo ThinkPad T470 - 6th Gen Core i5, 16GB RAM, 256GB SSD

Lenovo ThinkPad T470 - 6th Gen Core i5, 16GB RAM, 256GB SSD
Lenovo ThinkPad T470 - 6th Gen Core i5, 16GB RAM, 256GB SSD
Lenovo ThinkPad T470 - 6th Gen Core i5, 16GB RAM, 256GB SSD
Lenovo ThinkPad T470 - 6th Gen Core i5, 16GB RAM, 256GB SSD
Lenovo ThinkPad T470 - 6th Gen Core i5, 16GB RAM, 256GB SSD
  • Price: TK 23,500/-
  • Stock: In Stock
  • Model: ThinkPad T470s
TK 23,500/-
Ex Tax: TK 23,500/-

Key Features

    • Brand: Lenevo
    • Model: ThinkPad T470
    • Processor: 6th Generation Intel® Core™ i5-7300U Processor
    • RAM: 16 GB DDR4-2133MHz
    • SSD: 256 GB SSD
    • 01 Year Service Warranty
    Specification
    Processor
    Processor BrandIntel
    Processor Modeli5-7300U
    Generation6th Gen
    Processor Frequency2.50 GHz
    Processor Core2 Cores
    Processor Thread4 Threads
    CPU Cache3 MB Cache
    Display Features
    Display Size14"
    Display FeaturesFHD Display
    Memory
    RAM16GB
    RAM TypeDDR4
    Bus Speed2400 BUS
    Total RAM SlotNo Ram Slot
    Storage
    Storage TypeSSD
    Storage Capacity256 GB
    Physical Attributes
    ColorBlack
    Dimensions13.25 x 9.15 x 0.79 inch
    Weight1.58Kg
    Warranty Information
    Warranty01 Year Service Warranty
    Description

    Lenovo ThinkPad T470 - 6th Gen Core i5, 16GB RAM, 256GB SSD

    The Lenovo ThinkPad T470 is a high-performance laptop designed to meet the needs of professionals, students, and multitaskers. It is powered by a 6th Gen Intel Core i5 processor, providing reliable performance for demanding applications, seamless multitasking, and everyday computing.

    Equipped with 16GB of RAM, this laptop ensures exceptional speed and responsiveness, even when handling intensive workloads. The 256GB SSD offers fast boot times, quick data access, and ample storage for your essential files and software.

    The ThinkPad T470 is renowned for its legendary durability and ergonomic design. Its robust build quality ensures longevity, while the spill-resistant keyboard enhances usability. This laptop is lightweight and portable, making it an ideal companion for on-the-go professionals.

    The device features versatile connectivity options, including USB 3.0 ports, HDMI, and an SD card reader, allowing seamless integration with external devices. Additionally, the T470 offers long battery life, ensuring uninterrupted productivity during travel or extended work sessions.

    With business-grade security features, such as a fingerprint reader and TPM encryption, your data remains secure, giving you peace of mind in both professional and personal use.

    Buying Suggestions from Dear IT Solution
    Buy the Lenovo ThinkPad T470 from Dear IT Solution and enjoy the best price in Bangladesh. Experience premium quality, reliable customer support, and the best deals available. Order now!


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