SE Important Questions
SE Important Questions
1. Iterative waterfall and spiral model for software lifecycle clean and discuss various
activities in each phase.
2. What are the problems faced in software engineering? Explain each in detail.
3. Explain about the structure chart and all its types with suitable example.
4. Explain boundary value analysis and its significance with example.
5. Discuss Software Configuration Management and various types of project risks.
6. Explain software characteristics in detail. Discuss the reasons of software crisis.
7. Discuss the various Mc Call’s quality factors with quality triangle.
8. What are the various stages of requirement engineering process? Explain it with
diagrammatic representation.
9. Draw the software design framework and discuss the elements of design model.
10.Illustrate the principles of software design. Discuss the characteristics of good software
design.
11.Draw the control flow graph and Calculate the cyclomatic complexity with three methods
and independent paths for the given code-
IF A = 100
THENIF B > C
THEN A = B
ELSE A = C
ENDIF
ENDIF
PRINT A
12. Discuss the various types of structural testing techniques with example of each.
13.Draw the general model of software re-engineering and elaborate it.
14.Write short notes on:
(ii) COCOMO
15.What are the differences between Software Engineering Process and Traditional
Engineering Process?
i) Acceptance Testing
26 .write briefly on CASE Tools. How to estimate cost, effort and schedule/duration.
25. What are the need and category for maintenance in software maintenance.
26.What is meant by “Formal Technical Review”? Should it access both programming style
as well as correctness of software? Give reasons.
27.Compare ISO and SEE-CMI model.
28. What is Risk management? How are project risks different from technical risks?
29. Explain software quality assurance (SQA) with life cycle.
30.For the following c program estimate halstead length and volume measure.compare
halstead length and volume measures of size with loc measure/* program to calculate gcd
of two numbers*/int compute_gcd(int x,int y){while (x!=y)if (x>y) then x=xy;else
y=yx;return x;}