Discovering Computers ©2018: Digital Technology, Data, and Devices
Discovering Computers ©2018: Digital Technology, Data, and Devices
1st Edition
ISBN: 9781337285100
Author: Misty E. Vermaat, Susan L. Sebok, Steven M. Freund, Jennifer T. Campbell, Mark Frydenberg
Publisher: Cengage Learning
Expert Solution & Answer
Book Icon
Chapter 6, Problem 2CTQ

Explanation of Solution

Current memory modules:

The following are the current memory modules used to increase the memory capacity...

Explanation of Solution

Differences of memory modules:

The following table represents the currently used memory modules and its differences based upon the type, size, speed and price.

CharacteristicsSIMMDIMMRIMM
TypeThe memory board uses 30 pin connector types.The memory board uses 168 pin or 184 pin connector type.

The memory board uses 168 pin connector type.

SizeIt is about 3.5×.75 inches in size

Explanation of Solution

Recommendations to upgrade laptop’s memory:

Based upon the expert’s knowledge from the industry, the following are the methods and recommendations to upgrade the laptop’s memory,

  • Initially, check how much memory is available on the laptop to avoid the bottle necks of the computer.
    • Open the “Windows Task manager” and in the “Task manager” tab, it shows how much memory is used out of total memory.
    • For more detailed view, there is an option “Open Resource monitor” in the Task manager window that shows the amount of physical memory available in the laptop.
  • Next, check whether the laptop can be upgraded or not...

Explanation of Solution

Type and amount of memory for laptop:

  • There is an application called “Crucial system scanner” which is need to be downloaded based upon the terms and conditions.
  • After downloading and executing the application, it displays some of the re...

Explanation of Solution

Reason for not purchasing more memory on laptop:

Even though the computer is supported for more memory, the mother board supports for limited amount of memory or else the memory would not work.

  • On each motherboard, there is a controller to access the Random Access Memory (RAM). So, there will be a limiting factor to access the memory by that controller...

Explanation of Solution

Available slots in memory modules:

The following are the simple steps to check the available slots in the laptop,

  • First open task manager in “Run” command.
  • Then select “performance” tab and click on the “memory section”...

Explanation of Solution

Safety measures:

While upgrading the memory in laptop, there will be a chance of electrostatic discharge and to avoid this, let need to ground the component and this can be achieved by the following safety measure...

Explanation of Solution

Better option:

Actually, this is a complex decision to take whether the laptop is needed to be upgraded or replaced. This is because,

  • Some of the different component in the laptop is not an easy process to replace, but it is possible to upgrade the laptop if some of the proper tools are available.
  • Moreover, the user requires little patience to upgrade the laptop...

Blurred answer
Students have asked these similar questions
1.[30 pts] Computers generate color pictures on a video screen or liquid crystal display by mixing three different colors of light: red, green, and blue. Imagine a simple scheme, with three different lights, each of which can be turned on or off, projecting onto a glass screen: We can create eight different colors based on the absence (0) or presence (1) of light sources R,G and B: R G B Color 0 0 0 Black 0 0 1 Blue 0 1 0 Green 0 1 1 Cyan 1 0 0 Red 1 0 1 Magenta 1 1 1 0 Yellow 1 White 1 Each of these colors can be represented as a bit vector of length 3, and we can apply Boolean operations to them. a. The complement of a color is formed by turning off the lights that are on and turning on the lights that are off. What would be the complement of each of the eight colors listed above? b. Describe the effect of applying Boolean operations on the following colors: Λ 1. Red(100) ^ Magenta(101)= Blue(001) 2. Bue(001) | Green(010)= 3. Yellow(100) & Cyan(011)= 2.[30 pts] Perform the following…
D. S. Malik, Data Structures Using C++, 2nd Edition, 2010
Methods (Ch6) - Review 1. (The MyRoot method) Below is a manual implementation of the Math.sqrt() method in Java. There are two methods, method #1 which calculates the square root for positive integers, and method #2, which calculates the square root of positive doubles (also works for integers). public class SquareRoot { public static void main(String[] args) { } // implement a loop of your choice here // Method that calculates the square root of integer variables public static double myRoot(int number) { double root; root=number/2; double root old; do { root old root; root (root_old+number/root_old)/2; } while (Math.abs(root_old-root)>1.8E-6); return root; } // Method that calculates the square root of double variables public static double myRoot(double number) { double root; root number/2; double root_old; do { root old root; root (root_old+number/root_old)/2; while (Math.abs (root_old-root)>1.0E-6); return root; } } Program-it-Yourself: In the main method, create a program that…

Chapter 6 Solutions

Discovering Computers ©2018: Digital Technology, Data, and Devices

