Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

7
  • Is a java class with only 50 lines and a email client application both a program can only have one process? Commented Jul 25, 2016 at 21:28
  • The notion of process offers a boundary of protection, so two programs would not typically share one process even if they are small, if I understand your question. Commented Jul 25, 2016 at 21:32
  • 1
    You would usually call Chrome one program, but each tab has its own process. Commented Jul 25, 2016 at 21:57
  • 1
    Large databases (DBMS) may have replicated (multiple) procceses of the same executable for performance , as well as a collection of utility programs. Multi-tier architecures also usually have multiple programs and processes. Commented Jan 16, 2022 at 18:18
  • 1
    @GRANZER, See en.m.wikipedia.org/wiki/Multitier_architecture Commented Jan 16, 2022 at 18:25