50 likes | 189 Vues
This tutorial by Prakash Kalingrao Aithal explores key concepts in software engineering, focusing on why the number of faults is not a definitive measure of quality. It also provides a clear definition of a project and includes a controlled flow graph (CFG) for a sample program. Additionally, the tutorial comprises various exercises aimed at reinforcing understanding of fundamental principles in software engineering. References from reputable texts are included to aid further study, offering a well-rounded perspective on the subject.
E N D
SOFTWARE ENGINEERING By PrakashKalingraoAithal
Tutorial Questions • Why number of faults is not a measure of quality? • Define a Project?
Draw the CFG for the following Program • main() { int y=1; if(y<0) if(y>0) y=3; else y=0; printf(“%d\n”,y); }
Tutorial • Solve all exercise problems.
References • Fundamentals of Software Engineering 2nd Edition by Rajib Mall • Software Engineering a practitioners Approach by Pressman R. S. • Software Engineering Theory and Practice by Pfleeger S. L. and Joanne M. Atlee • An Integrated Approach to Software Engineering by PankajJalote