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
116 views Asked by user10112169 At
1
There are 1 answers
Related Questions in OOP
- How do I apply the interface concept with the base-class in design?
- Creating multiple instances of a class with different initializing values in Flutter
- System.InvalidCastException while inheriting a class
- How to add logging to an abstract class in php
- creating cutscenes using OOP and pygame
- What effect does the `virtual` modifier have on an interface member?
- How to pass the value of a function of one class to a function of another with the @property decorator
- Creating a C++ Class Instance for every server request?
- Dart OOP programming
- Containing Object Design
- Clean architecture/OOP and optimization: how to organize for classes with same logic
- How to get 5 LEVEL hierarchy users from database using PHP and MYSQL
- TypeError: unsupported operand type(s) for /: 'property' and 'complex'
- How can I refer to this metaclass inside a metaclass without specifying its name in the code?
- Why customed "-eq" do twice in Powershell?
Related Questions in C++11
- lvalue and rvalue references
- c++ range-for loop over custom class ::begin() expects 1 argument, 0 provided
- Difference between INT_MIN , INT8_MIN , INT16_MIN. For MAX too
- I am getting segmentation failt while assigning the resourcemanager instance
- Prevent reordering of prefetch instruction in c++
- How to Use libcurl to Check HTTP/S Proxy?
- Why we use `class` when there's `struct` in C++?
- Memory Management in C++: Differences in allocating shared_ptr using new vs make_shared
- Does C++ range-based `for` make copies?
- Is the behaviour is determined when initliasing the inner class's static member variable's value equal to the outer class's static member variable?
- Question about initialization. The output must be zeros with C++11 and afterwards?
- How to replace non-standard "for each" received from Visual C++ users
- G ++ can not pass the parameters in using the C ++ 11 process library under Windows?
- Why the Variadic Constructor with std::is_constructible Fails to Handle Initializer List Initialization?
- Class Object Error 'Undefined Reference For'
Related Questions in CODEBLOCKS
- Error: id returned 5 exit status when building C++ code in Code::Blocks
- Why does my c++ compiler put trash characters when displaying build messages?
- How can I ever know what workspace I have open?
- I need to put the follwing blocks of code in the same row using visual studio
- Cannot use Debugger in Codeblocks for AVR-Project
- Unable to run opencv c++ functions in code blocks
- Cant recognise long long , long double in MinGW on Code::Blocks
- Why do I not get a warning when I print a variable without initialising a value? (CodeBlocks 20.03)
- When i run the telegram filter bot in my vps i have got this error
- Code Blocks auto completion working partly
- (Kodular) The operation replace all cannot accept the arguments: , [*nothing*], [-], [*empty-string*]
- "colour_themes.conf" file isn't entirely working as intended in the editor space
- Problems compiling GTK3
- GNU Fortran - Function 'dcosd' has no IMPLICIT type
- How to Increase Text Size in CodeBlocks Output Screen?
Related Questions in LOW-LEVEL-CODE
- C# Key and mouse hook not working on excel
- Why are as-assembled files so big?
- Shouldn't line 103 be LDR number instead of #0?
- how to pack a section of machine code as a function in .o object file
- Why is the pixel not showing when i turn its position into variables ? Assembly 8086 NASM
- Event Processing based on different windows
- Machinecode and hardware
- PEB X86 wrong address
- Why <puts> is called?
- What does this syntax *((unsigned int *)(buffer+i)) mean in C
- How to Organize the classes of a low level design in code blocks IDE
- How to assign value to std_logic_vector in VHDL?
- Nand2tetris Project4- Test failed - of Fill.asm: Comparison failure at line 3
- Fastest way to spread 4 bytes into 8 bytes (32bit -> 64bit)
- if (n!=0) n=0; v/s n=0; Which is more efficient and why?
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?
Popular Tags
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)
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.