About 50 results
Open links in new tab
  1. What does it mean by word size in computer? - Stack Overflow

    Nov 3, 1982 · (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 …

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

    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 …

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

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

  5. How do I monitor the computer's CPU, memory, and disk usage in …

    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 …

  6. c - Difference between static memory allocation and dynamic …

    Dec 5, 2011 · I would like to know what is the difference between static memory allocation and dynamic memory allocation? Could you explain this with any example?

  7. c - Structure padding and packing - Stack Overflow

    Data structure alignment is the way data is arranged and accessed in computer memory. It consists of two separate but related issues: data alignment and data structure padding.

  8. computer science - Calculating memory size from address and …

    Dec 15, 2020 · 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 …

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

  10. How to get free physical memory of remote computer using …

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