About 51 results
Open links in new tab
  1. What and where are the stack and heap? - Stack Overflow

    Sep 17, 2008 · What are the stack and heap? Where are they located physically in a computer's memory? To what extent are they controlled by the OS or language run-time? What is their scope? …

  2. 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 …

  3. What does it mean by word size in computer? - Stack Overflow

    Nov 6, 2013 · (Except on computers with only word-addressable memory.) Word size is a pretty fuzzy term in modern computing, but is often related to the register width of the CPU. Knowing that the …

  4. 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 …

  5. 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 …

  6. language agnostic - Why are memory addresses are represented using ...

    Memory is often manipulated in terms of larger units, such as pages or segments, which tend to have sizes that are powers of 2. So if addresses are expressed in hex, it's much easier to read them as …

  7. 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 …

  8. Purpose of memory alignment - Stack Overflow

    Dec 19, 2008 · The memory subsystem on a modern processor is restricted to accessing memory at the granularity and alignment of its word size; this is the case for a number of reasons. Speed Modern …

  9. Effect of Online Compiler on computer's memory - Stack Overflow

    Feb 27, 2017 · An online compiler does not access your computer's local memory; all the runnning process takes place on a remote machine. Hence, your computer is unaffected by an online …

  10. How do you get total amount of RAM the computer has?

    Using C#, I want to get the total amount of RAM that my computer has. With the PerformanceCounter I can get the amount of Available ram, by setting: counter.CategoryName = "Memory"; counter.Counte...