Software Quality Assurance in software engineering

Image
Software Quality Assurance (SQA):-  SQA is a set of activity assuring quality in software engineering process. Altimetry result in quality in software products. It include a following activities:- Process definition & implementation Auditing  Training  SQA is a process that insure hat developed software needs & compiles with defined or standardized quality specification. SQA is an on going process with in the SDLC that routinely checks the developed software to insure its needs desired quality measured. SQA helps to insure the development of high quality software. SQA practices are implementation in most type of software development regardless of underline software development model are being used. In a border sense SQA incorporate an implement software testing methodology to test software. SQA process test for quality in each phase of development until the software is completed. SQA genially works on one or more industries standards that helps in building software quality guid

Write a program in C++ to print pyramid with star (*) ?

 Q. Write a program in C++ to print pyramid  with star (*) ?

      

Ans:-
#include<iostream.h>
#include<conio.h>
void main()
{
int i,j,k;
clrscr();
for(i=1;i<=5;i++)
{
for(j=1;j<=5-1;j++)
{

cout<<" ";

}

for(k=1;k<i*2;k++)

{

cout<<"*";

}

cout<<"\n";

}

getch();

}



Comments

Post a Comment

Popular posts from this blog

Computer Added Software Engineering (CASE), features of Computer Added Software Engineering (CASE), Computer Added Software Engineering (CASE) tools in Software engineering

Types of attributes in DBMS, derived, single valued, simple, multivalued, stored, composite