About 6,000,000 results
Open links in new tab
  1. oop - What is the big difference between modular and object …

    Aug 3, 2013 · Modular programming just implies you have these two (or more) modules, but says nothing of how they achieve what they achieve. The modules can use object-oriented …

  2. java - How to make code modular? - Stack Overflow

    Sep 18, 2009 · 30 I have some Java programs, now I want to find out whether it is modular or not, if it is modular then up to what extent, because modularity can never be binary term i.e. 0 or 1. …

  3. .net - Best way to set up a modular program in C# - Stack Overflow

    Best way to set up a modular program in C# [closed] Asked 15 years, 10 months ago Modified 6 years, 10 months ago Viewed 31k times

  4. How to write a flexible modular program with good interaction ...

    May 28, 2010 · How to write a flexible modular program with good interaction possibilities between modules? Asked 15 years, 3 months ago Modified 15 years, 3 months ago Viewed 9k …

  5. Modular multiplicative inverse function in Python - Stack Overflow

    modular exponentiation is done with at most N*2 multiplications where N is the number of bits in the exponent. using a modulus of 2**63-1 the inverse can be computed at the prompt and …

  6. modular - C++ program design - Stack Overflow

    Jun 3, 2010 · Use libraries to contain classes and functions of a common theme. An alternative is to design a program into functional blocks and data structures. Repeat until the blocks and …

  7. What is the diffrence between a function and a module?

    Modular programming applied encapsulation to all of this, by separating the implementation (private to the module) from the interface (what the rest of the program can use). So, a …

  8. java - how to use the same function to prompt different mesages …

    The part that confuses me is: the program should have one main module and only one function. That function should be called twice in the main module asking the user for either their name …

  9. JavaFX - difference between modular and non-modular

    Dec 27, 2020 · 0 In the simplest terms, the difference between a modular and non-modular Java project is the presence of a special file called module-info.java. If the file is included in the …

  10. What exactly is modular coding, and am I doing it right?

    Jan 25, 2012 · 2 Yeah your program looks to adhere to modular programming paradigms, such as having separate components that come together to make up the program, and written in a way …