Ch. 6 - Prob. 11SGCh. 6 - Prob. 12SGCh. 6 - Prob. 13SGCh. 6 - Prob. 14SGCh. 6 - Prob. 15SGCh. 6 - Prob. 16SGCh. 6 - Prob. 17SGCh. 6 - Prob. 18SGCh. 6 - Prob. 19SGCh. 6 - Prob. 20SGCh. 6 - Prob. 21SGCh. 6 - Prob. 22SGCh. 6 - Prob. 23SGCh. 6 - Prob. 24SGCh. 6 - Prob. 25SGCh. 6 - Prob. 26SGCh. 6 - Prob. 27SGCh. 6 - Prob. 28SGCh. 6 - Prob. 29SGCh. 6 - Prob. 30SGCh. 6 - Prob. 31SGCh. 6 - Prob. 32SGCh. 6 - Prob. 33SGCh. 6 - Prob. 34SGCh. 6 - Prob. 35SGCh. 6 - Prob. 36SGCh. 6 - Prob. 37SGCh. 6 - Prob. 38SGCh. 6 - Describe how bus width and word size affect and...Ch. 6 - Prob. 40SGCh. 6 - Prob. 41SGCh. 6 - Prob. 42SGCh. 6 - Prob. 43SGCh. 6 - Prob. 44SGCh. 6 - Prob. 45SGCh. 6 - Prob. 46SGCh. 6 - Prob. 47SGCh. 6 - Prob. 1TFCh. 6 - Prob. 2TFCh. 6 - Prob. 3TFCh. 6 - Prob. 4TFCh. 6 - Prob. 5TFCh. 6 - Prob. 6TFCh. 6 - Prob. 7TFCh. 6 - Prob. 8TFCh. 6 - Prob. 9TFCh. 6 - Prob. 10TFCh. 6 - Prob. 11TFCh. 6 - Prob. 12TFCh. 6 - Prob. 1MCCh. 6 - Prob. 2MCCh. 6 - Prob. 3MCCh. 6 - Prob. 4MCCh. 6 - Prob. 5MCCh. 6 - Prob. 6MCCh. 6 - Prob. 7MCCh. 6 - Prob. 8MCCh. 6 - Prob. 1MCh. 6 - Prob. 2MCh. 6 - Prob. 3MCh. 6 - Prob. 4MCh. 6 - Prob. 5MCh. 6 - Prob. 6MCh. 6 - Prob. 7MCh. 6 - Prob. 8MCh. 6 - Prob. 9MCh. 6 - Prob. 10MCh. 6 - Prob. 2CTCh. 6 - Prob. 3CTCh. 6 - Prob. 4CTCh. 6 - Prob. 5CTCh. 6 - Prob. 6CTCh. 6 - Prob. 7CTCh. 6 - Prob. 8CTCh. 6 - Prob. 9CTCh. 6 - Prob. 10CTCh. 6 - Prob. 11CTCh. 6 - Prob. 12CTCh. 6 - Prob. 13CTCh. 6 - Prob. 14CTCh. 6 - Prob. 15CTCh. 6 - Prob. 16CTCh. 6 - Prob. 17CTCh. 6 - Prob. 18CTCh. 6 - Prob. 19CTCh. 6 - Prob. 20CTCh. 6 - Prob. 21CTCh. 6 - Prob. 22CTCh. 6 - Prob. 23CTCh. 6 - Prob. 24CTCh. 6 - Prob. 25CTCh. 6 - Prob. 26CTCh. 6 - Prob. 27CTCh. 6 - Prob. 1PSCh. 6 - Prob. 2PSCh. 6 - Prob. 3PSCh. 6 - Prob. 4PSCh. 6 - Prob. 5PSCh. 6 - Prob. 6PSCh. 6 - Prob. 7PSCh. 6 - Prob. 8PSCh. 6 - Prob. 9PSCh. 6 - Prob. 10PSCh. 6 - Prob. 11PSCh. 6 - Prob. 1.1ECh. 6 - Prob. 1.2ECh. 6 - Prob. 1.3ECh. 6 - Prob. 2.1ECh. 6 - Prob. 2.2ECh. 6 - Prob. 2.3ECh. 6 - Prob. 3.1ECh. 6 - Prob. 3.2ECh. 6 - Prob. 3.3ECh. 6 - Prob. 4.1ECh. 6 - Prob. 4.2ECh. 6 - Prob. 4.3ECh. 6 - Prob. 5.1ECh. 6 - Prob. 5.2ECh. 6 - Prob. 5.3ECh. 6 - Prob. 2IRCh. 6 - Prob. 4IRCh. 6 - Prob. 5IRCh. 6 - Prob. 1CTQCh. 6 - Prob. 2CTQCh. 6 - Prob. 3CTQCh. 6 - Prob. 4CTQ
Knowledge Booster
Background pattern image
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
  • Text book image
    Enhanced Discovering Computers 2017 (Shelly Cashm...
    Computer Science
    ISBN:9781305657458
    Author:Misty E. Vermaat, Susan L. Sebok, Steven M. Freund, Mark Frydenberg, Jennifer T. Campbell
    Publisher:Cengage Learning
    Text book image
    CMPTR
    Computer Science
    ISBN:9781337681872
    Author:PINARD
    Publisher:Cengage
    Text book image
    MIS
    Computer Science
    ISBN:9781337681919
    Author:BIDGOLI
    Publisher:Cengage
Text book image
Enhanced Discovering Computers 2017 (Shelly Cashm...
Computer Science
ISBN:9781305657458
Author:Misty E. Vermaat, Susan L. Sebok, Steven M. Freund, Mark Frydenberg, Jennifer T. Campbell
Publisher:Cengage Learning
Text book image
CMPTR
Computer Science
ISBN:9781337681872
Author:PINARD
Publisher:Cengage
Text book image
MIS
Computer Science
ISBN:9781337681919
Author:BIDGOLI
Publisher:Cengage