Hot answers tagged software-engineering
4
A bit of theory is always required. It helps you thinking in the right way.
I know it may seem very detached at the first approach, but if you are able to catch the true meaning of it, you'll have that extra oomph, especially in your field.
The Turing machine, for example, you have mentioned, is a classical logic and mathematically model to understand the ...
4
you mean you want this? (I'm not sure i understand your question)
private void FieldsLOCK(params bool[] param){
//you receive an array of boolean
}
this way you can call the function with any number of boolean parameter
FieldsLock(MyBool1, MyBool2);
FieldsLock(MyBool3);
3
Imagine a cloakroom at a party.
You give the nice lady your coat and she gives you a ticket. If you want your coat back you can give her the ticket back. Nicely encapsulated system.
Would it be logical for the lady to use the same system when, for example, she want to rearrange the coats?
Let's say her boss says that that is the rule. What does that ...
2
Defect Density is the number of confirmed defects detected in software/module during a defined period of development/operation divided by the size of the software/module.
('defects(confirmed and agreed upon (not just reported))).
Defect Density:
Defect Density = Defect/unit size
Ques may arise here is, what is this unit size actually meant for.
Unit ...
2
First thing's first, keep it simple. Every new tool you add is another dependency, and another potential stress point for the project. With that in mind, some good tools, methodologies, and best-practices for server-side javascript development are:
Folder Structure
This doesn't really matter. Just do what makes sense to you, and what you think will make ...
2
I use graphviz for this. You textually specify the graph you want and it provides a variety of command line tools for drawing it. It doesn't always draw things perfectly, but it usually does a good enough job. There are also probably LaTeX packages out there, if you're into that, although its probably overkill for your needs if you don't use it already.
2
The answer to both questions is No.
Partitioning is an optional feature for an activity diagram.
UML is most of all a means of communication. When partitioning adds useful information to the ddiagram, then you should include it. When it doesn't add anything to the message presented by the diagram, then you don't add it.
2
Use params keyword of C# which specify a method parameter that takes an argument where the number of arguments is variable.
So your function would look like this:
private void FieldsLOCK(params bool[] fields)
{
cmbModDRno.Enabled = fields[0];
MODcompanyNAME.Enabled = fields[1];
MODdeliveryDATE.Enabled = fields[2];
...
2
There are two reasons why these subjects are included.
As Gengiolo says, these form the theoretical basis that we should, arguably, all have.
In attempting to understand these fundamental principles, we develop our reasoning skills and can apply them to complex multi-disciplinary problems.
I rarely use any of the theoretical - or even practical - ...
1
I'd say that branches that have been merged to master, i.e. listed by
git branch --merged
can and should be safely deleted with
git branch -d <merged_branch>
git push --delete origin <merged_branch>
One of the points of Git is that it is so easy to create (and merge) branches. You should "branch early and often". But to let all those old ...
1
Well,
Software Engineering education is problematic. And Computer Science also.
I do not think that to study Turing Machine, will give you more insight about algoritmic complexity nor limits of computation. But they are part of our history.We should know them.
At least we should know Alan Turing :-)
And It is hard to talk about "theoretical basis" of ...
1
Literally any programming language can be used. Your choice should be influenced by (a) what you know; (b) what relevant libraries exist in a given language; and (c) whether your clients have any specific requirements in respect of either execution or maintenance.
(a) is specific to you; (b) tends to favour popular languages, especially java, C++, .net ...
1
Do not Forget : Use cases are just "half of the whole story"
You will have non-functional requirements also.You can not capture every important detail with use cases.
Then Ask Yourself : Are Use Cases Right For Me?
Use Cases are generally good for "interactive systems": systems that has interaction with user.They are good for capturing "functional" ...
1
Looking at the definition of software requirements specification, you can specify a RESTful API as a technical requirement in the perspective of the product use such as Software Interfaces (i.e. Overall description, Product perspective, Software interfaces). This is not a functional requirement. It is only a technical requirement of your project.
There are ...
1
First is there a store, which can be a grocery store. Any store has two type of objects: items and purchases. Without items and/or purchases will the store stop to exist. Items will exist without the store (they must be delivered to the store for instance), but the purchases belong to the store itself. That is why there is an aggregational relationship ...
1
I think your diagram is fine. What you are describing seems to best described as a sequence diagram describing your compilation process. (Kind of like how you'd draw a factory sequence diagram I guess)
As you correctly point out, interactions at runtime occur with some unknown concrete thing behind the interface, so you never really have to bother about ...
1
Combining from @ChiragDesai and @user2004268 answers and linked question (Static polymorphism definition and implementation):
Polymorphism type is an implementation detail and as such it doesn't have active role in design diagrams.
Implementation details can be present in UML diagram but have a complementary and informal role. Stereotypes and notes can be ...
Only top voted, non community-wiki answers of a minimum length are eligible



