I am having an interview where I have to do low level design coding in an IDE which I have choosed to do in code blocks IDE . So I have question of how to organize different classes of that design. My point of asking is if I have 10 classes should I create all 10 different classes in a project by adding every time a new class. I think it would be bad approach. So Is there any other approach to do so.
How to Organize the classes of a low level design in code blocks IDE
115 Views Asked by user10112169 At
1
There are 1 best solutions below
Related Questions in OOP
- Access objects variable & method by name
- Why does compiler recognize while(true) at compile time but not if(true)
- Pass variables to extended class
- Cast a superclass type to a subclass type?
- Understanding difference in Swift properties for structs and classes in assignment
- Does exist any way to force child class to have at least one field with a specified attribute?
- Symfony : is it better to use a trait or an intermediary class to complete Controller one?
- (Java) What kind of argument is this? With a
- C++ Implementing a Queue of cars in OOP
- Inheritance in openERP (odoo)
- missing 1 required positional argument: 'key'
- how can Object class in ruby be an instance of it's subclass, class "Class"
- How to force others to obey a specific layout for a child class?
- Class variables in OOP
- define_method in a class method
Related Questions in C++11
- C++ using std::vector across boundaries
- Using QPointer and QObject::connect with C++11
- Using std::vector<> and std::shared_ptr<> should cause error
- invoking function for each variadic template arguments and passing the result as constructor arguments
- Different behavior of async with Visual Studio 2013(Windows8.1) and GCC 4.9(Ubuntu14.10)
- Whether to use T const& or T&&
- C++ IRC Bot Buffer Error
- Downcast from a container of Base* to Derived* without explicit conversion
- Assigning values in a vector in non-sequential order
- Can I use C++11 list-initializer syntax for vectors with variables?
- is it fine to use auto keyword in function parameter?
- Variadic template method and std::function - compilation error
- Clustering on Graph (using Boost Graph Library)
- libc++ difference between vector::insert overloads
- Cannot convert argument1 to const char
Related Questions in CODEBLOCKS
- BOOST & GCC, undefined reference to boost
- How collapse all XAML code sections at once?
- Compiling PDCurses into ".a", error with mingw command
- Undefined reference to `linrg_` in IMSL library with gfortran in CodeBlocks
- what is the wrong with that loop?
- C++ compiler error in CodeBlocks & Xcode
- CodeBlocks c++ - Can't use Thread because the compiler doesn't support it
- SFML 2.3 and CodeBlocks error compilation
- code::blocks can't create files
- How to include a "custom" library in Code::Blocks? (Windows 7)
- missing sfml-graphics-d-2.dll when using SFML
- Error : Cmake can't generate openCV
- Error LNK2019 LNK2001
- GDB hangs on breakpoint (using Codeblocks & CppUTest)
- selected_real_kind in gfortran and code::blocks
Related Questions in LOW-LEVEL-CODE
- Tasm Assembly Code - Terminating a Repeating Program
- Where can I find low level Sound Programming Theory Tutorials
- Nand2tetris Project4- Test failed - of Fill.asm: Comparison failure at line 3
- How does software interact with hardware at the lowest level?
- c++ difference between reinterpret cast and c style cast
- Why are as-assembled files so big?
- C programming and error_code variable efficiency
- Fastest way to spread 4 bytes into 8 bytes (32bit -> 64bit)
- Interlock Objects with Integer
- Machinecode and hardware
- How to Organize the classes of a low level design in code blocks IDE
- What does this syntax *((unsigned int *)(buffer+i)) mean in C
- Computer programs from the point of view of CPU
- default __init__ for code objects
- How can I write a string to a file using the low-level write() function?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
If, in the program you're developing, classes interact with each other, they must to be in the same project.
in a single project, you can and must have all the classes you need to instantiate the objects what you need in the program.