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

What is C language

  

What is C language:-

is a high level language, developed by Dennis Ritchie at 

Bell laboratory in 1972.


C language is considered as the mother language of all the modern programming languages because most of the compilers, JVMs, Kernels, etc. are written in C language, and most of the programming languages follow C syntax, for example, C++, Java, C#, etc.

Syntax of C:-

#include<stdio.h>

void main()

{

variable declaration part (int, char, float, etc)

clrscr(); (for clear screen)

statements;

getch(); (It can be used to hold program execution)

}

for output we write printf.

for input we write scanf.


for example print your name:-

#include<stdio.h>

void main()

{

clrscr();

printf("xyz");

getch();

}

then, your name will be printed.

also for compile use:- alt+f9, run use :- ctrl+f9.



Comments

Post a Comment

Popular posts from this blog

E-R model (Entity-Relationship model) in DBMS, Attributes

Beginning with C++ language