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 Variable, Constant and keywords in C language

 


What is Variables?

Which value can be changed the execution of program that is called variablesvariable is nothing but a name given to a storage area that our programs can manipulate. Each variable in C has a specific type, which determines the size and layout of the variable's memory; the range of values that can be stored within that memory; and the set of operations that can be applied to the variable.

Types of Variables

  • char:- Single character variable store one character of information.
  • int:- its store whole number values.
  • float:- floating point variables store real numbers.
  • double:- store very large or very small real numbers.


Constant:- 

Which can not be changed during the execution of program that is called constant.



Key words:- 

In C language keywords have some special meaning that is used by system(compile) keywords meaning cannot be changed.

  • if
  • break
  • for
  • while
  • do-while
  • int
  • string
  • float
  • char
  • void
  • else
  • switch
and many more.
All key words are written in lower case.



Comments

Popular posts from this blog

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

Beginning with C++ language