Multiple choice technology performance

When , in the analysis graph you see the committed bytes keep on increasing and available bytes decreasing, what could be possible reason behind it

  1. Disk Issues

  2. Network Bandwidth issues

  3. Memory Leaks

  4. Process Bottlenecks

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

When committed bytes consistently increase while available bytes decrease, it indicates memory is being allocated but not freed. This pattern is characteristic of a memory leak, where processes hold onto memory they no longer need. Disk issues would show different counters, network problems affect throughput metrics, and process bottlenecks typically manifest as CPU or queueing issues rather than this specific memory consumption pattern.