Software Engineering is the discipline that takes care of the development process of software from the beginning to the end and any further change. It's one of the most important parts of systems development.
-1
votes
2answers
26 views
Software Risk Analysis [closed]
I have written a software application in Visual Basic.NET and have been asked to do a Risk Analysis.
I have the following:
Can I please have some more examples to add to my Risk Analysis.
Thanks ...
-1
votes
0answers
15 views
Introduction to Software Engineering - Exam preparation? [closed]
I'm a second year Software Engineering Student. I have had a few exams such as Discrete Mathematics and Functional Programming and Data Structures and Algorithms.
But I have one exam still to come, ...
-1
votes
0answers
12 views
Man-day values of populer project? [closed]
Is there any website about the man-day value of populer project? For example NHibernate's man-day value is 37 man-years...
-4
votes
1answer
42 views
How does Codeschool or other online interactive platforms work? [closed]
There is question for me, does anyone know how online interactive platforms are working!?
What design pattern they use?
How they check some codes are correct or not!? Do they run the code for ...
2
votes
2answers
67 views
Mixing up languages and technologies: Is it a good idea?
Please have a look at the following design. It is a Block diagram, which is created to display COMPONENTS
Please note this is a diagram for a desktop application. What you see here are components, ...
2
votes
4answers
69 views
What is difference between PORTABLE and Machine Independent? [closed]
This might be silly question but I am confused between portable and machine independent.
What is Java, c#.net : portable or machine independent?
0
votes
1answer
20 views
is it necessary to use Microsoft approach in every class for finding software maintainability?
For finding software maintainability by using Microsoft approach, where normally we have to use following method
MI = MAX(0, (171 — 5.2 * ln(HV) — 0.23 * CC — 16.2 * ln(LoC)) * 100 / 171),
Where,
...
0
votes
0answers
25 views
What is product quality and process quality in software engineering [closed]
What is the main difference between product quality and process quality in software engineering? Can someone please answer my question. Thanks
-2
votes
1answer
16 views
simple example of upper bound and lower bound
Could you please give me a simple example of "upper bound" and "lower bound" in field of software engineering.
I search the Internet but I didn't find a simple and understandable example.
Edit: I ...
2
votes
2answers
33 views
Extracting an object diagram to a class diagram
Below, is the mapping of class diagram to object diagram correct? I can not seem to find a useful tutorial on object diagrams anywhere!
Here is the image
1
vote
0answers
46 views
+50
UML and static polymorphism
I have an object which is instantiated during compilation according to the build configuration. As far as the surrounding software considered, the object exposes the same interface. I would like to ...
1
vote
3answers
94 views
what is functional and non functional requirement
I read many sites. I don’t understand exactly difference between functional and non-functional requirements in the context of designing a software system.
Could you please give example for both? And ...
-1
votes
1answer
39 views
can i make a quickbooks-like app in unity 3D?
i understand that i can bring preety cool looking assets allthough i am uncertain of blender and unity anyways
can i make a program running steady short animations in 3d but yet side scripted ...
1
vote
1answer
25 views
Methodology for analysing an existing information system
I have to analyse the existing information system.
I would like to know some methodology about how to analyze the existing information system.
I have tried to find something in google. I have found ...
-3
votes
0answers
12 views
Networks vs Hardware Engineering stream selection [closed]
I am currently studying electrical and computer engineering and am supposed to select my areas of focus for 3rd and 4th year. We have a generalized curriculum for the first two years.
I am really ...
-1
votes
2answers
44 views
how to allow just the admin to create objects from specific classes
background
I have three classes classA, classB and classC.
I just want to allow the admin to create new objects from those classes.
what I have tried
since all the previous classes have some ...
-1
votes
0answers
27 views
Searching for a Web Based Software Development Platform
Are there any "Software Development Platforms" that have Features to share development artefacts and anything like that. You shouldn't be able to create those artefacts within the platform, but maybe ...
-2
votes
0answers
24 views
Good Software design forum? [closed]
This site is great for syntax and coding fixes but when ever I ask software design questions they get down voted and it is a big waste of time for me and apparently the people who read them. Is there ...
1
vote
3answers
41 views
“Multichannel” development using git
I'm developing an App for Windows Phone, using SDK version 7.1 (for WP7) and hosting it in a git repo. In order to make it available on Windows Phone 8 devices with higher resolutions, I created a ...
-3
votes
0answers
31 views
Agile Approach vs. Process Maturity Approach [closed]
What are the important differences between the agile approach and the process maturity approach to software process improvement
This is a homework question by the way...
-5
votes
0answers
23 views
Will Software Engineering ever become a formal profession? (like Accounting, Law, Medicine, etc.) [closed]
Unlike other professions (such as those quoted in the topic), there is no profession-wide certification for Software Engineering.
I am well aware of the multitude of technology and methodology ...
-1
votes
0answers
35 views
Developing a quickbook web based application [closed]
Well.We are planning to develop a web based application using php like quickbook 2013 version.I downloaded the 30 days trail version and checking the software features with their documentation and ...
-4
votes
0answers
41 views
implement events in c like in c# [closed]
I'm an RT embedded engineer and I'm working on a project that should be modular, where one module isn't tightly coupled to another.
I liked the C# concept of events when you have publisher and ...
-1
votes
0answers
30 views
Solving testing questions and state machine diagrams problems
Build the state machine diagram corresponding to the PurchaseTicket use case of Figure 11-24. Generate test cases based on the state machine diagram using the state- based testing technique. Discuss ...
1
vote
2answers
72 views
How to reduce code duplication for database operations
I am using Sql server 2008 r2 database and my application is in Java, I am connection to database using jdbc.
background
I am using stored procedure in my database. and calling them from my jdbc.
...
-2
votes
0answers
11 views
Cisco network record player, how does this work? [closed]
I am wondering what would be the working logic behind Cisco network player? What takes it to develop something like this ? What language did they use to develop such application ?
0
votes
0answers
18 views
Handling internal vs external requirements in an eclipse plugin
So we have an eclipse plugin that is destined to both internal and external users but the internal and the external requirements are not always the same.
We are looking for a strategy to handle ...
0
votes
1answer
42 views
Develop a video player from scratch?
I want to develop a video player from scratch and I am wondering where to start ? I would like to design a stand alone video player application like VLC (not VLC) on my own. Which programming language ...
2
votes
1answer
48 views
java edit object with too many attributes
background
I have a class Person which has a lot of attributes.
what I want
to allow the user to edit those attributes.
what I have tried 1
create function its parameters is all the attributes, ...
1
vote
2answers
44 views
java create objects for view and for edit
problem
I am building my classes, so the owner of the class can edit the information , but another class who just wants to get data from the first class MUST just view the data not edit it.
Example
...
1
vote
2answers
27 views
Infeasible paths in path coverage
in the image in the link
is it correct to say the Infeasible path is
If score < 45
/*C*/ then print (‘fail’)
/*D*/ else print (`pass’);
this is infeasible because if score is greater than ...
0
votes
0answers
35 views
FrontEnd javascript application conceptual design
I need to develop a builder/designer for customizing products on a web page.
I have a product image to display, then the system should provide tools to customize the product. Adding text, changing ...
1
vote
2answers
142 views
Integration test best practices
I looked in stackoverflow and could fine one or two questions that have a similar title than this one, but none of it answers what I'm asking. Sorry if this is duplicated.
In unity tests, there is a ...
2
votes
0answers
81 views
UML Class Diagram for Strategy Pattern
I have an exam in a couple of hours and I am trying to solve sample questions for it. I couldn't find a solution to following question.
Draw a class diagram corresponding to the following ...
2
votes
1answer
42 views
Separation of concerns - how to achieve with this code
I have the following scenario (this fits into a larger mvc framework)
There is a large xml config which defines model types that are available to a specific feature of the system:
...
-1
votes
0answers
11 views
is lettin admin to give person based authorization best practice? [closed]
In a software project, is giving permission to admin, make authorization person based best practice? Or only group based authorization is best practice?
I know that you can control authorization ...
1
vote
0answers
49 views
How to automatically extract the software architecture of a Javascript program?
Usually, when I try to know more about a program based on its sources, I try to run doxygen on it and to extract the documentation and the global architecture of it (class hierarchy, modules, ...
3
votes
1answer
115 views
Scala usage statistics [closed]
We are a small team of developers and are currently in the process of drafting a business idea targeting scala developers as potential customers. In order to convince investors we obviously need some ...
0
votes
1answer
44 views
What should I do on the first look of software designing
I want to design a software and I have a question
What should I see in the first phase (first look) ?
Define Entities(objects)?
or
Modules?
or
Relations
or
...
Thank you so much
2
votes
3answers
139 views
What is the difference between using the Service Locator anti-pattern and using the Castle Windsor container?"
Recently, I have been trying to understand what is the difference between using the Service Locator "anti-pattern" and using the Castle Windsor container. I have found some info here and there on the ...
0
votes
0answers
17 views
Realtime Text Filtering system
I know this is a little vague, but I am right not clueless as to how this can be done so just wanted to know if this is possible or not.
Current System
Our current system is based on solr, where is ...
-1
votes
1answer
48 views
how to implement any software life cycle model in a project [closed]
I want to implement spiral model in my project as it is quit large project and also involve risks ,but i don't have any idea how to implement a SDLC model in project ?
what could be possible way to ...
1
vote
2answers
65 views
DRY and KISS how to apply this principles in database? [closed]
I understood these software engineering principles as per theory
DRY
KISS
I'm a SQL server database developer but I don't understand where and how should i apply this principles while coding ...
0
votes
1answer
38 views
Sets of different classes = Component?
This is not really a programming question but more of a software engineering question.
My program has many features - some example are display lesson, retrieve user info and so on. For each of these ...
-1
votes
1answer
24 views
Which type of software can not be web-based? [closed]
Since the arrival of the HTML5 I can only think of very few applications that cant be re-written in HTML and JavaScript. For example:
Apps that need to communicate with USB peripherals
Apps that ...
1
vote
0answers
22 views
EA no database type when adding stored porcedure
I see this official page http://www.sparxsystems.com/uml_tool_guide/data_modeling/storedprocedureindividualclass.htm . I want to add stored procedure to my project, there is no database to select from ...
-2
votes
1answer
55 views
What are unique information avaiable in computer [closed]
In general every one know unique items is MAC (Physical Address), but i saw some software which change computer physical address.
Our products are used by N number of customers, now i want to know ...
0
votes
1answer
15 views
what is the description for ID
I am writing database table's description, in that table i have ID column which is primary key, what is the description for that ID please? I need standard description.
should I say it is primary ...
0
votes
0answers
34 views
usecase how to extend not all the main flow events
I have a use case Main usecasewhich has in its main flow 4 steps:
First Step.
Second Step.
Third Step.
Fourth Step.
Now I have another use case second usecase which extends the main use. the ...
0
votes
0answers
7 views
Web based review tool
I want to write a simple web based review tool where my peers/friends can double click on a line of text and add their comments. Also, I want folks to reply to comments etc.
I have not come to a ...



