Why there is not a universal agreement on system life cycle?
because some people think the egg came first, some think the chikin did
(excuse my spelling)
What are the example of prototype model?
When you customer has a legitimate need bit is clueless about details/ requirements then develop a prototype as a first step.
Can you give me some ideas for anchoring of cultural programs in annual function?
Not unless we know what type/s of cultural program/s you are referrng to.
What is development approach followed by prototype model?
The development approack followed is "quick and dirty",the focus is on quicker development rather than on the quality.
Ranjeet khune(dd) Banglore
Is there any program to write pseudocode?
Yes, this program is the same as flowchart, pseudo code.
http://watts.cs.sonoma.edu/SFC/index.html
another option is to use Note Tab Light and the Pseudo code library.
http://www.notetab.com/libraries.php?cat=scripting
No. Pseudocode is, as the name suggests, not real code. Pseudocode is an abstract concept that is often used in literature to highlight a principle or solution without focussing on the syntax details of a specific computer programming language.
For example, one language might make assignments with the '=' operator, another one might require the use of ':=' or '<-'. Other languages might even control assignments in a totally different way, for example by implication such as in stack-oriented programming languages.
Some languages might provide an "else if" construct to further diversify the else-branch of an if-clause, while others might use the "elif" keyword, or a different construct.
These are syntax details of programming languages, and are often irrelevant when discussing more abstract concepts in a language-independent way. Pseudocode aims to provide an intuitive description. The fact that the reader knows this to be pseudocode means that nobody ought to argue about the position of a semicolon or the use of single versus double quotes; you'd know this is not the real code in any specific language, but probably close for easy implementation at least with functional languages.
For example, when describing a general-purpose algorithm to sort items in a sequential list, pseudocode might say
if a > b then
swap a, b
The reader is required to transcode pseudocode into the specific programming language intented (C, Basic, Pascal, Perl, whatever).
Pseudocode is often used when describing generic algorithms, such as sort algorithms.
In Object-oriented design, association is a relation between two objects, for example, Car & Wheel have an association (that is, car contains wheels), Toolbar & Button have an association (that is, toolbar is composed of buttons), a Student is associated to Course (that is, a student can study a course).
It can be strong association or weak association.
If A is strongly associated to B then A cannot exist without B. In implementation terms, object A would be composed of object B & without creating B, creation of A is not possible. For example, a Toolbar cannot be created without creating a Button.
If A is weakly associated to B then A can exist without B. For example, a Student can exist without the exitence of Course.
You protect derived classes from breaking when you change the internal parts of the base class by making sure that the public (or protected) parts of the base class do not change. Only the private parts may change. If the public interface changes, then the derived class must often change.
Why is chunking important during the component-level design review process?
Chunking allows reviewers to combine related concepts into bigger chunks. The components can serve as chinks ( if they are highly cohesive and loosely coupled) making it easier for reviewers to keep track of the interactions of several components during a design review ran that a large number of individual classes and their methods.
How DFD difffer from flow chart?
Flow Chart is a generic term, and DFD is a specific one. Data Flow Diagram (DFD) is a data flow chart to illustrate the data flow/store/change in a component/system/product from the input to the output.
Is it always possible to realize win-win model for software?
While striving for a win-win model in software development is ideal, it is not always achievable. Conflicting stakeholder interests, budget constraints, and differing priorities can complicate the situation. However, effective communication, collaboration, and flexibility can help align goals and create mutually beneficial outcomes. Ultimately, the success of a win-win model often depends on the specific context and the willingness of all parties to negotiate.
What design Differences between Rolls-Royce engine and general electric?
Rolls-Royce engines typically feature a unique, modular design that allows for easier maintenance and upgrades, with a focus on noise reduction and fuel efficiency. In contrast, General Electric engines often emphasize high thrust-to-weight ratios and advanced materials for durability and performance. Additionally, Rolls-Royce engines may incorporate a more streamlined nacelle design, while GE engines often utilize larger, more robust fan blades for enhanced performance. Overall, these design philosophies reflect each company's engineering priorities and target markets.
What is throwaway prototyping?
A prototype is typically build to better understand some aspect of the final project. If you don't intend to use any part of the prototype in the final produce, it can be said to be a throwaway.
Inter block gaps are spaces (or gaps) in the recording stream that separate physical records, or blocks. They allow an opportunity for the read/write heads to change mode as necessary.
The INT 03 instruction on the 8086/8088 and higher class processors is a program generated interrupt that only requires one byte in the opcode. Often, this is used by a debugger, to plant breakpoints at certain points in the code. During the interrupt servicing routine, the original opcode would be restored so that it could be executed if desired.
Contrast this with the INT 01 instruction, which is actually a single step type of interrupt. In this case, the debugger sets the single step flag in the return PSW, and then simply returns to the program. No opcode needed to be planted, as there will be an automatic execution of just one instruction, and then the interrupt will occur.
The difference is in performance. INT 03 can allow the program to run at full speed until it hits the breakpoint. The downside is that, if the program does not make it to the breakpoint, the debugger will not be able to regain control without forcing an interrupt. INT 01 allows the debugger to examine the state of the program at every single instruction, allowing the implementation of complex rule based breakpoints. The downside is that program execution will be very slow.
How do you work a magic brain calculator?
A magic brain calculator operates by using mental math techniques and visualization strategies to perform calculations quickly and accurately without physical tools. Users typically practice specific methods, such as breaking numbers into smaller components or using mnemonic devices to remember formulas. The key is to strengthen cognitive abilities through regular practice, allowing for swift calculations in various scenarios. Ultimately, it's about enhancing mental agility and numerical intuition.
What should be the software requirements of a supermarket?
A supermarket would need an in depth inventory program that was tied to the sales registers and bar code readers. That would keep trasck on what was bought, what was sold, and what remained in inventory. The next part of the software would be to handle employees time. Time worked, sick time, vacation, and any other condition they might find important. The next would be for the Human Resources, to help in the hiring, training, and disciplinary actions of employees. There could be other things to track, but that would depend on supermarket, and what services they would provide. In many cases, some of the various departments are sub-contracted to other companies. Some of those services which may, or may not be handled by the supermarket chain include photography services, pharmacy services, automotive, sporting goods, paints, crafts, and so on.