About 50 results
Open links in new tab
  1. How does the computer stores the values in memory?

    Nov 14, 2023 · The computer stores bits, the 16 bit value 0b10101010101101011 is the same as 0xAABB, just easier for humans to carry the 0xAABB around when communicating to each other or …

  2. How a variable and its reference is stored and accessed in computer …

    Dec 24, 2018 · The simplest one is that the computer has, in a certain moment, an amount of free and contiguous memory. When a program starts, all that (free and contiguous) memory is given to the …

  3. How do I monitor the computer's CPU, memory, and disk usage in Java?

    Current CPU usage** (percent) Available memory* (free/total) Available disk space (free/total) *Note that I mean overall memory available to the whole system, not just the JVM. I'm looking for a cross …

  4. How do I find the CPU and RAM usage using PowerShell?

    Jun 9, 2011 · 91 I am trying to get PowerShell to give me the RAM and CPU usage, but I can't figure out what WMI class to use. My computer has two processors, so it would be useful to have the …

  5. computer science - What does the memory address mean? - Stack …

    Jan 18, 2011 · A hex memory address (like what you would see if you printed out the value of a pointer) points to a location in virtual memory. On a 32 bit system, each process has a full 4GB of virtual …

  6. computer science - Calculating memory size from address and word …

    Dec 15, 2020 · 0 I'm currently studying for my computer architecture exam and I found this question online A digital computer has a memory unit with 26 bits per word. The instruction set consists of 756 …

  7. memory management - Calculating Page Table Size - Stack Overflow

    Apr 30, 2017 · Memory_Required_Per_PgTable = 4 MB (Megabytes) So yes, each process would require at least 4MB of memory to run, in increments of 4MB. Example Now if a professor wanted to …

  8. How to get free physical memory of remote computer using PowerShell

    Sep 3, 2012 · I have this: (Get-WMIObject Win32_logicaldisk -computername computer).TotalPhysicalMemory to get size of physical memory installed on remote computer. How …

  9. One memory location in a computer stores how much data?

    One memory location in a computer stores how much data? It depends on the computer. A memory location means a part of memory that the CPU can address directly. Whats the basic unit of memory …

  10. A computer has 64KB of memory. How many memory locations does it …

    Oct 18, 2019 · A computer has 64KB of memory. Its addressability is 8 bytes. How many memory locations does it have? How many bits are needed to address each location in memory? I know that …